Accenture Pseudo Code Questions and Answers 2023-2024

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

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

  • @krut4rth
    @krut4rth 11 месяцев назад +9

    @27:50 the issue wasn't with using return in the main function but rather trying to use return within the conditional operator (?:), which isn't allowed in C syntax. YOU CAN OFCOURSE USE RETURN IN MAIN FUNCTION

  • @abhinilnath1900
    @abhinilnath1900 Год назад +68

    SOLUTION TO THE LAST QUESTION
    After what has been shown in the video for the second iteration of the outside while loop we get b = 21 , a = 18,c = 39. The second while loop does not satisfy, so we again run the condition if b>0 which is true. Now b = 21/2(10),a = 24,c = 34. C is still not greater than 40 so we do not enter the while loop. We again check the first loop where b > 0 satisfies. So now b = 5,a = 30,c = 35. C is still not greater than 40 s0 we do not go into that loop. We again check b>0 which is true now b becomes 2 and a becomes 36 and c becomes 38. Again we check c >40 condition which is still false. SO we check again b>0 which is true so we update values as b = 1,a = 42 and c = 43. Now the condition c>40 is true. So we etner that loop the first if condition is false as c mod 2 is not zero so we go to the else section where we print b the current value of b is 1 which is printed then we update c to be 43/10 that is 4.
    Then we again check b>0 which is true so we update values of b as 1/2(0) a = 48 and c = 48
    Then we check c>40 which is true we then check the if condition where c mod 2 is zero. So we print a that is 48 and then we update value of c as 48/10 = 4 then we come out of all the loops and print c which is 4 so the final ans is
    OPTION 4 : 12,1,48,4

    • @udaykiran2160
      @udaykiran2160 Год назад +3

      Bro how you got 12,1,48,4

    • @PrepInsta
      @PrepInsta  Год назад +7

      Hey, your answer is correct ;)

    • @abhinilnath1900
      @abhinilnath1900 Год назад +3

      @@PrepInsta hey so it was mentioned in the video that top 3 commentors get free prepinsta prime. I was among one of them :)

    • @syednayeemulla6948
      @syednayeemulla6948 Год назад

      ​@@udaykiran2160 sjcit?

    • @ganavi.j3080
      @ganavi.j3080 Год назад +1

      If we are not entering the else loop only why are we updating c?
      Shouldn’t it just be option 3?

  • @gangavaramtechnical9745
    @gangavaramtechnical9745 Год назад +39

    the 1st number is 12.....in 2nd iteration b=21,a=18,c=39 nd c is not reter than 40 again it goes to 1st while loop ,21>0 (true) so in third iteration b=10(because b is integer so tha value is not in float),a=18+6=24,c=34 and 3 is not greater 40 again goes 1st loop in 3rd iteration b=5,a=30,c=35 nd c is not greater than 40 so it goeas agin 1st loop and in 4th itration b=2,a=36,c=38 and 38 is not greter 40 again goes 1st loop in 5th iteraio b=1,a=42(36+6),c=43 so 43>40 and it is not divisble by 2 so it goeas to else statement and print b value ie...1 and c/10 retuen only 1st value so c=4 and 4 is not greter than 0 so gain it oes to 1st loop tin 6th iteration b=0,a=48,c=48+0=48 nd 48>40 so it goes to 2nd loop and it divisible by 2 so it prints 48 so th answer is 12,1,48,4 ........the way your explntion is awsome sir the questions from prepinsta is too good compare to other websites..thank you for providing good questions and helping students sir ...

    • @PrepInsta
      @PrepInsta  Год назад +3

      Hey, you are right!

    • @aryankodinya4993
      @aryankodinya4993 Год назад

      condition in loop 1 is that b>0 when b == 0 then loop ends so ans is 12 , 1

    • @ShrutiBansode-cd4pl
      @ShrutiBansode-cd4pl 3 месяца назад +4

      ​@@PrepInstaBut how at last we are not entering the second while loop's else condition then how the c/10 is possible

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

      @@ShrutiBansode-cd4pl when c=43, in the 5th iteration, we enter the while loop of c, where 43%2 != 0, hence we enter the else condition where b is printed (1) and c becomes c/10 i.e. 4

  • @harshvardhan7368
    @harshvardhan7368 Год назад +11

    I think the second while loop is an infinite loop as we are comparing (c>40) and for 1st iteration c=54 which is always true and we did not change the value of c so it should print 12 infinitely.

    • @rohanwadke2068
      @rohanwadke2068 Год назад +1

      Yes, it is printing infinite times

    • @codderrrr606
      @codderrrr606 Год назад +1

      c = c/10 will be outside else statement

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon

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

      @@PrepInsta tell it's been 7 months already

  • @diptiranjandash9684
    @diptiranjandash9684 Год назад +7

    The clarity of your vdos are at 100% better than a phd teacher .

    • @PrepInsta
      @PrepInsta  Год назад +1

      Thank you for your kind words 💖😍

  • @Craftedby_her
    @Craftedby_her Год назад +9

    I took the Accenture exam yesterday, where I encountered questions from quizzes on your website and videos on RUclips. I cleared round one with your resources and did one code but another one was slightly difficult(medium or a bit more), but my friends got similar questions (easy to less medium) you've told.
    Everything is so perfect for preparation but I've seen that technical questions are enough for Excel but cloud and networking are more into the topics. I think we need more knowledge from you on technical questions

    • @yayayay13
      @yayayay13 Год назад

      what was your coding round questions ?

    • @Craftedby_her
      @Craftedby_her Год назад +1

      @@yayayay13
      First question was about sharing candies that you have(N) with your friend, so that your friend should get atleast one Candie(B) and you should have Candies more than your friend(A)
      Conditions : A+B = N and A>B
      Ex: input 7
      Output 3
      Explanation (1,6)(2,5)(3,4)

    • @Craftedby_her
      @Craftedby_her Год назад

      @@yayayay13 second question is quite hard to explain but it was about arrays

    • @Craftedby_her
      @Craftedby_her Год назад

      @@yayayay13 and some of my friends got questions on strings like replace the string to nearest vowels and calculate the cost, you can find it on browser

    • @yayayay13
      @yayayay13 Год назад

      how would you rate the entire test @@Craftedby_her

  • @rejoice_every_moment
    @rejoice_every_moment Год назад +6

    Had a good grasp on pseudo codes, all thanks to Prep Insta

    • @PrepInsta
      @PrepInsta  Год назад +2

      We are glad we could help you!! ❤️

  • @LearnWithS-24
    @LearnWithS-24 Год назад +2

    We have interger a b c and we set a is equal to 6 and b is equal to 84
    While b is greater than 0 we divide b by 2,so it will be 84/2 that is 42 then a is equal to a +6 so it will be 6+6 that is 12 then c will be 42+12 that is 54 then while loop 54 is greater than 40 it goes to condition 54 mod 2 is 0 it prints a that is 12 then it goes to second iteration b become 42/2 then becomes 21 ,a becomes 18 and c becomes 39 the condition false so it again iterate b is equal to 21/2 --10 a is equal 18+6=24 then c becomes 10+24 ,still not greter than 40 so we don't enter while loop again b becomes 10/2 -- 5 a--24+6 --30 and c become 35 still not greater again we check b becomes 2 ,a becomes 36 ,c becomes 38 again no , b becomes 1 a become 42 c becomes 43 now it goes inside loop 43 mod 2 is not equal to zero it goes to else part prints b that is 1 and c divide by 10 that is 43/10 that is 4 ...again goes to upper while loop 1>0 b becomes 1/2 that is 0 and a becomes 48 and c becomes 48 it goes to while loop 48 mod 2 is equal to zero so it print 48 so ans is 12 1 4 48

    • @krut4rth
      @krut4rth 11 месяцев назад

      fuck nobody said me to round off to a lower bound. i.e 10.5 = 10

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon 😇

  • @niranjann8936
    @niranjann8936 Год назад +12

    Phenomenal work that the free resources provided by prepinsta are very helpful...looking forward to prepare all the topics and practice questions...thanks a lot for providing quality content. And also an excellent platform for entering into their dream company ❤

    • @PrepInsta
      @PrepInsta  Год назад +2

      Yayy Yayy !! 🥳💥Thank you so much for the valuable feedback. This surely motivates us 😎🤩

  • @pranav0207
    @pranav0207 Год назад +5

    Great explanation thanks a lot for providing quality content
    Thank you so much😊

  • @codderrrr606
    @codderrrr606 Год назад +3

    a, b, c = 6, 84, 0
    while b > 0:
    b = b // 2
    a = a + 6
    c = a + b

    while c > 40:
    if c % 2 == 0:
    print(a)
    else:
    print(b)
    c = c // 10
    print(c)
    this is the correct code

  • @maithreyans5892
    @maithreyans5892 Год назад +8

    during the last iteration we are not entering the else block so why update c /10 = 4 ?

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon

  • @ritikagore2240
    @ritikagore2240 Год назад +3

    Great explanation for the preparation of assessment.
    Thank you so much 😃

  • @viswanathchunduru4557
    @viswanathchunduru4557 Год назад +5

    The explanation is very good sir and we are understanding it easily while you are explaining the code line by line😊

    • @PrepInsta
      @PrepInsta  Год назад +1

      Thank you !!💚Keep watching ! 😍

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

    Hey it's been 2 months that i am practicing with these videos and also from your website and i must say i am learning a lot and also got better at coding as well as in other subjects so a big THANK YOU FROM ME ❤

  • @sanjay08
    @sanjay08 Год назад +9

    1st loop excutes till b becomes 0 .
    when the 1st loop exits
    'a' will become 48 by incrementing 6
    'c ' also become 48
    we divide c by 10 and get value 4
    at end of loop we print c

    hence the output is option 4 (12, 1, 48, 4)
    hope this one correct😇

    • @Spiderman-hb7oc
      @Spiderman-hb7oc Год назад +2

      no actually what i think, that if c needs to divide by 10, it should enters the else section, but due to 54%2==0, its not even enters the else
      so their is no any correct option, but actual one is 12, 54
      AM I CORRECT??

    • @BabaHanuman2612
      @BabaHanuman2612 Год назад +1

      I think it's an infinite loop condition because ( 54> 40) will remain true as it never goes to else statement.

    • @ITAmitBamniya
      @ITAmitBamniya Год назад

      @@BabaHanuman2612 me to bro it goes inf but all are said option d are true but how?

    • @PrepInsta
      @PrepInsta  Год назад +1

      Your answer is correct

    • @sanjay08
      @sanjay08 Год назад

      @@PrepInsta hey prepinsta as you mentioned top 3 comments will get prepinsta prime
      Whether I belong to those...😀

  • @abirsaha5452
    @abirsaha5452 Год назад +1

    Thanks for the great class🙂

  • @saiprakashreddy5210
    @saiprakashreddy5210 Год назад +1

    Your explanation is great 👌

    • @PrepInsta
      @PrepInsta  Год назад

      Hey there SaiPrakash! 💕
      We're glad we could be of help 🤗 Make sure to check out PrepInsta Prime for dedicated preparation materials, courses and more! prepinstaprime.com/
      Feel free to reach out to us over Instagram: www.prepinsta.com/instagram/
      Or drop a message on bit.ly/primeWA
      Or call us on 8448440710. Our mentors would be very glad to help you out with your queries and placement.
      Team PrepInsta is always here to help!

  • @manojramesh9929
    @manojramesh9929 Год назад +1

    Thanks you bro this video is very useful i learned new things

    • @PrepInsta
      @PrepInsta  Год назад

      You're welcome bro. 😅

  • @HarshitGupta9
    @HarshitGupta9 Год назад +1

    Ans is 12, 1 , 48, 4 . Since it is an integer type, it will take the integer value if it is in decimal. So, the loop will continue and will go on until the loop breaks.

    • @PrepInsta
      @PrepInsta  Год назад

      Hey,
      Your answer is correct!

  • @roshinivr7185
    @roshinivr7185 Год назад

    Gud.. but ' increase mic quality of prepinsta videos '

    • @PrepInsta
      @PrepInsta  Год назад +1

      Hey, Sure we are forwarding this to our team 💚

  • @prasannakumarnethi7291
    @prasannakumarnethi7291 Год назад +1

    Thank you so much bro.. its a great explanation ❤

    • @PrepInsta
      @PrepInsta  Год назад

      Hey prasanna, You're most welcome

  • @codderrrr606
    @codderrrr606 Год назад

    c = c/10 will be outside else statement
    otherwise nested while loop will run for infinit times

    • @PrepInsta
      @PrepInsta  Год назад

      Hey there💚,
      prepinsta.com/discord/
      Kindly join our discord server, our mentors will guide you with all your queries.

  • @ajaykumarvarma
    @ajaykumarvarma Год назад +3

    It was an awesome explanation and content by prepinsta
    I love to get a lot of content from you 🎉

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

    pseudo code kisi bhi language m puchh skte h ???

  • @ChaitanyaBijaragi
    @ChaitanyaBijaragi Год назад +2

    koi diwana kehata hai koi pagal smajata hai lekin hamari requirement toh sirf @prepinsta smajata hai. i would like to thank prepinsta for bringing such nice content video before others. keep it up lage rahooo......!

    • @PrepInsta
      @PrepInsta  Год назад +1

      Areh!!! Ek hi to dil hai kitni bar jitoge??
      Thank you so much for such a sweet comment 😉

    • @ChaitanyaBijaragi
      @ChaitanyaBijaragi Год назад

      ​@@PrepInstacan I get prepinsta prime for free...

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

    4th option is correct for the last question (12,1,48,4)

  • @tarunaakrishnakumar8020
    @tarunaakrishnakumar8020 Год назад

    Answer is 12,1,48,48
    Its not option 4 cause on the last iteration of the first loop when b=0, a = 48 and c=48, 48>40 then if(48%2==0) is true hence if part will get exectuted , finally print c would have 48.

    • @banglagaming3185
      @banglagaming3185 11 месяцев назад

      yes u are right. Finally found the correct answer. Actually option D is incorrect , instead of 4 should be 48

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon

  • @ruthkapse04
    @ruthkapse04 Год назад

    I believe the question is wrong. In nested while loop we are comparing c with 40 which is going to be always true because inside loop we are not charging value of c so the loop will infinite loop. So I guess we don't need to solve further, something's missing in question.

    • @PrepInsta
      @PrepInsta  Год назад

      Thanks for commenting, kindly join our discord server for all the technical and subject related queries.
      Here is the link: discord.com/invite/k2H5vkH6zE

  • @harshachindukuru5121
    @harshachindukuru5121 Год назад

    I had learnt core java how they will ask and i had mentioned in the resume. And also i got the mail today from accenture round 1=cognitive assesment ,round 2=technical round(optional) and round 3=communicationn assesment. if there is pseudo code exam whether it is only in java or all other languages.Can u please tell me

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      We know we got pretty late in replying to your comment :(
      How was your exam Harsha?

  • @HarshaVardhanGorla
    @HarshaVardhanGorla Год назад +1

    The correct ans is option 3 (12,1,4)

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

    c = c/10 is out of the else condition then it will work

  • @jhonny4251
    @jhonny4251 Год назад

    Sir is pseudo code required for application and services associate role in Accenture?

    • @PrepInsta
      @PrepInsta  Год назад

      Hey, Yes!
      For more details: prepinsta.com/sasa-accenture-registration-process/

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

    12:50 hey can you please tell why y is not updated but z is updated

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

      the question is wrong and will result in error

  • @shreyalanka
    @shreyalanka Год назад

    Awesome video

  • @adityadevkar6216
    @adityadevkar6216 Год назад +2

    correct Answer : 12,1,48,48 NOT 4 After 48

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon 😇

  • @003ANIRUDHHSEE
    @003ANIRUDHHSEE Год назад +1

    Option 4 i.e 12,1,48,4 is the right answer

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

    Option 4 will be the correct Answer
    12, 1, 48, 4

  • @sanjay_saaho6140
    @sanjay_saaho6140 Год назад +3

    4 question answer is 160 sir not 140

    • @Saikirannetha09
      @Saikirannetha09 11 месяцев назад

      It's 140 only bro

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      Hey, we got pretty late with the response 🥺 How was your test?

  • @anshu_aru
    @anshu_aru Год назад

    It would be better if you provide those ppt for revision purpose

    • @PrepInsta
      @PrepInsta  Год назад

      Kindly check the video description for details.

  • @arkatanukundu_171
    @arkatanukundu_171 Год назад

    last q ans: (4) 12,1,48,4

  • @internationaltamilan8414
    @internationaltamilan8414 Год назад +9

    anyone appeared off campuus 2024 batch

  • @vijayendraprasad4851
    @vijayendraprasad4851 Год назад

    Next month,we are having Accenture exam ,on campus. These videos will definitely help me a lot😊. Where can I find the app for prepinsta.

    • @PrepInsta
      @PrepInsta  Год назад

      Hi, we do not have an app right now but our team is working on it!!
      You can check out our website on www.prepinsta.com and www.prepinstaprime.com for placement preparation 💕

  • @theconquererrrgaming1706
    @theconquererrrgaming1706 Год назад +1

    In the first question, the value of ' a' should be 110 or it should be 6

    • @PrepInsta
      @PrepInsta  Год назад

      Hey! For technical related queries you can connect with us on discord prepinsta.com/discord

  • @harshadatapre2133
    @harshadatapre2133 Год назад

    Answer. 4. 12, 1, 48, 4

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon 😇

  • @MrINTELTVmrintel2020
    @MrINTELTVmrintel2020 Год назад

    Hii I am going to attend accenture recruitment process in next month. Is the same qns will ask me? Please let me know

    • @PrepInsta
      @PrepInsta  Год назад

      Kindly note that pattern of questions will be same. Reach out to us for proper preparation guidance here : instagram.com/prepinsta.offcampus/ 😊🌸

    • @Gokul.S1212
      @Gokul.S1212 Год назад

      12,1,48,4 sir for last question

  • @sarangmusicx
    @sarangmusicx Год назад

    option 4 -> 12,1,48,4
    is the answer

  • @AYJ959
    @AYJ959 Год назад

    any coupon code or discount for prime?

    • @PrepInsta
      @PrepInsta  Год назад

      Hey, text us at 8448440710 we will definitely help you

  • @anmolsoni106
    @anmolsoni106 Год назад

    Last Question's Answer is :- 12, 1, 48, 4 .

  • @surenyt3505
    @surenyt3505 11 месяцев назад

    Answer is : 12,1,4

    • @PrepInsta
      @PrepInsta  11 месяцев назад

      Thanks for answering ❤️, kindly join our discord server if you have any technical or subject related doubts : prepinsta.com/discord/

  • @SilpaShree-b6r
    @SilpaShree-b6r Год назад

    Ans is option 2.12,4

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon

  • @sudipsen3677
    @sudipsen3677 Год назад

    12 1 48 4 final answer

    • @PrepInsta
      @PrepInsta  Год назад +1

      Saabashh!!! your answer is correct

    • @sudipsen3677
      @sudipsen3677 Год назад

      @@PrepInsta thank you

  • @shivasundaram26
    @shivasundaram26 Год назад

    Option 4
    12,1,48,4

    • @PrepInsta
      @PrepInsta  Год назад

      You are definitely right!

  • @vorsusaisharath948
    @vorsusaisharath948 Год назад

    4th option -> 12,1,48,4

  • @csit-a-07-aniketnayek65
    @csit-a-07-aniketnayek65 Год назад

    Ans : 12,1,48,4

    • @PrepInsta
      @PrepInsta  Год назад

      Your answer is right! 💖

  • @pedakapusuneel4374
    @pedakapusuneel4374 11 месяцев назад

    It would be great if you explain clearly your voice is not clear

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      Sure, we will forward the feedback.

  • @yugandharkanaparthi1825
    @yugandharkanaparthi1825 Год назад

    please make pseudo codes in python

    • @PrepInsta
      @PrepInsta  Год назад

      Thank you, we will surely work on it ;)

  • @abhisekroutray9942
    @abhisekroutray9942 Год назад

    12,1,48,4

  • @khushmendrasingh6086
    @khushmendrasingh6086 Год назад

    (1)48,4

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon

  • @Ankitkumar-nd9kk
    @Ankitkumar-nd9kk Год назад

    last question ans=4

  • @SushrutKN
    @SushrutKN Год назад +2

    ANSWER for the last question :
    The 1st number is 12,
    So during the second iteration of the outer while loop, the values of b, a, and c are updated to 21, 18, and 39 respectively. However, the second while loop does not meet the required condition, so we proceed to evaluate if b > 0, which is true. Consequently, b is updated to 21/2(10), a becomes 24, and c becomes 34. Since c is still not greater than 40, we do not enter the while loop. We then check the condition b > 0, which is again true. This leads to b becoming 5, a becoming 30, and c becoming 35. However, c is still not greater than 40, so we do not proceed into that loop.
    Next, we check if b > 0, which is true, resulting in b becoming 2, a becoming 36, and c becoming 38. We once again evaluate the condition c > 40, which is still false. Therefore, we check if b > 0 again, and since it is true, we update the values with b becoming 1, a becoming 42, and c becoming 43. At this point, the condition c > 40 is true, so we enter that loop. The first if condition is false since c mod 2 is not zero, which directs us to the else section. In the else section, we print the current value of b, which is "1",
    and then update c to be 43/10, resulting in 4.
    Continuing, we again check if b > 0, which is true, and update the values of b as 1/2(0), a becomes 48, and c becomes 48. We then check the condition c > 40, which is true. We proceed to evaluate the if condition, where c mod 2 is zero. Consequently, we print the value of a, which is "48",
    and update c to be 48/4, resulting in 4. Finally, we exit all the loops and print the value of c, which is 4. Therefore, the final answer is: 12,1,48,4
    OPTION 4: 12, 1, 48, 4.

    • @sandeepreddy357
      @sandeepreddy357 Год назад +2

      in the last step y did u updated the c value when the control is in if block after printing if statements the control will check the outer loop where 0>0 returns false and prints c which is 48 . why did u enter the else statement and updated c value ? can u explain me ?

    • @Anonymous-ns8ti
      @Anonymous-ns8ti Год назад

      Trying to get prepinsta prime subscription??😅

    • @sandeepreddy357
      @sandeepreddy357 Год назад

      @@Anonymous-ns8ti broooo 😂

    • @PrepInsta
      @PrepInsta  Год назад +1

      You are absolutely right!

    • @SushrutKN
      @SushrutKN Год назад

      @@PrepInsta Thank you!❤️

  • @saikiranmakam3279
    @saikiranmakam3279 Год назад

    12,4,48,1

  • @37_debrajmandal
    @37_debrajmandal Год назад

    option 4 will be the answer

  • @aninditamitra7845
    @aninditamitra7845 Год назад

    has accenture off campus hiring for 2024 batch started?????
    please someone confirm

    • @dakshatanegi8445
      @dakshatanegi8445 Год назад

      Yes from August

    • @PrepInsta
      @PrepInsta  Год назад

      Off campus hiring have not been started yet, it'll be announced soon 💕

  • @chandukilari6370
    @chandukilari6370 Год назад

    Need prime for free

    • @PrepInsta
      @PrepInsta  Год назад

      Hi, we won't be able to share free PrepInsta Prime subscription but however you can always prepare using www.prepinsta.com where all free materials are available. 💕
      Also, we can help you with maximum possible discounts. If you'd like to know more about it, kindly give us a call on 8448440710 and we'd be happy to help ❤️

  • @KoteshPalivela
    @KoteshPalivela Год назад

    the correct answer is 12,1,4

  • @anirudhhar8877
    @anirudhhar8877 Год назад

    Hey PrepInsta!!! You guys are doing a wonderful job…Salute 🫡

    • @PrepInsta
      @PrepInsta  Год назад

      Hey ! Thanks for the lovely feedback. 💚🤩

  • @karthikm8319
    @karthikm8319 11 месяцев назад

    answer is 4->12 1 48 4

    • @PrepInsta
      @PrepInsta  10 месяцев назад

      Hey, we got pretty late with the response 🥺 How was your test?

  • @siddarthareddyb6506
    @siddarthareddyb6506 Год назад

    12,1,4,48

    • @PrepInsta
      @PrepInsta  Год назад

      You are great because your answer is right! 😎

  • @priyankpatel1580
    @priyankpatel1580 Год назад

    Ans is 12 1 48 and 4