1.For those in command prompt java --version didnt work instead try java -version 2.Make sure you had all the updates done for java before you start programming because of that you may get error like could not run main class 1:24:27 what an explanation man! Damn clear👌 2:47:33 import java.lang.System; class hello{ public static void main(String args[]) { for(int i=10;i>=1;i=i-1){ System.out.println(i); } } } 3:05:56 import java.lang.System; import java.util.Scanner; class hello{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("Enter value of a: "); int a = scan.nextInt(); System.out.println("Enter value of b: "); int b = scan.nextInt(); for(int i=a;i
@MohanapriyaB-c3fАй бұрын
06:08:23 - Hierarchical inheritance 06:08:57- package practice_java2; class vehicle{ String brand; int year; void startEngine() { System.out.println("The engine is starting.."); } } class car extends vehicle{ String fuelType; @Override void startEngine() { System.out.println("Car engine starts"); } void drive() { System.out.println("car is driving"); } } class truck extends vehicle{ int loadCapacity; @Override void startEngine() { System.out.println("Truck engine starts"); } void haul() { System.out.println("Truck is hauling"); } } public class mainclass { public static void main(String[] args) { car c = new car(); c.brand="Tata"; c.year=2024; c.fuelType="full"; c.startEngine(); c.drive(); truck t = new truck(); t.brand = "xyz"; t.year=2023; t.loadCapacity=20; t.startEngine(); t.haul(); } }
2:31:51 import java.util.Scanner; class j{ public static void main(String args[]){ Scanner sc= new Scanner(System.in); int a=sc.nextInt(); int b=sc.nextInt(); String result=(a>b)?"a is bigger":"b is bigger"; System.out.println(result); } }
@chillchweethearts49983 ай бұрын
It's so helpful and you made everything so simple and clear,Thank you so much for your efforts... Always coming back to your tutorials after several other channels..
Scanner sc=new Scanner(System.in) -> donot keep class ad object the same name, and equals() -> spelling need to be taken care.
@animeaddict94911 күн бұрын
enpa evlo mistake
@XlR8_jk10 күн бұрын
Class speeling wrong and Scanner ku capital letter use pannanum then new scanner ku r podanum
@divpre2343 ай бұрын
Data Structures and Algorithms next upload pannunga
@trendingtamil0127 күн бұрын
C++ and data structures and algorithms
@govindarajn766724 күн бұрын
Java data structure and algorithms upload pannunga brother
@janareings5603 ай бұрын
தெய்வமே 🙏 நன்றிகள் பல தெய்வமே ❤
@opajayyt5512Ай бұрын
2:32:00 package emc; import java.util.Scanner; class Practice { public static void main(String[] args) { Scanner scan = new Scanner(System.in); int num1 = scan.nextInt(); int num2 = scan.nextInt(); scan.close(); String result = num1>num2 ? "num1 is greater than num2" : "num2 is greater than num1" ; System.out.println(result); } }
@KingQueen143282 ай бұрын
3:05:50 class aaron { public static void main(String args[]) { for (int i=1; i
@AS-ln2to2 ай бұрын
class HelloWorld { public static void main(String[] args) { int count=0; for(int i=1;i
@kiransuriya889113 күн бұрын
Completed the Java Series, Thank you!!
@ErrorMakesClever13 күн бұрын
Welcome and keep learning!
@Devasri-t5t3 ай бұрын
Romba nandri anna .....idha sem ku java dha irukku...unga video ku na romba naala wait pannitu irundhen🥰🥹
@Useryoutubeg3 ай бұрын
Bro neegah Anna University sem 3 ah
@vampie093 ай бұрын
@@Useryoutubegso athu doli nu unaku theiryathu apdithana? Brw💀
@ErrorMakesClever3 ай бұрын
Always Welcome!
@opsquadwipegaming40623 ай бұрын
Hii bro yennakuh terminal la run pandra apo error varthu bro epdi na error: no Class declared in source file apdi nuh varthu bro adha epdi bro run panndrathu
@suriyaprakash_053 ай бұрын
🙌@@Useryoutubeg
@ShafaRiyas3 ай бұрын
thank you sooo much brotherrr really means a looot please keep on doing this
@ErrorMakesClever3 ай бұрын
Your Welcome!
@mohammedafridi917620 күн бұрын
Thank you so much for your amazing Python and Java courses! Your teaching style is clear and engaging, making complex concepts easy to understand. You've truly helped me improve my skills and confidence in programming. Keep up the great work, Hope We Are Expecting More Content From You Hats Off Man .
@ErrorMakesClever19 күн бұрын
Thanks for your kind words. More content is on the way!
@TOP5WORLD-oc1ic10 күн бұрын
2:32:03 Import.java.util.Scanner; Class hello{ Public static void main(string args[]) { Scanner scan = new scanner (system.in); Int a = scan.nextInt(); Int b = scan.nextInt(); String result = a >b?"yes":"no"; System.out.print(result);
@parthiban8723 ай бұрын
Bro spring boot?
@manikandank56823 ай бұрын
Hats off to your effort bro. Your videos are very helpful for all tamil medium students who wants to learn programming🎉❤
@ErrorMakesClever3 ай бұрын
Glad to hear that
@hemakumara40602 ай бұрын
3:30:01 class main{ public static void main(String args[]) { int[] num = new int[10]; num[0] = 1;num[1] = 2;num[2] = 3;num[3] = 4;num[4] = 5;num[5] = 6;num[6] = 7;num[7] = 8;num[8] = 9;num[9] = 10; //print all the values using for loop for(int i=0;i
@keerthana409916 күн бұрын
just now completed this series it will be so helpful for beginners and makes us feel confident please continue this series further. the way you explain is awesome keep going best of luck thank you ❤
@arunvel16492 ай бұрын
2:47:33 class forLoopExample{ public static void main(String[] args){ for(int i=10;i>=1;i--){ System.out.println(i); } } }
@arunvel16492 ай бұрын
2:50:53 class forLoopExample{ public static void main(String[] args){ for(int i=0;i
Data structure and algorithms upload pannunga bro 🙌 💜
@blessongarfield11416 күн бұрын
4:35:19 public class calculator{ void sub(int num1,int num2) { System.out.println(num1-num2); } void mul(int num1,int num2) { System.out.println(num1*num2); } void div(int num1,int num2) { System.out.println(num1/num2); } public static void main(String args[]){ calculator obj1 = new calculator(); obj1.sub(10,5); obj1.mul(8,2); obj1.div(20,10); } }
@poovarasanfkm19672 ай бұрын
Bro..... watching your videos helps to understand the coding language easily and effectively.keep uploading and educating us by your simple way of teaching.And pls upload a video for XML. I'm waiting for that.
@ErrorMakesClever2 ай бұрын
Glad to hear that
@MohanapriyaB-c3f2 ай бұрын
3:37:20 here instead of putting - 1 in size you can just erase that = right? I mean like this- for(int i=0;i
Class hello { Psvm(){ Int n1 =99; Int n2 = 99; If(n1==n2){ Soup("equal"); } Else { Soup("not equal"); } }}
@jeniferjames18166 күн бұрын
John sir u are saving my money for fee to some institutes thank you so muchhh!
@ErrorMakesClever5 күн бұрын
Thank you and happy for you!
@dazzlingpriya59923 күн бұрын
Thank you so much for the insightful Java series...
@ErrorMakesClever2 күн бұрын
Welcome and keep learning!!
@Sanjeeviraman.N3 ай бұрын
Waiting for this bro.. thank u so much... apdiye Data structures and algorithms with java language poteengana nalla irukkum
@ErrorMakesClever3 ай бұрын
happy, it helps!
@aravindh07102 күн бұрын
2:18:35 import java.util.Scanner; class nes{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); String color = scan.nextLine(); if(color.equals("red")) { System.out.println("Stop"); } else if(color.equals("yellow")) { System.out.println("Get Ready"); } else if(color.equals("green")) { System.out.println("Go"); } } }
@blessongarfield11423 күн бұрын
3:29:55 import java.util.Scanner; class Main{ public static void main(String args[]) { int[] array ={0,1,2,3,4,5,6,7,8,9,10}; for(int i=0;i
@mohamedraafee63562 ай бұрын
3:30:00 import java.util.Scanner; public class array3 { public static void main(String[] args) { Scanner scan= new Scanner(System.in); int[] num= new int[10]; for(int i=0;i
@Ejehfbrjro3 ай бұрын
3:30:05 import java.util.Scanner; public class array { public static void main(String args[]){ System.out.println("enter the number of elements in the array:"); Scanner a= new Scanner(System.in); int b = a.nextInt(); int[] num = new int[b]; for(int i=0;i
@JavithNasim-p7g13 күн бұрын
Print the reverse order of numbers in 5to 1 Class demo{ Publis static void main string [] args){ For(i=5;i>=1;i=i-1); System.out.println(i);
@arunvel16492 ай бұрын
2:28:04 import java.util.Scanner; class forLoopActivity1{ public static void main(String[] args){ Scanner sc = new Scanner(System.in); System.out.print("Enter starting value: "); int a = sc.nextInt(); System.out.print("Enter ending value: "); int b = sc.nextInt(); for(int i=a;i
@swastika-200524 күн бұрын
You are an incredible tutor Can you please upload DSA in java too
@divagargobinathg1233 ай бұрын
package Arraylist; public class q3 { public static void main(String[] args) { int[] num={1,2,3,4,5,6,7,8,9,10}; for(int i=0;i
@Nithee-or3yy2 ай бұрын
2:47 print in reverse order in for loop import java.util.*; class Main{ public static void main(String args[]) { for(int i=5;i>=1;i--) { System.out.println(i); } } }
@arunvel16492 ай бұрын
3:05:55 import java.util.Scanner; class numDivBy3Or5 { public static void main(String[] args){ Scanner sc = new Scanner(System.in); for (int i=0;i= 1 && i
@thalapathydinesheditzАй бұрын
Bro, React js full course tutorial video - from Scratch to advanced - Post panunga. Already job la irukravangalukum use ah irukum
@DhanaLakshmi-nq7gl5 күн бұрын
reverse number printing: for(count=5;count>=1;count- -){ System.out.print(count); }
@rajakarunganjАй бұрын
6:08:50 package practice_java; class vehicle { String brand; int year; void startengine() { } } class car extends vehicle { String fueltype; @Override void startengine() { System.out.println("the car engine start"); } void driving() { System.out.println("car is driving"); } } class truck extends vehicle { int loadcapacity; @Override void startengine() { System.out.println("truck engine start"); } void haul() { System.out.println("the truck is hauling"); } } public class cars { public static void main(String[] args) { car c = new car(); c.brand = "benz"; c.year = 1995; c.fueltype = "disel"; System.out.println("the car brand name is:"+c.brand); System.out.println("the launch year is:"+c.year); System.out.println("the car fuel type is :"+c.fueltype); c.startengine(); c.driving(); truck t = new truck(); t.brand = "TATA"; t.year = 1992; t.loadcapacity = 10000; System.out.println("the truck brand is:"+t.brand); System.out.println("the launch year is:"+t.year); System.out.println("the truck load capacity is:"+t.loadcapacity); t.startengine(); t.haul(); } }
@rjssugumar770325 күн бұрын
Ternary operator la two integer number which number greater than Class hello { Public static void main(string args[]) { Boolean number= true; Int a=24; Int b=35; String result=number?"number a greater than"+a:"number b greater than"+b; System.out.print(result); } } Output: Number a greater than 23
@Tharun-Gt14Ай бұрын
3:05:23 public class Main { public static void main(String[] args) { for(int i=0;i
@SowmiyaManoharan-r8x2 ай бұрын
Thank you so much bro😊.It's really helpful.I learned a lot of things in this video. Keep rocking bro🔥💯
@ErrorMakesClever2 ай бұрын
Glad to hear that
@tn_wolf_252 ай бұрын
@@ErrorMakesClevertime lapse poda na
@112-sowmiyag.v.422 күн бұрын
Brother please put video on data structure and Algorithm using java Please brother.
@KingQueen143282 ай бұрын
3:29:45 import java.util.Scanner; class aaron { public static void main(String args[]) { Scanner scan = new Scanner(System.in); int num[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; for (int i = 0; i
@Hethseyal.AAbisha12 күн бұрын
First .I am not like java and I am not intrest it.but now I can enjoy to learn the java.java it's my favourite language. Thank you so much Anna. Jesus bless you Anna
@ErrorMakesClever9 күн бұрын
You are most welcome
@dazzlingpriya59926 күн бұрын
6:07:40 Hierarchical Inheritance
@dazzlingpriya59925 күн бұрын
6:18:16 class Person{ String name; Person(String name){ this.name = name; } } class Employee extends Person{ int employeeid; Employee(){ super("JOhn"); } void details() { System.out.println("He works well"); } } public class Find{ public static void main(String[]args) { Employee obj = new Employee(); System.out.println(obj.name); obj.employeeid = 33; System.out.println(obj.employeeid); obj.details(); } }
@suryav99642 ай бұрын
6:08:24 - hierachal inheritance
@arunvel1649Ай бұрын
3:32:07 import java.util.Scanner; class ArrayActivity2 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.print("Enter the size of an array: "); int size = sc.nextInt(); int[] arr = new int[size]; for (int i = 0; i < size; i++) { System.out.print("Enter number at index " + i + ": "); int num = sc.nextInt(); arr[i] = num; } System.out.print("[ "); for (int i = 0; i < size; i++) { System.out.print(arr[i]); if (i < size - 1) { System.out.print(", "); } } System.out.print(" ]"); sc.close(); int mid = size / 2; System.out.println(" Middle element: " + arr[mid]); } }
@navenshri79543 ай бұрын
Romba nandri nanba👌.It really helps alot nanba.
@ErrorMakesClever3 ай бұрын
Thank you!
@abdulwajidh85262 ай бұрын
3:05:40 import java.lang.System; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner ob=new Scanner(System.in); int i=ob.nextInt(); int j=ob.nextInt(); int howmany=0; for( i=1;i
@dazzlingpriya59926 күн бұрын
6:08:48 package java_tutorial; class Vehicle{ String brand; int year; void startEngine() { } } class Car extends Vehicle{ String fueltype; void startEngine() { System.out.println("Car engine starts"); } void drive() { System.out.println("Car is driving"); } } class Truck extends Vehicle{ int loadcapacity; void startEngine() { System.out.println("Truck engine starts"); } void haul() { System.out.println("Truck is hauling"); } } public class Dreams { public static void main(String[]args) { Truck t = new Truck(); t.brand= "Ashok"; t.year = 2021; t.loadcapacity = 200; t.startEngine(); t.haul(); Car c = new Car(); c.brand = "ROlls"; c.year = 2024; c.fueltype = "petrol"; c.startEngine(); c.drive(); } }
@rajakarunganj2 ай бұрын
3:30:00 import java.io.*; class aq2 { public static void main(String args[]) { int aq [] = {10,20,30,40,50,60,70,80,90,100}; for(int i=0;i
@sujincharles386022 күн бұрын
7:24:44 interface Readable{ void read(); } interface Writable{ void write(); } interface Storable{ void store(); } class File implements Readable, Writable, Storable{ public void write() { System.out.println("Writing the data"); } public void read() { System.out.println("Reading the data"); } public void store() { System.out.println("The data has been stored"); } } public class NewMAin4 { public static void main(String[] args) { File f1 = new File(); f1.read(); f1.write(); f1.store(); } }
@blessongarfield11429 күн бұрын
3:05:56 class Main{ public static void main(String args[]){ for(int i=1;i
@dazzlingpriya59924 күн бұрын
7:24:45 package coding_challenge; interface Readable{ void Read(); } interface Writable{ void Write(); } interface Storable{ void Store(); } class File implements Readable,Writable,Storable{ public void Read(){ System.out.println("It is readable"); } public void Write() { System.out.println("It is writable"); } public void Store() { System.out.println("It is storable"); } } public class Mutlipleinherit{ public static void main(String[]args) { File f = new File (); f.Read(); f.Write(); f.Store(); } }
@bjp7777714 күн бұрын
2:05 else if program have mistakenly for mark 60 and 90 are given it not return any value because we want to use >=60 and>=90
@fazilmuhammad489Ай бұрын
heiaraichal inharitance 6:08:21 / 8:30:48
@Phonix-p4y2 ай бұрын
3:05:18 import java.util.Scanner; import java.lang.System; class ter{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); //int a = scan.nextInt(); //nt b = scan.nextInt(); int i ; int count=0; for(i=1;i
@vasanthdesigner16862 ай бұрын
The only tutorial that I watched till the end❤
@ErrorMakesClever2 ай бұрын
Glad to hear
@KingQueen143282 ай бұрын
3:31:40 import java.util.Scanner; class aaron { public static void main(String args[]) { Scanner scan = new Scanner(System.in); System.out.println("ENTER A NUM: "); int num = scan.nextInt(); for (int i = 1; i
@madhanarjun47673 ай бұрын
Bro SQL playlist complete panunga bro please 😢
@sathishkraja21303 ай бұрын
Logic first la padi gai bro
@SarithraSarithra-qe3ob3 ай бұрын
One more thing u r explaining is soooper
@ErrorMakesClever3 ай бұрын
thank you!
@SarithraSarithra-qe3ob3 ай бұрын
@@ErrorMakesClever say any online job plz by using ms excel
@harish3840Ай бұрын
I have a request that for sql u hav only upload few topics. Please kindly upload other topics like joins, subqueries, windows functions, operators as well. & thank you so so much for all ur efforts bro!
@myilanv3 ай бұрын
thank you bro . i am waited for this
@ErrorMakesClever3 ай бұрын
Welcome 😊
@RamkumarP-t2bАй бұрын
Hi Bro, Please explain this duration video 3.32.22. this is question 1. Get input for size on an array, get input for each element in an array, and find & print the middle element in an array
@cse9953 ай бұрын
Nenaiche pothutighe game changer❤
@10_Dharanya.SАй бұрын
Datatypes 48:15 1:36:24
@vigneshgs32432 ай бұрын
Highly useful, learned java in 48 hours.
@ErrorMakesClever2 ай бұрын
Thank you
@SaranyaGCSE--2 ай бұрын
Thank you so much ❤✨
@ErrorMakesClever2 ай бұрын
Welcome
@abineshsaravanan26972 ай бұрын
1:13:22 try panni yachu bro ❤
@23UEC31DANIEL18 күн бұрын
Brother unga voice super 😊
@ErrorMakesClever16 күн бұрын
Thanks, happy you enjoyed it!
@23UEC31DANIEL16 күн бұрын
Brother na B.A.Eco pandre python pannalama brother
@opajayyt5512Ай бұрын
2:47:30 package emc; class Practice { public static void main(String[] args) { int i; for(i=10;i>=1;i--) { System.out.println(i); } } }
@indhuindhu36093 ай бұрын
Bro React js video podunga...usefull ah irukum
@sothinathanramanan3735Сағат бұрын
thanks for this video
@dazzlingpriya599213 күн бұрын
public class Greens{ public static void main (String[ ]args) { int num = 19; if(num%2 == 0){ System.out.println("Even"); } else { System.out.println("Odd"); } } }
@kalaiyarasanks29852 ай бұрын
Tnx for that bro its realy usefull for us ❤
@ErrorMakesClever2 ай бұрын
Thank you
@amyoutuber3 ай бұрын
Brother it's better to add time stamps it will help a lot
@ErrorMakesClever3 ай бұрын
Noted
@makithas60663 ай бұрын
Bro spring boot tutorial video podunga bro.. Usefull ah irukum
@sujincharles386022 күн бұрын
Bro Generic Methods and Generic class lam yenga? Btw video was very helpful. Tomorrow I have my semester. Thanks for this Java playlist
@ErrorMakesClever21 күн бұрын
All the best
@xx_abinesh_1_2313 ай бұрын
Thanks bro keep it up ❤
@ErrorMakesClever3 ай бұрын
Welcome 😊
@harisubramanian4165Ай бұрын
Where do you guys get this drive man, Does this World never make you tired... I am fully exhausted and overwhelmed... Good luck all
@CYPHER_Y_Ай бұрын
interface readable { void readable(); } interface writeable{ void writeable(); } interface storable{ void storable(); } class c implements writeable,readable,storable{ @Override public void readable(){ System.out.println("read"); } @Override public void writeable(){ System.out.println("write"); } @Override public void storable(){ System.out.println("storable"); } } //interface model public class main1 { public static void main(String[] args) { c c1=new c(); c1.readable(); c1.writeable(); c1.storable(); //inter face model } } 7:24:43
@MHD_MASTER2 ай бұрын
bro eannakku age 15 than naan unga videos thoadanthu paarpan.Naan java ippo kathukurathu moolama future la useful irukka 😊
@shareenfathima286728 күн бұрын
Yess irukkuu
@smartboy31953 ай бұрын
Thalaiva vera level❤
@ErrorMakesClever3 ай бұрын
Thank you!
@UngalSana2 күн бұрын
2:47:30 public class loop { public static void main(String[] args) { for(int i=10;i>=1;i=i-1) { System.out.println(i); } } }
@tamilempire671Ай бұрын
Odd even done 👍
@PRANJACKVITA2 ай бұрын
TERNARY OPERATOR 1) import java.util.Scanner; class test{ public static void main(String args[]) { Scanner scan = new Scanner(System.in); int a = scan.nextInt(); int b = scan.nextInt(); String greater = (a > b)? "a":"b"; { System.out.println("the greater number is:" + greater); } } } output: 15 10 the greater number is:a
@777world183 ай бұрын
Veryyyy useful 👌 👏
@ErrorMakesClever3 ай бұрын
Thanks a lot
@ArunKumar-r2r5z2 ай бұрын
very usefull bro, next api creation solo kuduga.
@dazzlingpriya599213 күн бұрын
public class Greens{ public static void main(String[]args) { String color = new String("green"); if(color.equals("red")) { System.out.println("Stop"); } else if(color.equals("yellow")) { System.out.println("Get ready"); } else if(color.equals("green")) { System.out.println("GO"); } } }