Accenture Pseudocode Questions and Answers 2024

Поделиться
HTML-код
  • Опубликовано: 28 окт 2024

Комментарии • 148

  • @subramaniyamS-k3x
    @subramaniyamS-k3x 3 месяца назад +116

    like if you are going to crack accenture tests💜

  • @RahulKumar-mh5fl
    @RahulKumar-mh5fl 3 месяца назад +71

    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.

  • @shubhamshakyawal
    @shubhamshakyawal 3 месяца назад +14

    These are the easy ones. Please make a video for the actual questions which came in exams. Those were difficult

  • @Movieclips-ch4uo
    @Movieclips-ch4uo 3 месяца назад +9

    C.156
    I usually do all the free stuff of it like the top 100 codes because its too. Costly for me to afford

  • @MadhanKandregula
    @MadhanKandregula 3 месяца назад +7

    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.

  • @Imxsuju
    @Imxsuju 3 месяца назад +9

    option c:156

  • @ravalitalasu1107
    @ravalitalasu1107 3 месяца назад +2

    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

  • @telugubeats7013
    @telugubeats7013 3 месяца назад +1

    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

  • @ahemadrazapathan4662
    @ahemadrazapathan4662 3 месяца назад +1

    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

  • @irfanafsar4756
    @irfanafsar4756 3 месяца назад +8

    I learn lot of things by prep insta really good to learn and develop my skills is really good plat form to learn
    🎉🎉🎉🎉🎉

  • @muzaffarsk-oh8rm
    @muzaffarsk-oh8rm 3 месяца назад

    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

  • @abir4185
    @abir4185 3 месяца назад +1

    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

  • @subhashiniks2878
    @subhashiniks2878 3 месяца назад

    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.

  • @poojas5712
    @poojas5712 3 месяца назад +1

    In on-campus whether we need to attend test in college lab or own system?

  • @viraj2204
    @viraj2204 3 месяца назад +7

    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

  • @pratyushfunde9259
    @pratyushfunde9259 3 месяца назад

    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

  • @shivrajbhasme4448
    @shivrajbhasme4448 2 месяца назад +10

    Like to get placed in Accenture
    Answer to question is C : 156

  • @venuvarma9252
    @venuvarma9252 3 месяца назад

    Option c.156 is the output and the video is veryful

  • @lekhanroy180
    @lekhanroy180 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.

  • @kashifstudent2791
    @kashifstudent2791 3 месяца назад +1

    really helpful

  • @kornugovind2421
    @kornugovind2421 3 месяца назад

    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

  • @onoonoonoO
    @onoonoonoO 3 месяца назад +5

    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❤

  • @GreenPanther16
    @GreenPanther16 Месяц назад

    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

  • @sudhanshumukati310
    @sudhanshumukati310 3 месяца назад

    It's highly useful prepinsta never disappoints..

  • @ayush07310
    @ayush07310 3 месяца назад

    c)156 for assignment question ❤

  • @_gaganreddy_
    @_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.

  • @ShivrajBhasme
    @ShivrajBhasme 2 месяца назад

    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

  • @saisuryamalla209
    @saisuryamalla209 3 месяца назад

    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"

  • @sravanin126tnp8
    @sravanin126tnp8 3 месяца назад +1

    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

  • @SrivaniTadaka
    @SrivaniTadaka 3 месяца назад

    option a .52 is correct
    d=50%3=2
    e=0+2+50
    c=3-1=2
    then e=52

  • @travelwithleo3917
    @travelwithleo3917 3 месяца назад

    Sir if my primary language is java so in interview question used to come in other language as well or not

  • @Yugalnasare
    @Yugalnasare Месяц назад

    Sir, is there any shortcut trick for solving these types of questions?

  • @178_arkaprovdhar5
    @178_arkaprovdhar5 3 месяца назад

    Ans is 156 as in each iteration e will be increased by 52 as a=50 and d=2

  • @AkhilaKalagara
    @AkhilaKalagara 3 месяца назад +1

    Option C:156

  • @rohitkokate6542
    @rohitkokate6542 3 месяца назад +3

    Q1 5050

  • @jesusgospels1846
    @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

  • @kushagratripathi6692
    @kushagratripathi6692 3 месяца назад +1

    option C. 156

  • @rebakatheresajoe8544
    @rebakatheresajoe8544 3 месяца назад

    Yes it's helpful

  • @fall-in-love-hehe
    @fall-in-love-hehe Месяц назад

    at 4:06 answer shoud be none of these : its fun(fun(n-1)) , so its calling it 2 times

  • @uweshkhan909
    @uweshkhan909 2 месяца назад

    Sir, Answer will be 156 of last Question!

  • @21BTAD025MANAVA
    @21BTAD025MANAVA 3 месяца назад

    cracked Accenture first round!!

  • @mb___0_07__
    @mb___0_07__ 3 месяца назад

    option C. 156-> itr 1..52..................... itr 2 104....it3 156 and then e becomes 0.

  • @thunderxnatic3836
    @thunderxnatic3836 2 месяца назад

    C 156

  • @kameswarpanda
    @kameswarpanda Месяц назад

    Option c - 156

  • @mr.abhishek29m
    @mr.abhishek29m 3 месяца назад

    Option d) 153 is correct

  • @sajalkandpal7564
    @sajalkandpal7564 Месяц назад +1

    Answer c=156

  • @manojsunka1142
    @manojsunka1142 2 месяца назад

    Option -c)156

  • @renjenir28
    @renjenir28 3 месяца назад

    Ans : 156

  • @sanjusamsonkadiri4479
    @sanjusamsonkadiri4479 3 месяца назад

    156 is correct answer for the above last question

  • @ganeshjamma4532
    @ganeshjamma4532 3 месяца назад

    The answer for the last question was option C :156

  • @Ruthu_Official773
    @Ruthu_Official773 2 месяца назад

    option d.153 is correct answer

  • @Arm-132
    @Arm-132 3 месяца назад

    Option c 156

  • @marthagracechilakapati-uf4em
    @marthagracechilakapati-uf4em 3 месяца назад

    Option c :156

  • @SLAYER77769
    @SLAYER77769 3 месяца назад

    C.156

  • @surenderreddy6294
    @surenderreddy6294 2 месяца назад

    ans=156

  • @mr.omop1
    @mr.omop1 3 месяца назад

    I really need prep insta prime because in next month Accenture is coming in my college 😢😢😢 please

  • @sailendranarayandash9697
    @sailendranarayandash9697 2 дня назад

    156 last answer

  • @FunnyvideoCreation-t7t
    @FunnyvideoCreation-t7t 3 месяца назад

    c is the right option

  • @DeepakKumarSingh-kd8kg
    @DeepakKumarSingh-kd8kg 3 месяца назад

    156 is the correct one

  • @user-jb8be6bz1q
    @user-jb8be6bz1q 2 месяца назад

    156 is correct answer ..

  • @ramyaashokashok2629
    @ramyaashokashok2629 3 месяца назад

    C.156 is correct answer

  • @NothingToEverything07
    @NothingToEverything07 25 дней назад

    156 is correct answer
    am i get prime?

  • @bhargavikolli6993
    @bhargavikolli6993 3 месяца назад

    Option 156

  • @VigneshKumar-m5w
    @VigneshKumar-m5w 3 месяца назад

    156 is the correct answer.

  • @MeghaNaragund-g6h
    @MeghaNaragund-g6h Месяц назад

    Correct ans option :c
    52+52+52=156

  • @maddhurivenu3503
    @maddhurivenu3503 3 месяца назад

    The answer is definitely "156"

  • @rohitkokate6542
    @rohitkokate6542 3 месяца назад +2

    156

  • @tejasdandage2533
    @tejasdandage2533 3 месяца назад

    OPTION C:156

  • @vamsikrishna6536
    @vamsikrishna6536 3 месяца назад +1

    i will comment on every video but i didn't get prime🙂

  • @raunakchanda112
    @raunakchanda112 3 месяца назад

    c 156

  • @skydynagamer547
    @skydynagamer547 3 месяца назад

    156 answer is right

  • @saketpatil6813
    @saketpatil6813 3 месяца назад

    e = 156 is correct answer

  • @macharohith2778
    @macharohith2778 Месяц назад

    last answer is 156

  • @divyasree3301
    @divyasree3301 3 месяца назад

    156 option c

  • @guru2003-b4b
    @guru2003-b4b 2 месяца назад

    156 option c is the answer

  • @studywithme4599
    @studywithme4599 2 месяца назад

    156 is the answer.

  • @jigyasayadav1155
    @jigyasayadav1155 2 месяца назад

    answer is 52

  • @sabari8296
    @sabari8296 2 месяца назад

    156 c option

  • @SajeyaTharunam
    @SajeyaTharunam 3 месяца назад

    52 answer

  • @deepraj5338
    @deepraj5338 3 месяца назад

    52 is the answer

  • @Anuragkumar-ve1od
    @Anuragkumar-ve1od 3 месяца назад

    156 is the answer

  • @knowledgeadda3430
    @knowledgeadda3430 3 месяца назад

    The correct ans is option C

  • @rakshithd.s.3173
    @rakshithd.s.3173 3 месяца назад

    How to get placed in accenture

  • @nandu2112
    @nandu2112 3 месяца назад

    I need it.... Please

  • @varshikak576
    @varshikak576 3 месяца назад

    156 will be the output

  • @AshishKumarJha-xk8oh
    @AshishKumarJha-xk8oh 3 месяца назад

    Hi

  • @AdityaGupta-ne7yu
    @AdityaGupta-ne7yu 3 месяца назад

    156 will be the ans

  • @arnabdas5857
    @arnabdas5857 3 месяца назад

    52+52+52 = 156

  • @enjoy_shortz
    @enjoy_shortz Месяц назад

    its 156 😢

  • @tulasiraogorle
    @tulasiraogorle 2 месяца назад

    Top 3 comments😁

  • @abhiram6228
    @abhiram6228 3 месяца назад

    1st comment done by me😂

  • @BetterSachet
    @BetterSachet 2 месяца назад

    Prepinsta lets do a deal ,So the answer is 156 for sure , Don't give me anything free just give me a 90% off .

  • @yashjoshi-j6c
    @yashjoshi-j6c 3 месяца назад +1

    I will speak a lie e= 156

  • @mjawale12345
    @mjawale12345 3 месяца назад +1

    This Comment never gonna be in top 3

  • @devumeri134
    @devumeri134 2 месяца назад

    Only because the top three will get prime...no one is liking the comments 😹

    • @PrepInsta
      @PrepInsta  2 месяца назад +1

      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! 💚

  • @NIRMALRAAGHAVN
    @NIRMALRAAGHAVN 2 месяца назад

    5050

  • @Piichiiii
    @Piichiiii 3 месяца назад

    1st comment!

  • @harshavardhanmashetti5945
    @harshavardhanmashetti5945 3 месяца назад

    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

  • @manasranjandas3108
    @manasranjandas3108 2 месяца назад

    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.

  • @kaustavmukherjee9508
    @kaustavmukherjee9508 3 месяца назад

    Option c)156