Thank you soo much sir You have cleared all my doubts and i like your teaching style
@kalyanidhudas44564 жыл бұрын
Yor are great, you are cleared all my doubts, great thank uh🙏
@MohammedSameer-rx5rz Жыл бұрын
public static void main(String[] args { = // it is a Entry point for java application, to execute the Programm // public = it is an Access Modifier // Static = our main class is a Class method // void = it represents the Main method returns No value // args is an array, From the Command Prompt , It is passing the every input as in form of String via array // when we write String args [ ], it will take every command line argument which means values, in the form of String and it will convert it to any data type whenever it is needed // The main method takes a single argument, an array of String objects called args. This array is used to pass command-line arguments to the program. A single argument is a value that is passed to a method or function when it is called. In the case of the main method in a Java program, the single argument is an array of String objects called args.
@AmarLakiii2 жыл бұрын
Woww superb mind-blowing sir....
@vishnubabukondisetty62674 жыл бұрын
Super explanation sir Thank u so much
@akshatabani89273 жыл бұрын
Very good teaching😍
@Tarun_Kotagiri3 жыл бұрын
The main method is actually public because it needs to be called by java application.. remember we write "java test" where test is the bytecode for running the program.. as we know bytecode is not executed by the operating system.. but rather by the jvm.. Not trying to be rude.. just wanted to share the intel.
@mdsameena39634 жыл бұрын
Super explanation sir
@gilancadre62362 жыл бұрын
Your Chanel is really good
@aliusa63275 жыл бұрын
i have just subscribe to your channel good job thanks for your explaination keep up ❤🙏 waiting for game developement in java series or Ai in Python
@SwamiShreekant4 жыл бұрын
Superb Sir ---> Direct Concept Clear♥
@srivigneshcreations.92043 жыл бұрын
The way of teaching is very good to understand tq sir make some more concepts .
@ajohpv70333 жыл бұрын
Well done
@rekhanatarajan61493 жыл бұрын
thank u sir...nice explanation..
@baikadisaikumar23022 жыл бұрын
Thank you very much Sir..
@SizzlingWithShaj3 жыл бұрын
As you told we can change the return type to some other like int, String, can we have one live example please? Since it won't work if we use another return type than void
@khushmnsangha177 Жыл бұрын
thanku sir
@sriharismart92555 жыл бұрын
Good explanation sir
@sarathiacherjee83723 жыл бұрын
Nice
@iniyaviji2796 Жыл бұрын
Thank you sir super sir
@prasadaute22644 жыл бұрын
You explained well
@nagasulochana595 Жыл бұрын
Thank you
@yashparmar5722 Жыл бұрын
Thanks ❤
@venkatasairam15025 жыл бұрын
All good
@mithunram53462 жыл бұрын
Thanks a lot
@tonystark-ov4nf5 жыл бұрын
Sir can you upload videos of AWT..and applet's gui..u r teaching is so good..and also streaming videos
@sanm33384 жыл бұрын
good job making beginners life easy! can you please make java 8 syntax and methods
@satyakrishnapalla51902 жыл бұрын
Thank u
@venkateshn79964 жыл бұрын
Sir teaching is really easy to understand,sir please videos for collections and generics
@jubilinjose12344 жыл бұрын
Sir, can you please suggest an android app for executing all types of java programs..since we were having online classes.
@xtremeninja68593 жыл бұрын
AIDE It is available on Play Store
@Helloworld979773 жыл бұрын
Thank u sir
@pmohan73775 жыл бұрын
Why it should be string of args We are not giving inputs every time in cmd line
@swathidevasenapathy61284 жыл бұрын
Sir pls xplain method declaration and field declaration in java...
@jai35374 жыл бұрын
Great , But please number you sessions so on can no the previous and next sessions
@AbdulBasith-ev9mf4 жыл бұрын
'args' is identifier..So we can use any valid identifier instead of args
@AjithKumaR-jw9wt3 жыл бұрын
Yes we can use
@PavanKumar-zd2sy3 жыл бұрын
If we are not executing using command line arguments and if we missed including string args[ ] as parameter....then will it gets executed, if not why? Can you please explain it sir !!..
@xtremeninja68593 жыл бұрын
Sir pls solve my problem When I run a program it shows that There is no main method to run this project I use AIDE(android coding app) I don't understand why this is coming And there are also no errors in the program....
@TheMayuresh7774 ай бұрын
👍 right😂
@rellisravankumar91333 жыл бұрын
I have query which string args with not given in main function it can work it or not else it shows as error JVM
@killiprasad86155 жыл бұрын
Babai regular classes pettu offline classes cheppu institute pettu
@ramu12947 Жыл бұрын
Explain jdbc in java sir
@niroshacharala13244 жыл бұрын
Is there any videos of yours about execution part of program in both stock and heap area sir?
@niroshacharala13244 жыл бұрын
Plz reply me
@koi75574 жыл бұрын
Hi, the parameter should be String[] args
@balakrishnann31344 жыл бұрын
both are right.
@charankaringula66474 жыл бұрын
sir...why ' S ' is capitalized in String[] args?
@bandarupriyanka81793 жыл бұрын
String is a class so we have to write capital letter in class
@sugureshark84722 жыл бұрын
Can you give one example
@rishimaddheshiya30317 ай бұрын
Eska code kya hoga sir code bataiye
@Successbuddy082 жыл бұрын
Please hindi
@gaurrahul6195 жыл бұрын
Why return type of main is void in Java?
@ttv93295 жыл бұрын
void = just does something, doesn't return any value.
@ramanakumar42323 жыл бұрын
Their is no rule that void is only the return type . According to our program we can change it to int ,float etc..... But ,mostly return type is void because it is inside the class .
@Altamash-m2k Жыл бұрын
In Hindi please
@abdulmuqsith47273 жыл бұрын
nalla varuva da gundu paiya....nadrida....
@akil13814 жыл бұрын
I have a clarification on 'public', it is access specifier ??? Not access modifier
@SF_Sensei2 жыл бұрын
what is the difference between these main method public static void main(String args[ ] ) public static void main(String[ ] args )
@vijayakhemnar5902 жыл бұрын
Both are same
@SachinHB-ol6mx Жыл бұрын
Yeah both are correct and u will get output... And also we can use these public static void main(String... args) static public void main(String[] args) static public void main(String args[])