Experienced Java interview question | #2

  Рет қаралды 143,581

Java

Java

Жыл бұрын

Java programming interview questions

Пікірлер: 707
@TNBUS_ADDICTERZ-1234
@TNBUS_ADDICTERZ-1234 Ай бұрын
The answer is: 1 - 0 , j value is 0,afterthat i value will be increment by 1...
@JavaQuestions
@JavaQuestions Ай бұрын
Yes, that's right 👍👍
@Elunico989
@Elunico989 10 күн бұрын
I genuinely want to learn this 😢😢😢
@tekamanurag6065
@tekamanurag6065 6 ай бұрын
The expression is evaluated first with the current value of the variable in which the post increment is used then after that it is incremented .
@asmit3060
@asmit3060 11 ай бұрын
1-o is the write answer because i value is increasce after i and j get add so that j=i++ +j the j=0 and i become1.
@JavaQuestions
@JavaQuestions 11 ай бұрын
Correct 💯 Good explanation, thank you 😊
@user-nn9vn3gm6f
@user-nn9vn3gm6f 5 ай бұрын
1-0 option is correct. Decribe I++ value is 1 and +j is do not increment the value so 0. Second option .
@JavaQuestions
@JavaQuestions 5 ай бұрын
Yes, that's right 👍👍
@NeoTechVision101
@NeoTechVision101 Ай бұрын
It's 1-0 since in post incrementation, before incrementing i, you first need to evaluate the whole expression; therefore first adding i (0) and j (0), then i will be incremented. Meaning, only after assigning 0+0 to j will i be incremented.
@JavaQuestions
@JavaQuestions Ай бұрын
Yes that's right 👍👍
@shilpabarnawalbaarnawal8278
@shilpabarnawalbaarnawal8278 8 ай бұрын
1.i=0 2.j=0 3.j=0+0 => j = 0 as i is post incremented 4.now i=1 Output is 1-0
@JavaQuestions
@JavaQuestions 8 ай бұрын
Yes, that's right 👍👍
@ZehraFatima-SHAKEEL
@ZehraFatima-SHAKEEL 6 ай бұрын
1-0😊
@JavaQuestions
@JavaQuestions 6 ай бұрын
Yes, that's right 👍👍
@archanamishra8941
@archanamishra8941 10 ай бұрын
Post incrementation, j = 0 + 0 then print(i or (0+1) + "-" + 0) so yup it is 1-0 mate, basics
@JavaQuestions
@JavaQuestions 10 ай бұрын
Thanks for the comment You are Correct Bro 👍
@honeybunny1301
@honeybunny1301 9 ай бұрын
Hello sir, I am one of your oldest subscriber.. Can you please make a video on career progression of a java developer?? Like after 8 9 years what happens?
@042j.jeyrengarajendiran6
@042j.jeyrengarajendiran6 8 ай бұрын
First to print i I value be intitaliased as 0 so I is 1 j =1+0=I++ + j=1 So answer is option c 0-1
@JavaQuestions
@JavaQuestions 8 ай бұрын
Thanks for the comment The correct answer is 1-0
@Javabackend.Amit.k
@Javabackend.Amit.k 7 ай бұрын
1-0 is correct answer cause value of j is assigned 0 first then program control perform addition by adding 1+0 then print the value of i and j
@JavaQuestions
@JavaQuestions 7 ай бұрын
Yes, that's right 👍👍 Thanks for the explanation
@jayadipbarade7288
@jayadipbarade7288 4 ай бұрын
Yes
@user-vp6go5yl8c
@user-vp6go5yl8c 8 ай бұрын
1-0 but first i thought its 0-0 but after giving five minutes to this question i got answer.
@JavaQuestions
@JavaQuestions 8 ай бұрын
Yes, that's right bro
@_GT_1_
@_GT_1_ 6 ай бұрын
i think 0-1 reason for int i=0;// i value zero that assign and then j=i;//i value is zero j=0; j=i++(increament operator)+j; then can be assin i valuei zero and known i value is one ; j=1+0; j=1;// j value is assign in one now print value is i is zero and j is one i+"-"+j=0-1from output
@JavaQuestions
@JavaQuestions 6 ай бұрын
Thanks for the comment The correct answer is 1-0
@ashimroy3891
@ashimroy3891 5 ай бұрын
@@JavaQuestions i++ will increment i from 0 to 1. Will j also not be updated to 1?
@JavaQuestions
@JavaQuestions 5 ай бұрын
Yes, it is a post increment.
@usmanahmadkhan2336
@usmanahmadkhan2336 Ай бұрын
The initial value of i is 0. j is initially set to 0. After the expression j = i++ + j, i becomes 1 and j remains 0. The final output is 1 - 0.
@JavaQuestions
@JavaQuestions Ай бұрын
Yes, that's right 👍👍
@firstisforever6402
@firstisforever6402 5 ай бұрын
2nd opt is correct I think..
@JavaQuestions
@JavaQuestions 5 ай бұрын
Yes, that's right 👍👍
@ayushchandel1228
@ayushchandel1228 2 ай бұрын
Comment padh k answer koi bhi de sakta hai... Hero nhi bano
@user-fm6sl8ze2e
@user-fm6sl8ze2e 9 ай бұрын
1-0 is correct answer j=0 and i=1 when after increament it will become 1
@JavaQuestions
@JavaQuestions 9 ай бұрын
Yes, that's right 👍
@asagiai4965
@asagiai4965 5 ай бұрын
1-0 Because the other variable doesn't actually change
@JavaQuestions
@JavaQuestions 5 ай бұрын
Yes, that's right 👍👍
@18_lisaroy29
@18_lisaroy29 9 ай бұрын
1-0 is the answer because j=0+0 and i is incremented so i =1🎉
@JavaQuestions
@JavaQuestions 9 ай бұрын
Yes, that's right.., you are awesome
@64aashishchaudhary5
@64aashishchaudhary5 6 ай бұрын
1-0 This is because the expression i++ increments the value of i after using its original value in the operation. Therefore, i becomes 1, and j retains its original value of 0.
@JavaQuestions
@JavaQuestions 6 ай бұрын
Yes, that's right 👍👍 Thanks for the explanation
@charllesramosdasilva-rj2of
@charllesramosdasilva-rj2of 6 ай бұрын
Java accept is notation of incremental +j its call pre-increment Depending on the version, an error will appear
@mrkeshkesh6846
@mrkeshkesh6846 8 ай бұрын
1-0 is correct answer 💯😊
@JavaQuestions
@JavaQuestions 8 ай бұрын
Yes, that's right 👍👍
@Jatangi_Raju
@Jatangi_Raju 4 ай бұрын
Ans is 1-1 bro its not 1-0 have look once again.@@JavaQuestions
@JavaQuestions
@JavaQuestions 4 ай бұрын
@@Jatangi_Raju please compile and check once.
@deepak2005singhal
@deepak2005singhal 16 күн бұрын
Use I in place of j then answer will be 1-1​@@Jatangi_Raju
@sumedhtayade821
@sumedhtayade821 11 ай бұрын
1 - 0 because i is post incremented and j is pre incremented
@JavaQuestions
@JavaQuestions 11 ай бұрын
Correct 💯
@goutambarfa7072
@goutambarfa7072 10 ай бұрын
@@JavaQuestions what pre increment only operator is there btw i and j
@sapnaadhikari2888
@sapnaadhikari2888 3 ай бұрын
1-0 is output
@JavaQuestions
@JavaQuestions 3 ай бұрын
Yes, that's right 👍👍
@Altamas285
@Altamas285 8 ай бұрын
I am 9th grade kid But i have to say it If these kind of questions are asked in interviews,then my future is very bright
@JavaQuestions
@JavaQuestions 8 ай бұрын
Yes, try to answer the questions
@manoj_coding21
@manoj_coding21 8 ай бұрын
1-1 will be answer
@devoo670
@devoo670 2 ай бұрын
no it is post increment so it will be 1-0
@rajeevprajapati159
@rajeevprajapati159 10 ай бұрын
ye Java programming ka code hai
@soumyadityamondal4863
@soumyadityamondal4863 9 ай бұрын
According to me it is 0-0 ,bcz i++ is post increament ... It means at first we have to use the value then increase.... Thnk u😅
@JavaQuestions
@JavaQuestions 9 ай бұрын
Thanks for the comment The correct answer is 1-0
@soumyadityamondal4863
@soumyadityamondal4863 9 ай бұрын
U r right... I just mistaken i with j at the print statement.... j=0 and then i=1
@karthigamingff8061
@karthigamingff8061 8 ай бұрын
I cannot understand sir. Could you please tell me why it will be answer was 1-0
@rdevivaranasi9908
@rdevivaranasi9908 8 ай бұрын
B ,, 1-0 ☑️ correct ans Note explanation !## Int i=0 // initially i value 0 Go to print statement Increments( i++ ,, _, j+) = [(0+1) =1++,, -, 0+)] Int j=i ,, int j=0 Increments i value and Decrement s j value reverse i initial value as per given
@JavaQuestions
@JavaQuestions 8 ай бұрын
Yes, that's right bro 👍
@PavanJadhav-ym2kq
@PavanJadhav-ym2kq Ай бұрын
Output will be zero
@JavaQuestions
@JavaQuestions Ай бұрын
No, try again 🙂
@DebadityaBarai
@DebadityaBarai 10 ай бұрын
1-0 is correct answer beacuse i value is increment i ++but first j value is 0 +j means j=0 so after we are get i =0+1=1 and+J means j=0
@JavaQuestions
@JavaQuestions 10 ай бұрын
Yes, that's right 👍
@MadhuReddyGarugula
@MadhuReddyGarugula 11 ай бұрын
Option 2
@JavaQuestions
@JavaQuestions 11 ай бұрын
Correct Bro
@user-vu5tm7jm3j
@user-vu5tm7jm3j 5 ай бұрын
0-1 bcz i is given 0 and nthg any other operation on that like i =...??nthg so i print 0 and j's first assigned value is i=0..but after that given is j=i++ means 0++=1so last assigned value in j is 1...so the 0 and 1 is correct answer
@JavaQuestions
@JavaQuestions 5 ай бұрын
Thanks for the comment The correct answer is 1-0
@user-vu5tm7jm3j
@user-vu5tm7jm3j 5 ай бұрын
@@JavaQuestions how it is plz explain it's necessary for me
@user-vu5tm7jm3j
@user-vu5tm7jm3j 5 ай бұрын
@@JavaQuestionsthey said print the value of j is increment is i++ not value of i
@JavaQuestions
@JavaQuestions 5 ай бұрын
Sorry for the late reply J =i++ means after assigning the value of i to j then incrementing i value. Got it bro ?
@CodeCrazeByShreyash
@CodeCrazeByShreyash 6 ай бұрын
1 - 0 is the correct answer
@JavaQuestions
@JavaQuestions 6 ай бұрын
Yes, that's right 👍👍
@user-ie7mn8hg5v
@user-ie7mn8hg5v 11 ай бұрын
4 ,1-1
@JavaQuestions
@JavaQuestions 11 ай бұрын
Good try, but the Answer is not correct Bro
@bhaskarcherry2196
@bhaskarcherry2196 8 ай бұрын
Try it your loptop its correct answer 1-1
@Real_Indian_bhartiya
@Real_Indian_bhartiya Ай бұрын
Addition and increment: 0-0
@JavaQuestions
@JavaQuestions Ай бұрын
No, try again 🙂
@yuvrajacharya1226
@yuvrajacharya1226 2 ай бұрын
1-0,took me a minute to figure out😅
@JavaQuestions
@JavaQuestions 2 ай бұрын
Yes, that's right 👍👍
@yuvrajacharya1226
@yuvrajacharya1226 2 ай бұрын
Does any body know how to for loop a string?
@marloncardoso264
@marloncardoso264 5 ай бұрын
VERY begginer question! Not experienced at all.
@Aryanraj-nu2ol
@Aryanraj-nu2ol 7 ай бұрын
C option (0-1)
@JavaQuestions
@JavaQuestions 7 ай бұрын
Thanks for the comment The correct answer is 1-0
@lovelessboy8011
@lovelessboy8011 11 күн бұрын
The answer is 1-0
@JavaQuestions
@JavaQuestions 11 күн бұрын
Yes, that's right 👍👍
@komiljonnormurodov
@komiljonnormurodov 6 ай бұрын
0-1 i=>1 j=>0
@gsdrall
@gsdrall Ай бұрын
0-1, x=0 and y=1
@JavaQuestions
@JavaQuestions Ай бұрын
No, try again 🙂
@aratipatil554
@aratipatil554 3 күн бұрын
1-0
@JavaQuestions
@JavaQuestions 2 күн бұрын
Yes, that's right 👍👍
@ChadDeveloper
@ChadDeveloper 2 ай бұрын
Bro this is easy, 1-0 is the answer
@JavaQuestions
@JavaQuestions 2 ай бұрын
Yes, that's right 👍👍
@BirendraYadav-kv4de
@BirendraYadav-kv4de 6 ай бұрын
options B Will be Correct
@JavaQuestions
@JavaQuestions 6 ай бұрын
Yes, that's right 👍👍
@dmitrykim3096
@dmitrykim3096 10 ай бұрын
I hate these stupid questions on the priority of the operations, if you write such code you are not getting code review approvals. The code should be explicit and obvious
@JavaQuestions
@JavaQuestions 10 ай бұрын
Thanks for the comment Yes, as you said these questions are not recommended for real time coding. These are for interview purposes only.
@Harekrishna_hare_krishna
@Harekrishna_hare_krishna 5 ай бұрын
int i = 0; Int j = i; J = i++ +j; System.out.println(i+"-"+j); Output is : 1-0
@JavaQuestions
@JavaQuestions 5 ай бұрын
Yes, that's right 👍👍
@sanjivaniganjale4347
@sanjivaniganjale4347 9 ай бұрын
1-1beacause there is not ++j only +j
@JavaQuestions
@JavaQuestions 9 ай бұрын
Thanks for the comment The correct answer is 1-0
@majdeddinemejbri3809
@majdeddinemejbri3809 5 ай бұрын
1-0 that’s the correct answer no doubt
@JavaQuestions
@JavaQuestions 5 ай бұрын
Yes, that's right 👍👍
@MohammedAdem-0942
@MohammedAdem-0942 Ай бұрын
1 and 0
@JavaQuestions
@JavaQuestions Ай бұрын
Yes, that's right 👍👍
@charleswills4453
@charleswills4453 4 ай бұрын
Isn’t a double equal sign ?
@JavaQuestions
@JavaQuestions 4 ай бұрын
No
@er.mansuri
@er.mansuri Ай бұрын
1-0 , because i++ is a post increment
@JavaQuestions
@JavaQuestions Ай бұрын
Yes, that's right 👍👍
@Robert-3691
@Robert-3691 4 ай бұрын
I'm addicted to this content. I recently read a similar book, and I was completely addicted. "Mastering AWS: A Software Engineers Guide" by Nathan Vale
@machinesPawn
@machinesPawn 4 ай бұрын
Marketing skill on the top.
@ashishkumar32323
@ashishkumar32323 4 ай бұрын
The right is 0-0.
@JavaQuestions
@JavaQuestions 4 ай бұрын
No, try again 🙂
@TheCpuguy239
@TheCpuguy239 10 күн бұрын
1-0 team here
@JavaQuestions
@JavaQuestions 8 күн бұрын
Yes, that's right 👍👍
@kamalsingh6260
@kamalsingh6260 4 ай бұрын
Option B is Right answer .....1- 0
@JavaQuestions
@JavaQuestions 4 ай бұрын
Yes, that's right 👍👍
@douknoo6414
@douknoo6414 10 ай бұрын
option 3
@JavaQuestions
@JavaQuestions 10 ай бұрын
No bro, option 2 correct answer
@rajeevprajapati159
@rajeevprajapati159 10 ай бұрын
0-1 in help of operations
@JavaQuestions
@JavaQuestions 10 ай бұрын
Thanks for the comment The correct answer is 1-0 Bro
@rajeevprajapati159
@rajeevprajapati159 10 ай бұрын
@@JavaQuestions Bhai me diploma Kiya hu or Java me job nahi mil Rahi he
@LokiDhurvasulu02
@LokiDhurvasulu02 4 ай бұрын
Option 4 i.e, 1-1
@JavaQuestions
@JavaQuestions 4 ай бұрын
No, try again 🙂
@Anonymouss670
@Anonymouss670 6 ай бұрын
Output: 1-0
@JavaQuestions
@JavaQuestions 6 ай бұрын
Yes, that's right 👍👍
@pankajjaiswal4805
@pankajjaiswal4805 2 ай бұрын
1-0 is the answer
@JavaQuestions
@JavaQuestions 2 ай бұрын
Yes, that's right 👍👍
@reshmadenkar-gc1yy
@reshmadenkar-gc1yy 5 ай бұрын
I thik 2 options is correct
@JavaQuestions
@JavaQuestions 5 ай бұрын
Yes, that's right 👍👍
@rexrajan5232
@rexrajan5232 2 ай бұрын
1-1 is the correct answer
@JavaQuestions
@JavaQuestions 2 ай бұрын
No, try again 🙂
@user-dp7lj3rw1t
@user-dp7lj3rw1t 4 ай бұрын
1-0 options 2
@JavaQuestions
@JavaQuestions 4 ай бұрын
Yes, that's right 👍👍
@dineshsampathi1689
@dineshsampathi1689 10 ай бұрын
4
@JavaQuestions
@JavaQuestions 10 ай бұрын
No bro, try one more time
@user-tp4zw2yy9k
@user-tp4zw2yy9k 8 ай бұрын
0-1 is correct answer
@JavaQuestions
@JavaQuestions 8 ай бұрын
Thanks for the comment The correct answer is 1-0
@lovelyemotions7208
@lovelyemotions7208 9 ай бұрын
0-1
@JavaQuestions
@JavaQuestions 9 ай бұрын
Thanks for the comment The correct answer is 1-0
@Meowerenchan
@Meowerenchan 10 ай бұрын
Itna easy😅😅 Mai class 10th icse mai hu lagta hai mujhe placement lav jayegi
@mmanju2239
@mmanju2239 10 ай бұрын
1️⃣➖️0️⃣
@JavaQuestions
@JavaQuestions 10 ай бұрын
Yes, you are right 👍
@engineerrahulkumar9367
@engineerrahulkumar9367 6 ай бұрын
1-0 is the write answer
@JavaQuestions
@JavaQuestions 6 ай бұрын
Yes, that's right 👍👍
@manohargodavarthi4227
@manohargodavarthi4227 4 ай бұрын
1-1 option D
@JavaQuestions
@JavaQuestions 4 ай бұрын
No, try again 🙂
@atharvasable3046
@atharvasable3046 5 ай бұрын
0-1 option c
@JavaQuestions
@JavaQuestions 5 ай бұрын
Thanks for the comment The correct answer is 1-0
@royalworld_raju8083
@royalworld_raju8083 10 ай бұрын
B
@JavaQuestions
@JavaQuestions 10 ай бұрын
You are Correct 💯
@technicalearninggyan1280
@technicalearninggyan1280 6 ай бұрын
0-1 or may be 1-1
@JavaQuestions
@JavaQuestions 6 ай бұрын
Thanks for the comment The correct answer is 1-0
@user-jx3jl6pm8l
@user-jx3jl6pm8l 4 ай бұрын
1-1
@JavaQuestions
@JavaQuestions 4 ай бұрын
No, try again 🙂
@harshanajwani8538
@harshanajwani8538 2 ай бұрын
Correct answer 1-0 hai
@JavaQuestions
@JavaQuestions 2 ай бұрын
Yes, that's right 👍👍
@ravishkumar4084
@ravishkumar4084 6 ай бұрын
i++ post increment ho rha, So answer is 1-0
@JavaQuestions
@JavaQuestions 6 ай бұрын
Yes, that's right 👍👍
@prajwalfulzele6108
@prajwalfulzele6108 Ай бұрын
I think 1-1
@JavaQuestions
@JavaQuestions Ай бұрын
No, try again 🙂
@CodingWallahStudent
@CodingWallahStudent 9 ай бұрын
I=1 & j=0
@JavaQuestions
@JavaQuestions 9 ай бұрын
Yes, that's right bro 👍
@sukhadayeolekar7140
@sukhadayeolekar7140 9 ай бұрын
2
@JavaQuestions
@JavaQuestions 9 ай бұрын
Yes, that's right 👍
@sumitrajput6546
@sumitrajput6546 5 ай бұрын
1-1 💯💯💪
@JavaQuestions
@JavaQuestions 5 ай бұрын
Thanks for the comment The correct answer is 1-0
@Kgfsatish99
@Kgfsatish99 9 ай бұрын
1-0 hoga
@JavaQuestions
@JavaQuestions 9 ай бұрын
Yes, that's right bro 👍
@Sweatharts
@Sweatharts 4 ай бұрын
1 0 is correct
@JavaQuestions
@JavaQuestions 4 ай бұрын
Yes, that's right 👍👍
@user-wu6cg3mc7f
@user-wu6cg3mc7f 9 ай бұрын
0,1,1,1 is the answer
@JavaQuestions
@JavaQuestions 9 ай бұрын
Thanks for the comment The correct answer is 1-0
@rahulnavy
@rahulnavy 8 ай бұрын
i=0 j=0 j= i++(0+1=1) +0 j=1+0=1 Finally i=0 & j=1 0-1 So the final answer is 0-1
@JavaQuestions
@JavaQuestions 8 ай бұрын
Thanks for the comment The correct answer is 1-0
@mantukumar-qn9pv
@mantukumar-qn9pv 4 ай бұрын
1-0 right
@JavaQuestions
@JavaQuestions 4 ай бұрын
Yes, that's right 👍👍
@user-us4id1qd8k
@user-us4id1qd8k 4 ай бұрын
The answer is 1-1
@JavaQuestions
@JavaQuestions 4 ай бұрын
Thanks for the comment The correct answer is 1-0
@rajendrareddysangu3509
@rajendrareddysangu3509 6 ай бұрын
Ans is c option
@JavaQuestions
@JavaQuestions 6 ай бұрын
Thanks for the comment The correct answer is 1-0
@saikumar_yendugula
@saikumar_yendugula Жыл бұрын
0-0
@muhammadumair486
@muhammadumair486 7 ай бұрын
0-1 because post fix increment after initialize the values while in prefix increment first increase the value then initialize the values so answer is 0-1
@JavaQuestions
@JavaQuestions 7 ай бұрын
Thanks for the comment The correct answer is 1-0
@user-zj6hz8hh6q
@user-zj6hz8hh6q 9 ай бұрын
1-0 is the correct ans
@JavaQuestions
@JavaQuestions 9 ай бұрын
Yes, that's right bro
@jayadipbarade7288
@jayadipbarade7288 4 ай бұрын
2-2
@JavaQuestions
@JavaQuestions 4 ай бұрын
No, try again 🙂
@meenac3669
@meenac3669 3 ай бұрын
Options b
@JavaQuestions
@JavaQuestions 3 ай бұрын
Yes, that's right 👍👍
@user-qn8uf4qn9y
@user-qn8uf4qn9y 8 ай бұрын
The correct answer is 1-0😅
@JavaQuestions
@JavaQuestions 8 ай бұрын
Yes, that's right bro 👍👍
@nanisrinu746
@nanisrinu746 11 ай бұрын
1 0
@raman9706
@raman9706 9 ай бұрын
0-0 is correct answere
@JavaQuestions
@JavaQuestions 9 ай бұрын
Thanks for the comment The correct answer is 1-0
@vimalsuresh9746
@vimalsuresh9746 6 ай бұрын
1-0 correct
@JavaQuestions
@JavaQuestions 6 ай бұрын
Yes, that's right 👍👍
@rajasekharreddyakepati3375
@rajasekharreddyakepati3375 9 ай бұрын
Answer is 0-1 because you never reinitialize the i value and the j value becomes 1.
@JavaQuestions
@JavaQuestions 9 ай бұрын
Thanks for the comment The correct answer is 1-0
@bhadrayupanwar7398
@bhadrayupanwar7398 9 ай бұрын
I ++ means i=i+1 here it get initialized but as i is having post increment it will increment when it is used again somewhere in code.and j remains zero as the value of i not increased there due to postfix.1-0 is the correct answer
@JavaQuestions
@JavaQuestions 9 ай бұрын
Yes, that's right Thanks for the detailed explanation 👍
@douknoo6414
@douknoo6414 10 ай бұрын
ok understood
@JavaQuestions
@JavaQuestions 10 ай бұрын
Super Bro
@douknoo6414
@douknoo6414 10 ай бұрын
In experienced interviews which type of questions should we practice
@venkatulaganathan9910
@venkatulaganathan9910 4 ай бұрын
0-1🎉
@JavaQuestions
@JavaQuestions 4 ай бұрын
No, try again 🙂
@HassanHabib-ex6jo
@HassanHabib-ex6jo 2 ай бұрын
I think 0,1
@JavaQuestions
@JavaQuestions 2 ай бұрын
No, try again 🙂
Experienced #java #interview #question  | #3
0:06
Java
Рет қаралды 2,1 М.
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 10 МЛН
I wish I could change THIS fast! 🤣
00:33
America's Got Talent
Рет қаралды 83 МЛН
Вечный ДВИГАТЕЛЬ!⚙️ #shorts
00:27
Гараж 54
Рет қаралды 11 МЛН
Java Interview Questions For Freshers
0:43
SP Global Solution
Рет қаралды 107 М.
Day 87 | Time Complexity interview question | #java
0:07
Object Oriented Programming - The Four Pillars of OOP
11:23
Keep On Coding
Рет қаралды 317 М.
REST API Interview Questions (Beginner Level)
7:07
Exponent
Рет қаралды 159 М.
What is a MICROSERVICE ARCHITECTURE and what are its advantages?
8:19
Best SQL Mock Interview | SevenMentor Training
5:18
SevenMentor
Рет қаралды 19 М.
Alat Seru Penolong untuk Mimpi Indah Bayi!
00:31
Let's GLOW! Indonesian
Рет қаралды 10 МЛН