Option c.156 is correct answer. Iteration 1: Before : a = 50, b = 3, c = 3 d = a mod b = 50 mod 3 = 2 e = e + d + a = 0 + 2 + 50 = 52 c = c - 1 = 3 - 1 = 2 Iteration 2: Before : a = 50, b = 3, c = 2 d = a mod b = 50 mod 3 = 2 e = e + d + a = 52 + 2 + 50 = 104 c = c - 1 = 2 - 1 = 1 Iteration 3: Before : a = 50, b = 3, c = 1 d = a mod b = 50 mod 3 = 2 e = e + d + a = 104 + 2 + 50 = 156 c = c - 1 = 1 - 1 = 0 the value of e will be 156.
@DURGASREECHOWDHARYKOMMINI3 ай бұрын
Can you please tell whether you got free prepinsta prime ?
@pradip_patil2922 ай бұрын
@@DURGASREECHOWDHARYKOMMINI no
@saiprakash9292 ай бұрын
bro is really in need of prep insta prime
@shubhamshakyawal3 ай бұрын
These are the easy ones. Please make a video for the actual questions which came in exams. Those were difficult
@Movieclips-ch4uo3 ай бұрын
C.156 I usually do all the free stuff of it like the top 100 codes because its too. Costly for me to afford
@MadhanKandregula3 ай бұрын
Iteration 1: Before : a = 50, b = 3, c = 3 d = a mod b = 50 mod 3 = 2 e = e + d + a = 0 + 2 + 50 = 52 c = c - 1 = 3 - 1 = 2 Iteration 2: Before : a = 50, b = 3, c = 2 d = a mod b = 50 mod 3 = 2 e = e + d + a = 52 + 2 + 50 = 104 c = c - 1 = 2 - 1 = 1 Iteration 3: Before : a = 50, b = 3, c = 1 d = a mod b = 50 mod 3 = 2 e = e + d + a = 104 + 2 + 50 = 156 c = c - 1 = 1 - 1 = 0 the value of e will be 156.
@Imxsuju3 ай бұрын
option c:156
@ravalitalasu11073 ай бұрын
Hello Sir Great explanation from you Thanks for the video I hope getting a PERPINSTA Prime will definitely help me to place in Accenture , hope for the best
@shivrajbhasme44482 ай бұрын
Like to get placed in Accenture Answer to question is C : 156
@telugubeats70133 ай бұрын
a=50 , b=3 , c=3 d=50%3 -> 2 e=e+d+a =e+52 next loop c=2 , which is greater than 0 d value doesn't change e=e+52+52 next loop c=1 ,which is greater than 0 d value doesn't change e=52+52+52 =156
@YugalnasareАй бұрын
Sir, is there any shortcut trick for solving these types of questions?
@poojas57123 ай бұрын
In on-campus whether we need to attend test in college lab or own system?
@irfanafsar47563 ай бұрын
I learn lot of things by prep insta really good to learn and develop my skills is really good plat form to learn 🎉🎉🎉🎉🎉
@muzaffarsk-oh8rm3 ай бұрын
First a=50,b=3,c=3,d=0,e=0 So first check while and c>0 so find d = a mod b which is become 50 % 3 so d= 2. Heare can't change a and b value so d is ideal for program e=e+d+a . e= 0+2+50 e= 52. C= c-1 C= 2. Again check loop 2>0 so d= 2 fix e= e+d+a. e= 52+2+50= 104 C= c-1 C= 2-1. C= 1 Again check loop and c> 0 so. Again perform opration. e= e+d+a e = 104+2+50. e= 156. C=c-1 C= 1-1 C= 0. Again check loop and 0!> 0 so end the loop and print e. So print 156. That's the answer is 156. ANSWER = OPTION C 156
@viraj22043 ай бұрын
Option c.156 is correct answer. First a=50,b=3,c=3,d=0,e=0 So first check while and c>0 so find d = a mod b which is become 50 % 3 so d= 2. Heare can't change a and b value so d is ideal for program e=e+d+a . e= 0+2+50 e= 52. C= c-1 C= 2. Again check loop 2>0 so d= 2 fix e= e+d+a. e= 52+2+50= 104 C= c-1 C= 2-1. C= 1 Again check loop and c> 0 so. Again perform opration. e= e+d+a e = 104+2+50. e= 156. C=c-1 C= 1-1 C= 0. Again check loop and 0!> 0 so end the loop and print e. So print 156. That's the answer is 156. ANSWER = OPTION C 156
@ahemadrazapathan46623 ай бұрын
Option (c) is correct ✅ First iteration: d = a mod b = 50 mod 3 = 2 e = e + d + a = 0 + 2 + 50 = 52 c = c - 1 = 3 - 1 = 2 Second iteration: d = a mod b = 50 mod 3 = 2 e = e + d + a = 52 + 2 + 50 = 104 c = c - 1 = 2 - 1 = 1 Third iteration: d = a mod b = 50 mod 3 = 2 e = e + d + a = 104 + 2 + 50 = 156 c = c - 1 = 1 - 1 = 0 loop Ends since c = 0 Final output: 156
@pratyushfunde92593 ай бұрын
Answer is 156 as the e=e+d+a will be executed three times for c=1,2 and 3 and each time it adds 52 to the value of e
@abir41853 ай бұрын
Last question answer is , On 1st iteration a=50, b= 3, c= 3 and c >0 so d= 50%3= 2 so e = 0+2+50 = 52 On 2nd iteration a=50, b= 3, c= 2 and c >0 so d= 50%3= 2 so e = 52+2+50 = 104 On 3rd iteration a=50, b= 3, c= 1 and c >0 so d= 50%3= 2 so e = 104+2+50 = 156 So option C.156 is correct
@travelwithleo39173 ай бұрын
Sir if my primary language is java so in interview question used to come in other language as well or not
@venuvarma92523 ай бұрын
Option c.156 is the output and the video is veryful
@ayush073103 ай бұрын
c)156 for assignment question ❤
@sudhanshumukati3103 ай бұрын
It's highly useful prepinsta never disappoints..
@subhashiniks28783 ай бұрын
correct answer: Option c - 156 In first iteration: c=3 3>0 is true d=50%3 = 2 e = e+d+a = 0+2+50 = 52 c=c-1 = 2 In second iteration: c=2 2>0 is true d=50%3 = 2 e = e+d+a = 52+2+50 = 104 c=c-1 = 1 In third iteration: c=1 1>0 is true d=50%3 = 2 e = e+d+a = 104+2+50 = 156 c=c-1 = 0 In fourth iteration: 0>0 is false,so it gets out of the loop and prints e,which is 156. I hope prepinsta prime will help me to practice more and get better.Thank you.
@lekhanroy1803 ай бұрын
Option c.156 Iteration 1: Before : a = 50, b = 3, c = 3 d = a mod b = 50 mod 3 = 2 e = e + d + a = 0 + 2 + 50 = 52 c = c - 1 = 3 - 1 = 2 Iteration 2: Before : a = 50, b = 3, c = 2 d = a mod b = 50 mod 3 = 2 e = e + d + a = 52 + 2 + 50 = 104 c = c - 1 = 2 - 1 = 1 Iteration 3: Before : a = 50, b = 3, c = 1 d = a mod b = 50 mod 3 = 2 e = e + d + a = 104 + 2 + 50 = 156 c = c - 1 = 1 - 1 = 0 the value of e will be 156.
@kashifstudent27913 ай бұрын
really helpful
@onoonoonoO3 ай бұрын
first iteration: d=2; e=0+2+50 = 52 c=2 second iteration: d=2; e=52+2+50=104 c=1 third iteration: d=2; e=104+2+50; c=0 end of loop d= 156 Hit like everyone who got the same answer❤
@kornugovind24213 ай бұрын
hello sir , thankyou for the video and your explanation is great , to place in accenture i think we definately need a perinsta prime account , hope for the best
@_gaganreddy_3 ай бұрын
Option c.156 Iteration 1: Before: a = 50 b = 3 c = 3 d = a mod b = 50 mod 3 = 2 e = e + d + a = 0 + 2 + 50 = 52 c = c - 1 = 3 - 1 = 2 Iteration 2: Before: a = 50 b = 3 c = 2 d = a mod b = 50 mod 3 = 2 e = e + d + a = 52 + 2 + 50 = 104 c = c - 1 = 2 - 1 = 1 Iteration 3: Before: a = 50 b = 3 c = 1 d = a mod b = 50 mod 3 = 2 e = e + d + a = 104 + 2 + 50 = 156 c = c - 1 = 1 - 1 = 0 the value of e will be 156.
@SrivaniTadaka3 ай бұрын
option a .52 is correct d=50%3=2 e=0+2+50 c=3-1=2 then e=52
@GreenPanther162 ай бұрын
The Answer is 156 For the 1st iteration : d=50%3=2 e=0+2+50 For which it gives e=52 For 2nd iteration: d=50%3=2 e=52+2+50 e=104 For 3rd iteration d=2 e=104+2+50 e=156 In simple way ...we can say that we can simply calculate the E value without wasting of tym ..... As we know D and E areconstantly remain unchanged ...and upadting only E by just adding the upated values of E foe every iteration
@sravanin126tnp83 ай бұрын
I Need prime because I believe that this platform will definitely help me to get placed in Accenture,so pls give me prime which will help me. Thank you
@saisuryamalla2093 ай бұрын
Iteration-1 : 0+2+50=52 Iteration-2: 52+2+50=104 Iteration-3 : 104+2+50=156 so final answer is 156.i.e.., option "C"
@ShivrajBhasme2 ай бұрын
Iteration 1: Before : a = 50, b = 3, c = 3 d = a mod b = 50 mod 3 = 2 e = e + d + a = 0 + 2 + 50 = 52 c = c - 1 = 3 - 1 = 2 Iteration 2: Before : a = 50, b = 3, c = 2 d = a mod b = 50 mod 3 = 2 e = e + d + a = 52 + 2 + 50 = 104 c = c - 1 = 2 - 1 = 1 Iteration 3: Before : a = 50, b = 3, c = 1 d = a mod b = 50 mod 3 = 2 e = e + d + a = 104 + 2 + 50 = 156 c = c - 1 = 1 - 1 = 0 the value of e will be 156. Option C
@AkhilaKalagara3 ай бұрын
Option C:156
@jesusgospels1846Ай бұрын
Option : C 156 Why it because the value of a and b are same the module of these is 2 remainder so the value of e is 0 “constant “ and the value of a is 50 So the answer of is 156
@178_arkaprovdhar53 ай бұрын
Ans is 156 as in each iteration e will be increased by 52 as a=50 and d=2
@kushagratripathi66923 ай бұрын
option C. 156
@rebakatheresajoe85443 ай бұрын
Yes it's helpful
@uweshkhan9092 ай бұрын
Sir, Answer will be 156 of last Question!
@21BTAD025MANAVA3 ай бұрын
cracked Accenture first round!!
@digeeshdigeesh19153 ай бұрын
how bro?
@mr.abhishek29m3 ай бұрын
Option d) 153 is correct
@sanjusamsonkadiri44793 ай бұрын
156 is correct answer for the above last question
@Ruthu_Official7732 ай бұрын
option d.153 is correct answer
@mb___0_07__3 ай бұрын
option C. 156-> itr 1..52..................... itr 2 104....it3 156 and then e becomes 0.
@manojsunka11422 ай бұрын
Option -c)156
@maddhurivenu35033 ай бұрын
The answer is definitely "156"
@kaustavmukherjee95083 ай бұрын
Option c)156
@rohitkokate65423 ай бұрын
Q1 5050
@mr.omop13 ай бұрын
I really need prep insta prime because in next month Accenture is coming in my college 😢😢😢 please
@ganeshjamma45323 ай бұрын
The answer for the last question was option C :156
@sajalkandpal75642 ай бұрын
Answer c=156
@user-jb8be6bz1q2 ай бұрын
156 is correct answer ..
@devsisters95992 ай бұрын
156 is the correct answer...
@NothingToEverything07Ай бұрын
156 is correct answer am i get prime?
@DeepakKumarSingh-kd8kg3 ай бұрын
156 is the correct one
@ramyaashokashok26293 ай бұрын
C.156 is correct answer
@FunnyvideoCreation-t7t3 ай бұрын
c is the right option
@fall-in-love-heheАй бұрын
at 4:06 answer shoud be none of these : its fun(fun(n-1)) , so its calling it 2 times
@marthagracechilakapati-uf4em3 ай бұрын
Option c :156
@renjenir283 ай бұрын
Ans : 156
@Arms-1323 ай бұрын
Option c 156
@SLAYER777693 ай бұрын
C.156
@saketpatil68133 ай бұрын
e = 156 is correct answer
@guru2003-b4b2 ай бұрын
156 option c is the answer
@macharohith27782 ай бұрын
last answer is 156
@studywithme45992 ай бұрын
156 is the answer.
@rohitkokate65423 ай бұрын
156
@skydynagamer5473 ай бұрын
156 answer is right
@rohitrajput18233 ай бұрын
156 is the correct answer
@thunderxnatic38362 ай бұрын
C 156
@rakshithd.s.31733 ай бұрын
How to get placed in accenture
@vamsikrishna65363 ай бұрын
i will comment on every video but i didn't get prime🙂
@bhargavikolli69933 ай бұрын
Option 156
@sailendranarayandash96977 күн бұрын
156 last answer
@MeghaNaragund-g6hАй бұрын
Correct ans option :c 52+52+52=156
@knowledgeadda34303 ай бұрын
The correct ans is option C
@ammulu-o7q3 ай бұрын
Answer is 156
@surenderreddy62942 ай бұрын
ans=156
@divyasree33013 ай бұрын
156 option c
@varshikak5763 ай бұрын
156 will be the output
@nandu21123 ай бұрын
I need it.... Please
@tejasdandage25333 ай бұрын
OPTION C:156
@sabari82963 ай бұрын
156 c option
@Anuragkumar-ve1od3 ай бұрын
156 is the answer
@raunakchanda1123 ай бұрын
c 156
@deepraj53383 ай бұрын
52 is the answer
@SajeyaTharunam3 ай бұрын
52 answer
@BetterSachet3 ай бұрын
Prepinsta lets do a deal ,So the answer is 156 for sure , Don't give me anything free just give me a 90% off .
@AdityaGupta-ne7yu3 ай бұрын
156 will be the ans
@arnabdas58573 ай бұрын
52+52+52 = 156
@mjawale123453 ай бұрын
This Comment never gonna be in top 3
@enjoy_shortzАй бұрын
its 156 😢
@AshishKumarJha-xk8oh3 ай бұрын
Hi
@tulasiraogorle2 ай бұрын
Top 3 comments😁
@abhiram62283 ай бұрын
1st comment done by me😂
@yashjoshi-j6c3 ай бұрын
I will speak a lie e= 156
@devumeri1342 ай бұрын
Only because the top three will get prime...no one is liking the comments 😹
@PrepInsta2 ай бұрын
Hey there! We are liking them though! 😉 Make sure to check out PrepInsta Prime for dedicated Accenture preparation materials, 200+ courses and more! prepinstaprime.com/ Also, feel free to reach out to us over our socials via prepinsta.com/offcampus-updates/ Or call us on 8448440710 or 080-473-62121. Our mentors would be very glad to help you out with your queries and placement preparations. Team PrepInsta is always here to help! 💚
@NIRMALRAAGHAVN3 ай бұрын
5050
@Piichiiii3 ай бұрын
1st comment!
@harshavardhanmashetti59453 ай бұрын
a = 50 , b = 3 , c = 3 d = 50% * 3 -> 2 e=e+d+a = e + 52 next loop c = 2 , which is greater than 0 d value doesn't change e = e + 52 + 52 next loop c = 1 , which is greater than 0 d value doesn't change =156 e = 52 + 52 + 52
@manasranjandas31083 ай бұрын
Iteration 1: Before : a = 50, b = 3, c = 3 d = a mod b = 50 mod 3 = 2 e = e + d + a = 0 + 2 + 50 = 52 c = c - 1 = 3 - 1 = 2 Iteration 2: Before : a = 50, b = 3, c = 2 d = a mod b = 50 mod 3 = 2 e = e + d + a = 52 + 2 + 50 = 104 c = c - 1 = 2 - 1 = 1 Iteration 3: Before : a = 50, b = 3, c = 1 d = a mod b = 50 mod 3 = 2 e = e + d + a = 104 + 2 + 50 = 156 c = c - 1 = 1 - 1 = 0 the value of e will be 156.