There is Problem in that , if by default modifier of local variable is final, then how can i assign different value in the very next line, but if i explicitly mention final before variable, then i am unable to assign value ,can u clarify on that
There is Problem in that , if by default modifier of local variable is final, then how can i assign different value in the very next line, but if i explicitly mention final before variable, then i am unable to assign value , can u clarify on that
There is Problem in that , if by default modifier of local variable is final, then how can i assign different value in the very next line, int a=20;a=299; giving output 299, but if i explicitly mention final before int a, then i am unable to assign 299 to a,, there is bug i think , can u clarify on that
There is Problem in that , if by default modifier of local variable is final, then how can i assign different value in the very next line, int a=20; a=299; sop(a); giving output 299, but if i explicitly mention final before int a, then i am unable to assign 299 to a,, there is bug i think in jdk,, can u clarify on that
Sir please tell me the answer u said that instance variable is not thread safe how it's possible because here also separate copy of instance variable is created. It should be thread safe in my view. I am confused..
Hi, sir. I'm watching your videos and they are very very very helpful and I have one doubt. "if we learn all these 173 videos, what kind of jobs we can apply to in java?"
in 10th video last program even we are updating t1.y=999 but if we are printing t2.y it will shows 20. that means instance variables are Thread-Safe .But you said instance variables are not Thread Safe. Can anyone give explanation? please
Sir all videos are too awesome to uderstand cz your way of teaching its too aweome i salute you sir i think now i get a job pakka…..i dont know previous time otherwise i joinded ypur institute now i joined coching at jlc banglore but sir thanku so much you are so awesome sir durga sir is the best teacher in the world i salute you and you are my best teacher in the world
class Test { public static void main (String args[]) { int x; if(args.length >0) //(but if we are adding ';' at the end of the line it is giving output at 10) { x=10; } System.out.println(x); } }
hi sir how to get OCJP and SCJP practice book??? if any book available in market plz tall me bcoz im from gujarat and i cant able to join your class ..tnx sir 🙂
The level of depth that you go into your videos sir , is simply amazing..We respect you , It's an honour learning from you … Thank you for keeping videos available for everyone. Excellent
What is scjp/ocjp
I am lucky to be a student of yours. By the way, I just have a doubt what is primitive and reference variable? See 1:01:15..
god of java
keka
Thank U sir,
Excellent explanation sir. But I got confused in the below example:
class Test {
int x= 10 // Instance primitive
static string s = "durga"; //why this is static reference variable not static primitive
psvm (String args[])
{
int [] y = new int [3];
}
}
Excellent explanation sir… Really u r the best… U r giving left and right to java
Sir, 100% pakka fantastic teaching! ✓
thanks from Durga software I am very happy from this training center
there is clarification required in concept of local variable
There is Problem in that , if by default modifier of local variable is final, then how can i assign different value in the very next line, but if i explicitly mention final before variable, then i am unable to assign value ,can u clarify on that
There is Problem in that , if by default modifier of local variable is final, then how can i assign different value in the very next line, but if i explicitly mention final before variable, then i am unable to assign value , can u clarify on that
There is Problem in that , if by default modifier of local variable is final, then how can i assign different value in the very next line, int a=20;a=299; giving output 299, but if i explicitly mention final before int a, then i am unable to assign 299 to a,, there is bug i think , can u clarify on that
There is Problem in that , if by default modifier of local variable is final, then how can i assign different value in the very next line, int a=20;
a=299;
sop(a); giving output 299, but if i explicitly mention final before int a, then i am unable to assign 299 to a,, there is bug i think in jdk,, can u clarify on that
How can static string s="Durga" is static reference… Static alright but how reference???
if (args.length > 0).
in this if we are passing any command line argument then x value will become 10??
how sir,plz explain
thank you so much sir, I appreciate your teaching skills 👍👍
hi sir,
What about the concept of global variable??
how to get the class name of int i know that the class name for int is [i but how to get it printed on the console
Sir please tell me the answer u said that instance variable is not thread safe how it's possible because here also separate copy of instance variable is created. It should be thread safe in my view. I am confused..
compiler will give you left and right
lol
Hi, sir. I'm watching your videos and they are very very very helpful and I have one doubt.
"if we learn all these 173 videos, what kind of jobs we can apply to in java?"
Super teaching sir..
Sir, Are there any vidoes for Selenium as well? Please let me know. Many thanks!
Sir, You have excellent teaching skills. May God give you more strength and fill happiness in your life! Simply superb!
in 10th video last program even we are updating t1.y=999 but if we are printing t2.y it will shows 20. that means instance variables are Thread-Safe .But you said instance variables are not Thread Safe. Can anyone give explanation? please
Lucky to have you, Durga Sir
Oye Null😛😛😛😂😂😂
Sir all videos are too awesome to uderstand cz your way of teaching its too aweome i salute you sir i think now i get a job pakka…..i dont know previous time otherwise i joinded ypur institute now i joined coching at jlc banglore but sir thanku so much you are so awesome sir durga sir is the best teacher in the world i salute you and you are my best teacher in the world
class Test
{
public static void main (String args[])
{
int x;
if(args.length >0) //(but if we are adding ';' at the end of the line it is giving output at 10)
{
x=10;
}
System.out.println(x);
}
}
Please, Clear the doubt.
hi sir how to get OCJP and SCJP practice book??? if any book available in market plz tall me bcoz im from gujarat and i cant able to join your class ..tnx sir 🙂
Hi Durga sir,
Are these videos enough for OCA JAVA SE 7 certification??
what's that term? (x plus itlm)??? dont get that word? anyone please clarify…..!!(Time 53:35)
The compiler gives u left and right!!! haha
The level of depth that you go into your videos sir , is simply amazing..We respect you , It's an honour learning from you … Thank you for keeping videos available for everyone. Excellent
100 % pakar, JVM will give you left and right
hahaha ..awesome
Excellent teaching sir..
Excellent training sir..
no matter how much i thank you. its not enough
for (int j = 0; j<1; j++)
System.out.println(j);
well SIR what did i observed that a single statement is allowable for
after for while scope of scope definition ?
for (int j = 0; j<1; j++)
System.out.println(j);
i=i+j;// CE
while second statement would be error ? i am bit confused in that is a single statement is allowable