@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
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
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 ...
@@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
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.
I took the Accenture exam yesterday, where I encountered questions from quizzes on your website and videos on TH-cam. 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 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)
@@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
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
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 ❤
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!
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 ❤
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.
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......!
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😇
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??
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
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.
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.
Thanks for commenting, kindly join our discord server for all the technical and subject related queries. Here is the link: discord.com/invite/k2H5vkH6zE
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 💕
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.
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 ?
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 ❤️
@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
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
Bro how you got 12,1,48,4
Hey, your answer is correct ;)
@@PrepInsta hey so it was mentioned in the video that top 3 commentors get free prepinsta prime. I was among one of them :)
@@udaykiran2160 sjcit?
If we are not entering the else loop only why are we updating c?
Shouldn’t it just be option 3?
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 ...
Hey, you are right!
condition in loop 1 is that b>0 when b == 0 then loop ends so ans is 12 , 1
@@PrepInstaBut how at last we are not entering the second while loop's else condition then how the c/10 is possible
@@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
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.
Yes, it is printing infinite times
c = c/10 will be outside else statement
We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon
@@PrepInsta tell it's been 7 months already
Had a good grasp on pseudo codes, all thanks to Prep Insta
We are glad we could help you!! ❤️
The clarity of your vdos are at 100% better than a phd teacher .
Thank you for your kind words 💖😍
I took the Accenture exam yesterday, where I encountered questions from quizzes on your website and videos on TH-cam. 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
what was your coding round questions ?
@@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)
@@yayayay13 second question is quite hard to explain but it was about arrays
@@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
how would you rate the entire test @@Craftedby_her
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
fuck nobody said me to round off to a lower bound. i.e 10.5 = 10
We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon 😇
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 ❤
Yayy Yayy !! 🥳💥Thank you so much for the valuable feedback. This surely motivates us 😎🤩
Great explanation thanks a lot for providing quality content
Thank you so much😊
True
Hey, thank you so much
during the last iteration we are not entering the else block so why update c /10 = 4 ?
We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon
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
Hey there💚,
Thanks a lot for Answering.
Yes, this is the correct code.
Great explanation for the preparation of assessment.
Thank you so much 😃
Hi Ritika
The explanation is very good sir and we are understanding it easily while you are explaining the code line by line😊
Thank you !!💚Keep watching ! 😍
Thanks for the great class🙂
You're very welcome!
Your explanation is great 👌
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!
Thanks you bro this video is very useful i learned new things
You're welcome bro. 😅
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 ❤
12:50 hey can you please tell why y is not updated but z is updated
the question is wrong and will result in error
Thank you so much bro.. its a great explanation ❤
Hey prasanna, You're most welcome
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.
Hey,
Your answer is correct!
It was an awesome explanation and content by prepinsta
I love to get a lot of content from you 🎉
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......!
Areh!!! Ek hi to dil hai kitni bar jitoge??
Thank you so much for such a sweet comment 😉
@@PrepInstacan I get prepinsta prime for free...
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😇
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??
I think it's an infinite loop condition because ( 54> 40) will remain true as it never goes to else statement.
@@BabaHanuman2612 me to bro it goes inf but all are said option d are true but how?
Your answer is correct
@@PrepInsta hey prepinsta as you mentioned top 3 comments will get prepinsta prime
Whether I belong to those...😀
pseudo code kisi bhi language m puchh skte h ???
c = c/10 will be outside else statement
otherwise nested while loop will run for infinit times
Hey there💚,
prepinsta.com/discord/
Kindly join our discord server, our mentors will guide you with all your queries.
Awesome video
Hi Shreya
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
We know we got pretty late in replying to your comment :(
How was your exam Harsha?
Gud.. but ' increase mic quality of prepinsta videos '
Hey, Sure we are forwarding this to our team 💚
Sir is pseudo code required for application and services associate role in Accenture?
Hey, Yes!
For more details: prepinsta.com/sasa-accenture-registration-process/
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.
yes u are right. Finally found the correct answer. Actually option D is incorrect , instead of 4 should be 48
We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon
4th option is correct for the last question (12,1,48,4)
Option 4 i.e 12,1,48,4 is the right answer
Yea
Perfect! you are right!
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.
Thanks for commenting, kindly join our discord server for all the technical and subject related queries.
Here is the link: discord.com/invite/k2H5vkH6zE
The correct ans is option 3 (12,1,4)
Answer. 4. 12, 1, 48, 4
We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon 😇
correct Answer : 12,1,48,48 NOT 4 After 48
We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon 😇
any coupon code or discount for prime?
Hey, text us at 8448440710 we will definitely help you
c = c/10 is out of the else condition then it will work
Option 4
12,1,48,4
You are definitely right!
more questions and different modles of problems to solve more videos t
12 1 48 4 final answer
Saabashh!!! your answer is correct
@@PrepInsta thank you
It would be better if you provide those ppt for revision purpose
Kindly check the video description for details.
4 question answer is 160 sir not 140
It's 140 only bro
Hey, we got pretty late with the response 🥺 How was your test?
option 4 -> 12,1,48,4
is the answer
You are right!
4th option -> 12,1,48,4
Correct!!!!
In the first question, the value of ' a' should be 110 or it should be 6
Hey! For technical related queries you can connect with us on discord prepinsta.com/discord
anyone appeared off campuus 2024 batch
I am appearing
@@tejaltatiwar4682 when is ur xam
Hey, we got pretty late with the response 🥺 How was your test?
@@PrepInsta Not good 🥲
@@tejaltatiwar4682 what abt the result?
Ans : 12,1,48,4
Your answer is right! 💖
(1)48,4
We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon
12,4,48,1
Your answer is right!!
Ans is option 2.12,4
We, the social media team is quite not confirmed about the answers but for sure our mentors will let you know soooon
Option 4 will be the correct Answer
12, 1, 48, 4
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.
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 💕
Last Question's Answer is :- 12, 1, 48, 4 .
You are right
last question ans=4
Yes, you are right!
please make pseudo codes in python
Thank you, we will surely work on it ;)
Ans is 12 1 48 and 4
Great! You are right :)
Hii I am going to attend accenture recruitment process in next month. Is the same qns will ask me? Please let me know
Kindly note that pattern of questions will be same. Reach out to us for proper preparation guidance here : instagram.com/prepinsta.offcampus/ 😊🌸
12,1,48,4 sir for last question
option 4 will be the answer
Great!!! you are right
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.
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 ?
Trying to get prepinsta prime subscription??😅
@@Anonymous-ns8ti broooo 😂
You are absolutely right!
@@PrepInsta Thank you!❤️
has accenture off campus hiring for 2024 batch started?????
please someone confirm
Yes from August
Off campus hiring have not been started yet, it'll be announced soon 💕
It would be great if you explain clearly your voice is not clear
Sure, we will forward the feedback.
Need prime for free
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 ❤️
the correct answer is 12,1,4
Hey PrepInsta!!! You guys are doing a wonderful job…Salute 🫡
Hey ! Thanks for the lovely feedback. 💚🤩
last q ans: (4) 12,1,48,4
12,1,48,4
Great! you are right :)
12,1,4,48
You are great because your answer is right! 😎
answer is 4->12 1 48 4
Hey, we got pretty late with the response 🥺 How was your test?
Answer is : 12,1,4
Thanks for answering ❤️, kindly join our discord server if you have any technical or subject related doubts : prepinsta.com/discord/