Bro.. Very useful.. No other channel is explaining this much clearly.. Kindly upload oops in java.. It will helps to clear my tech round.. Thanks in advance
public class q37 { int a = 10; int b = 20; void sum() { System.out.println(a+b); } public static void main(String[] args) { q37 obj = new q37(); obj.sum(); } }
public class demo2{ int a = 10; int b = 20; void add() { System.out.println(a+b); } public static void main(String[] args) { demo2 operators = new demo2(); operators.add(); } } Thank you♥
last question ans.. public class garden { int apple_price = 20; int apple_count = 5; void total_money() { System.out.println(apple_count*apple_price); } public static void main(String[] args) { garden obj1 = new garden(); obj1.total_money(); } }
Anna vera marii na bca tha but egga mam sollitharathu enaku puriyathy but neega evalo simple la alaga sollitiga romba tnks na ethumari neraya sollikuduga anna😊❤
Bro is this correct bro please tell public class Garden { int apple_price = 20; int apple_count = 5; void total_money(){ System.out.println(apple_count *apple_price); }
public static void main (String[] args) { Garden obj1 = new Garden(); obj1.total_money(); }
public class Garden{ int apple_price=20; int apple_count=5; void total_money() { System.out.print(apple_price*apple_count); } public static void main(String[] args) { Garden obj1=new Garden(); obj1.total_money(); } }
public class garden{ void total_money() { int apple_price=20; int apple_count=5; System.out.println(apple_price*apple_count); } public static void main(String[] args){ garden gar=new garden(); gar.total_money(); }
class apple { int apple_price=20; int apple_count=5; void price() { System.out.println("total_amount="+apple_price*apple_count); } public static void main(String[] args) { apple obj1=new apple(); obj1.price(); } }
public class Test19{ int apple_price=20; int apple_count=5; public int total_money(){ int total_money=apple_price*apple_count; return total_money; } public static void main(String[] args) { Test19 test19= new Test19(); System.out.println(test19.total_money()); } }
public class addtion { int a=10; int b=20; void sum(){ int c = a+b; System.out.println(c); } public static void main(String[] args) { addtion summ = new addtion(); summ.sum (); } }
please upload the videos for oops concepts within this week for in java with an example for each method having an interview soon your videos are so crystal and clear content
public class addtion { int apple_price = 20; int apple_count = 5; void totalmoney(){ int c = apple_price*apple_count; System.out.println(c); } public static void main(String[] args) { addtion summ = new addtion(); summ.totalmoney (); } }
public class garden{ int apple_price = 20; int apple_count = 5; void total_money(){ System.out.print("Total amount of apple "+apple_price*apple_count); } public static void main (String[] args) { garden obj1 = new garden(); obj1.total_money(); } }
public class Addition{ void sum(){ int a=10; int b=20; System.out.println(a+b); } public static void main(String[] args){ Addition add=new Addition(); add.sum(); } }
public class garden{ int apple_price = 20; int count_apple = 5; void total_money() { int output = apple_price*count_apple; System.out.println(output); }
public static void main(String args[]) { garden obj1 = new garden(); obj1.total_money();
package firstprogram;
public class garden {
int apple_count=5;
int apple_price=20;
void total_money() {
System.out.print(apple_count*apple_price);
}
public static void main(String[]args){
garden obj1=new garden();
obj1.total_money();
}
}
9:13 9:13
Bro.. Very useful.. No other channel is explaining this much clearly.. Kindly upload oops in java.. It will helps to clear my tech round.. Thanks in advance
public class q37 {
int a = 10;
int b = 20;
void sum()
{
System.out.println(a+b);
}
public static void main(String[] args) {
q37 obj = new q37();
obj.sum();
}
}
Very useful without any complication..pls upload oops concept ..this will helps in my technical round..thanks in advance
Mysql video . Why stopped in between sir. Complete panni irukalam la sir
public class demo2{
int a = 10;
int b = 20;
void add()
{
System.out.println(a+b);
}
public static void main(String[] args) {
demo2 operators = new demo2();
operators.add();
}
}
Thank you♥
public class add
{
int apple_price = 20;
int apple_count = 5;
void count()
{
System.out.println("$"+apple_price*apple_count);
}
public static void main(String[] args)
{
add nal = new add();
nal.count();
}
}
Respect to your dedication 💪🏻 ❤
last question ans..
public class garden {
int apple_price = 20;
int apple_count = 5;
void total_money()
{
System.out.println(apple_count*apple_price);
}
public static void main(String[] args)
{
garden obj1 = new garden();
obj1.total_money();
}
}
Bro, keep going with this series-it's super helpful!
Anna vera marii na bca tha but egga mam sollitharathu enaku puriyathy but neega evalo simple la alaga sollitiga romba tnks na ethumari neraya sollikuduga anna😊❤
class garden{
int apple_price = 20;
int apple_count= 5;
void total_money()
{
int multiply = apple_price*apple_count;
System. out. println(multiply);
}
public static void main(String[] args) {
garden obj = new garden();
obj.total_money();
}
}
package Java;
public class garden {
int apple_price = 20;
int apple_count = 5;
void total_money(){
System.out.println(apple_price * apple_count);
}
public static void main(String[] args) {
garden obj = new garden();
obj.total_money();
}
}
public class garden {
int apple_price = 20;
int apple_count = 5;
void total_money()
{
System.out.println(apple_count*apple_price);
}
public static void main(String[] args)
{
garden obj1 = new garden();
obj1.total_money();
}
}
Bro is this correct bro please tell
public class Garden {
int apple_price = 20;
int apple_count = 5;
void total_money(){
System.out.println(apple_count *apple_price);
}
public static void main (String[] args)
{
Garden obj1 = new Garden();
obj1.total_money();
}
public class Garden{
int apple_price=20;
int apple_count=5;
void total_money()
{
System.out.print(apple_price*apple_count);
}
public static void main(String[] args) {
Garden obj1=new Garden();
obj1.total_money();
}
}
public class garden{
void total_money()
{
int apple_price=20;
int apple_count=5;
System.out.println(apple_price*apple_count);
}
public static void main(String[] args){
garden gar=new garden();
gar.total_money();
}
}
class apple
{
int apple_price=20;
int apple_count=5;
void price()
{
System.out.println("total_amount="+apple_price*apple_count);
}
public static void main(String[] args)
{
apple obj1=new apple();
obj1.price();
}
}
Bro React js full course podunga bro... please neenga solli kuduthatha puriyuthuu
Bro game development pathi video poodu bro please bro❤❤
public class Multiply {
int apple=20;
int count=5;
void Total_money()
{
System.out.println(apple*count);
}
public static void main(String[] args) {
Multiply fruits=new Multiply();
fruits.Total_money();
}
}
Thanks bro
Bro,Go language explain panni video podunga
Anna data science ku konjam videos podunga anna
Machine learning full tutorial video podungaa bro 😢😢
public class Test19{
int apple_price=20;
int apple_count=5;
public int total_money(){
int total_money=apple_price*apple_count;
return total_money;
}
public static void main(String[] args) {
Test19 test19= new Test19();
System.out.println(test19.total_money());
}
}
public class addtion {
int a=10;
int b=20;
void sum(){
int c = a+b;
System.out.println(c);
}
public static void main(String[] args) {
addtion summ = new addtion();
summ.sum ();
}
}
please upload the videos for oops concepts within this week for in java with an example for each method having an interview soon your videos are so crystal and clear content
MySQL join , sub sqand trigger continue pannungaa😢....
very clear explanation. thx sir
bro devops related viedo upload pannu bro
Bro javascript video podunga pls
Bro c++ pathi podunga
Bro javascript video full ah venu, neraya channel la pathute yedhuvum puriya mattudhu pls
Bro make java video on regular basis pls
Bro data analyst job ku scope iruka
Bro please put video on How to apply intership in Internshala
Square bracket string pakathula podanuma illa args pakathula podanuma
Conduct react worsksop bro
Digital image processing podunga Bor
Hi sir , data entry course padikke enne language theve
bro pls upload video for React Native
Hi bro , pls teach vue.js , Thanks
class mobile{
void iphone(){
System.out.println("this is iphone");
}
void nokia(){
System.out.println("this is nokia");
}
void vivo(){
System.err.println("this is vivo");
}
public static void main(String[] args) {
mobile phone=new mobile();
phone.iphone();
phone.vivo();
phone.nokia();
}
}
10:22 in this how the variable a,b declared in class can be accessed in sum() method....?
Bro Power BI video podunga
Its okay but is it neccesary to create a main function?why can't we should create just another non static function and call the previous one
Bro Ramanathapuram national academy icse vaga bro pls
Bro suggest best laptop under 40,000.please
Bro SQL full tutorial upload pls
MySQL join , sub sq and trigger continue pannungaa......😢
bro pls explain the python 10 video last q:8and9 pls
Bro background image linear gradient vaichu solli thanga anna css la please
Pls teach oops concept anna
public class mobile {
void iphone(){
System.out.println("iphone");
}
void samsung(){
System.out.println("samsung");
}
void realme(){
System.out.println("realme");
}
void asus(){
System.out.println("asus");
}
public static void main(String[] args) {
mobile brand = new mobile();
brand.iphone();
brand.samsung();
brand.realme();
brand.asus();
}
}
Its okay but is it neccesary to create a main function?why can't we should create just another non static function and call the previous one
Hi bro..my age 28 working different feild..now can I try IT job kedaikuma bro
Pls upload next concepts in java🥲
Enaku public file create aaga matingidhu bro
React bootcamp podu bro
Bro I need javascript video in deep
Why u using print inside x:
Put video for hacking course
bro u last 10 minutes confused pls explain bro
K
public class addtion {
int apple_price = 20;
int apple_count = 5;
void totalmoney(){
int c = apple_price*apple_count;
System.out.println(c);
}
public static void main(String[] args) {
addtion summ = new addtion();
summ.totalmoney ();
}
}
public class garden{
int apple_price = 20;
int apple_count = 5;
void total_money(){
System.out.print("Total amount of apple "+apple_price*apple_count);
}
public static void main (String[] args)
{
garden obj1 = new garden();
obj1.total_money();
}
}
public class Addition{
void sum(){
int a=10;
int b=20;
System.out.println(a+b);
}
public static void main(String[] args){
Addition add=new Addition();
add.sum();
}
}
public class q38 {
int apple_price = 20;
int apple_count = 5;
void total_money()
{
System.out.println(apple_price*apple_count);
}
public static void main(String[] args) {
q38 obj = new q38();
obj.total_money();
}
}
public class garden{
int apple_price = 20;
int count_apple = 5;
void total_money()
{
int output = apple_price*count_apple;
System.out.println(output);
}
public static void main(String args[])
{
garden obj1 = new garden();
obj1.total_money();
}
}
class garden{
int apple_price= 20;
int apple_count= 5;
void total_money()
{
System.out.print(apple_price*apple_count);
}
public static void main(String[]args)
{
garden obj = new garden();
obj.total_money();
}
}
Its okay but is it neccesary to create a main function?why can't we should create just another non static function and call the previous one
Bro game development pathi video poodu bro please bro❤❤
Bro game development pathi video poodu bro please bro❤❤
Bro game development pathi video poodu bro please bro❤❤
Bro game development pathi video poodu bro please bro❤❤