Sir after going through all the mcq, I got placed in accenture and even I cracked L&T,Cognizant exams...thanq so much sir....now please make videos on data structure,Algorithm designing and most important 100 java problems asked in technical interview...sir thanq again and please upload videos on topics I suggested....
@shivammishra bro i have accenture exam on 21st please tell me about pattern and on which platform they are conducting and in Technical mcqs they are on C or any other languages please help me bro im a 2018 passout these is the last chance i have please thanks in advance
I am extremely thankful to the one who explains these 100 questions of series with such clarity of conception!! Thankyou so much sir ❤️ *Feeling high for C concepts now*
No he said wrongly , for that que no.61 actually "and" operation checks first condition if it is false then it will terminate It will not check the other condition Any way b value cannot be changed.... If you are clear please ....respond Thank you... But he is a nice teacher he solves and clear me more problems
Sir, Today finallly I completed all these MCQ. And as a new learner I also felt confident after understanding these. I would like to see more such series Keep the work going sir. Also I have encountered certain doubts in these videos...I will ask them after seeing your corrections video Overall thank you so much sir🙏🙏🙏
Thank u Keep Learning.. You can watch "Tricky 150 mcqs in C" in the following link www.udemy.com/course/best-150-mcqs-in-c/?referralCode=5CEC441877BDC511B57C
@@CSEGURUS Yes sir I m completing them too. I hv completed it around one hr n also liked Ur video. I will like to see your videos regarding more on c and also on datastructure and algorithms.
Thankyou so much sir , for making this C MCQ's video. You also focused of those minute basic rules which most of us neglect often or even didn't knew about. This was really helpful.
Thank you so much sir for this video. This has really helping me to learn the c programming in a best way. The amount of hard work you did for this video is really uncountable. Thanks once again sir.
Sir this video really boosted my confidence in understanding code snippets, teachers like you are really a boon for society and i am really thankful to you now going to ur extra questions :)
question no.97 is wrongly explained.... actually after 16 it will increase 17, now 17 goes in switch and by default 4 is added to it so i becomes 21. now 21 is printed and since i is greater than 20 so it won't go in the loop again. thus, only 16 21 is printed.
#notes_for_my_own👩🏻💻🤭 24 - a bit confusing for me!! (37:41) 39 - I was expecting that post increment done after comparison (1:00:52) 49,72- wow!! New concept for me (1:16:27) (1:56:00) 63- associative rule for unary (R to L) (1:43:57), 68- (1:52:37)🤦🏻♀️ 83-scanf takes value by counting no. Of %d😲 (2:13:36)
this is my first video which made me to programm effectively in my entire learning period. superbbbb sir thank you for making this kind of productive videos.
Q24 it is making comparison between a float and double value and double value has higher precision than a float value. And due to implicit conversion of float to double the 4 byte float will be converted to 8 byte double value, thus replacing the lower 4 byte with zeroes. Hence your said behaviour is observed.
In ques 86 you told that when we are using logical operator the value of post increment variable will not change so how will the value of z is incremented to 6?
Yar ye UA-cam walo ka hi yahi problem hai Reply hi nahi karte Jab reply nahi karte to videos kyo banate hai bachhho Ko padesan karne ke liye Poche questions me assignment value increase Kara par print nahi Kara Aba 86 me increase print sono Kara rahe hai
@@CSEGURUS i listen to the video again at 1:39:38 you clearly said that "remember this point it will consider the value 3 but here it will not be assign in the memory location. The value will not be changed if u consider this logical operators " that's all u explained clearly.
@@CSEGURUS exactly you have said if it is 1 then only the value is going to remain same else if it is 0 then its value is going to change according to the increment/decrement
Hello sir great fan of yours, right from you started this channel, A student from your college recommended me to watch this video for TCS prep, can you provide soft copy of slides you used for this video
Really I don't have any words to appreciate you sir simply 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏 What an explanation sir it helps alot to me.....do more videos on different streams of topics like IoT etc
Sir, In Q No. 97 answer is correct i.e 16 21, but the explanation of execution of loop block is different. i.e after print 16 i will be 17 and the default case will be executed.
Sir ... This was really helpful. Im very thrilled by solving these all and most imptly your explanation is great ! Understood every point without the help of googling in the middle 😊
*x returns value where x returns address i.e x=&x[0] in our Question . so *x='h' , the size is required is 1 byte. and regarding sizeof(x), even it returns the address, it counts 1 byte for each character in string including NULL character. Anyway I appreciate your doubt.
Sir, in question.100 , how could strlen(p) be 8 because in strlen() function , it doesnot count the 'null symbol' which is at the end of the string array. strlen(p) must be 7. Plz reply if its right or wrong
Thank u soooooooo much sir Great video.. One watch of ur video will teach any one C language perfectly . Very helpful for any examination. Please do this type of video on C++ & python also 🙏🙏🙏🙏🙏🙏🙏🙏
Thank you very much sir for posting this video.Proper guidance is required in programming and analysis of errors is also a key issue.Thanks for letting us know the solution of these tricky questions which will come handy for competitive programming challenges.Keep on posting many more interesting videos like this,Sir.
Thank You sir, I wish you achieve lot of success in your life, and all your wishes comes true. In Vedas it is written that Guru hi bhagwan hai It is 💯 true.
sir @1:15:13 in structures char allocates 4 bytes if there are 5 char elements in sequence then size of that structure is 4(first 4 takes from first char)+4(last)=8 sir and now modern compliers allocates 4 bytes for int. I excuteded this code in my local complier and it shows as 44.
In Q 39 first condition (x > 12) will be checked and then in the next line value of x will be incremented. But you said x will be incremented first followed by condition check which is WRONG...
Q-97 Your answer is true...but your explanation is totally wrong. When it will print 16 ,after that it will be incremented by i++ i.e. i=17 now. Again it will check condition (if i
You are most welcome..All the best for your career... You can watch this playlist for more stuff in C ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
Very nice teaching sir In que no.63 It's post increment sir , so it is from left to right But you mention it as postdecrement but you try to say this as preincrement at 1:43:15 right to left ..... How is it possible sir please! Explain Output should be 3 3 know sir?....
for q.36 A continue statement is used to end the current loop iteration and return control to the loop statement. continue skips the current executing loop and MOVES TO the next iteration of the loop whereas break MOVES OUT of the loop and executes the next statement after the loop.
whenever the question is given, first pause the video and answer it by own. Most of the time I get wrong answers that's why this video is very good for tricky problems. Solve it and improve it. :) :)
printf("can anybody tellme a better place where i can find a better person with more mcqs?") ans : no cos this is the best place i gained a lot of knowledge from youtube so far. Sir u deserve Million views over this.
Great thanks to u for your comment.. I am very glad it was helpful..You can watch this playlist for more stuff in C ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
Question no. 29:- Answer should be garbage value. I have tested it by running the C code. Question no. 48:- Answer should be 22 bytes (considering int size as 2 bytes and char as 1 byte) because of compiler optimization. Size of struct will be 21 bytes only when we explicitly tell compiler not to do optimization using __attribute__((packed))
Sir after going through all the mcq, I got placed in accenture and even I cracked L&T,Cognizant exams...thanq so much sir....now please make videos on data structure,Algorithm designing and most important 100 java problems asked in technical interview...sir thanq again and please upload videos on topics I suggested....
@shivammishra
bro i have accenture exam on 21st please tell me about pattern and on which platform they are conducting and in Technical mcqs they are on C or any other languages please help me bro im a 2018 passout these is the last chance i have please thanks in advance
What % do you have till 6th sem?
@@EthHack_Cop bro elitmus and amcat are not same but Accenture are conducting on elitmus on 21st
@@himanisoni5791 71
@@vasuummidi3374 pattern will be same only
sir, please add these types of video in c++.Your way of explanation is nice.
I am really happy to see my professor making his presence felt on youtube and sharing your knowledge. That's a great work sir. Thankyou.
Thank you Sruthi. Keep Learning.👍
Q97, it prints 21 not because of for loop. It goes to default switch case and increments i=17+4 which is 21.
Yes. Exactly.
Watch this video for clarity..
ua-cam.com/video/eO5MkLqgiro/v-deo.html
Yah I was thinking the same
I am extremely thankful to the one who explains these 100 questions of series with such clarity of conception!!
Thankyou so much sir ❤️
*Feeling high for C concepts now*
Most welcome..You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
in 2:36:08 when i value is 16 why default case is not executed .. please solve my doubt plzzz
1st day till 21:50
23:30 :question 15
24:51 :question16
27:00 :question18
27:53 :question19
28:30 :question 20
29:32 :question 21
30:43 :question 22(doubt)
32:50 :question 23
38:00 : question 25(doubt)
2nd phase
44:27 :question 27
44:56 :question 28
45:29:question 29
49:04 :question 32
53:10: question 33
54:08 :question 34
56:46 :question 36
Very helpful at the time of interviews... Evn for clearing the concepts.. No one explain like this. Thank you so much sir. It really helps me a lot...
I am generally never do any comment..but your video is superb i can't stop myself to do commemt..superb work done by you.. Thank you sir
Thank you. Keep Learning.
best video for IT competitive c programming exam..... thankyou sir for ur efforts....
Thank you. Keep Learning.
as you told values in logical operations doesn't changes 1:41:25 but in q86 2:19:20 you changed the value of z
No he said wrongly , for that que no.61 actually "and" operation checks first condition if it is false then it will terminate
It will not check the other condition
Any way b value cannot be changed....
If you are clear please ....respond
Thank you...
But he is a nice teacher he solves and clear me more problems
Sir,
Today finallly I completed all these MCQ.
And as a new learner I also felt confident after understanding these.
I would like to see more such series
Keep the work going sir.
Also I have encountered certain doubts in these videos...I will ask them after seeing your corrections video
Overall thank you so much sir🙏🙏🙏
Thank u Keep Learning..
You can watch "Tricky 150 mcqs in C" in the following link
www.udemy.com/course/best-150-mcqs-in-c/?referralCode=5CEC441877BDC511B57C
@@CSEGURUS
Yes sir I m completing them too.
I hv completed it around one hr n also liked Ur video.
I will like to see your videos regarding more on c and also on datastructure and algorithms.
You mention of a correction video. I couldn't find it. Could you help me with the link?
@@snehahalder3877
Sure dear,
Here you go....
ua-cam.com/video/eO5MkLqgiro/v-deo.html
Make all of it....
Have a nice day...and smile thoroughly..tc
@@pragyagupta7736 Thank you 😄
Thankyou so much sir , for making this C MCQ's video. You also focused of those minute basic rules which most of us neglect often or even didn't knew about. This was really helpful.
Thank you. Keep Learning.
hiii neha
sir, plz make a video on data structures mcq's sirr which are helpful for placements xams...
At 1:43:19 it is Post increment sir , associativity is from Left to Right.
Thank you so much sir for this video. This has really helping me to learn the c programming in a best way. The amount of hard work you did for this video is really uncountable. Thanks once again sir.
You are most most welcome.....Thank u…You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
A
Sir this video really boosted my confidence in understanding code snippets, teachers like you are really a boon for society and i am really thankful to you now going to ur extra questions :)
Glad to hear that...You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
question no.97 is wrongly explained.... actually after 16 it will increase 17, now 17 goes in switch and by default 4 is added to it so i becomes 21. now 21 is printed and since i is greater than 20 so it won't go in the loop again. thus, only 16 21 is printed.
Yes. It will execute default and it increments 17 by 4 becomes 21. and the o/p of the program is 16 and 21.
Yeah I had that doubt
u r right bro
Watch this video for clarity..
ua-cam.com/video/eO5MkLqgiro/v-deo.html
8
#notes_for_my_own👩🏻💻🤭
24 - a bit confusing for me!! (37:41)
39 - I was expecting that post increment done after comparison (1:00:52)
49,72- wow!! New concept for me (1:16:27) (1:56:00)
63- associative rule for unary (R to L) (1:43:57), 68- (1:52:37)🤦🏻♀️
83-scanf takes value by counting no. Of %d😲 (2:13:36)
Great Learning and Keep Learning...
You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
loved this series....
watched it whole and learnt a lot of new and good things 👍👍...
Glad to hear that...Keep Learning..You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
2:36:54 16,20 hoga because loop me i
In que 15 sizeof(p) is architecture dependent.
4th phase
Question 51 : 1:18:00
Question 55 : 1:24:06
Question 56 : 1:25:21
Question 57 : 1:30:00
5th phase
Question 59: 1:35:43
Question 60: 1:37:00
Question 61: 1:38:30
Question 62 : 1:42:30
Question 66 : 1:47:30(doubt)
Question 67 : 1:49:50
Plz provide some pointer concept alone 100 question
😂😂
this is my first video which made me to programm effectively in my entire learning period. superbbbb sir thank you for making this kind of productive videos.
Thank you. Keep Learning.
Sir best questions on C i have been ever found... It cleared all concepts of C programming... Respect to your hardwork Sir... Once again thank you🤗🤗🤗
Thank u.. Keep Learning.
thanq so much such...now please make video on Data Structure and Algorithm design
Thank you. Keep Learning.
Yes plz...
Sir in question 3, ! operation only executes first, becoz it has higher priority than >=, however answer is same, b=100 and c=200
Yes.. Watch this video for clarity..
ua-cam.com/video/eO5MkLqgiro/v-deo.html
Q24 it is making comparison between a float and double value and double value has higher precision than a float value. And due to implicit conversion of float to double the 4 byte float will be converted to 8 byte double value, thus replacing the lower 4 byte with zeroes. Hence your said behaviour is observed.
In ques 86 you told that when we are using logical operator the value of post increment variable will not change so how will the value of z is incremented to 6?
Yar ye UA-cam walo ka hi yahi problem hai
Reply hi nahi karte
Jab reply nahi karte to videos kyo banate hai bachhho Ko padesan karne ke liye
Poche questions me assignment value increase Kara par print nahi Kara
Aba 86 me increase print sono Kara rahe hai
Yeah!! I've got the same doubt
There are the rules for && and ||. Please listen to the video again. I explained clearly.
@@CSEGURUS i listen to the video again at 1:39:38 you clearly said that "remember this point it will consider the value 3 but here it will not be assign in the memory location. The value will not be changed if u consider this logical operators " that's all u explained clearly.
@@CSEGURUS exactly you have said if it is 1 then only the value is going to remain same else if it is 0 then its value is going to change according to the increment/decrement
I am from Bangladesh and this 3-hour video is a gem
Thank you.. Keep Learning...
Go for next 50 mcqs
ua-cam.com/video/AlOQMTr5zD0/v-deo.html
Hello sir great fan of yours, right from you started this channel, A student from your college recommended me to watch this video for TCS prep, can you provide soft copy of slides you used for this video
Thank you sir it really helped me crack todays Capgemini drive. Keep us updated with latest questions 👍
I will try my best...
You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
Sir can u upload pseudocodes for capgemini placements ??
Did you make it?
in 2:36:08 when i value is 16 why default case is not executed .. please solve my doubt plzzz
Really I don't have any words to appreciate you sir simply 🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏🙏
What an explanation sir it helps alot to me.....do more videos on different streams of topics like IoT etc
Thank you. Keep Learning.
Sir plz give about java mcq questions n answers..
ua-cam.com/video/BZ1bNGKdWVc/v-deo.html
These are literally the best C questions. Thank you so much sir.
Most welcome...Thank u…You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
These are some very good questions in C programming. Thank you for creating this video. Do you have a similar video for C++ programming?
Thank you. Keep Learning.
Right now i am preparing for c++.
3rd phase
Question 37 : 57:47
Question 39 : 59:58
Question 40 : 1:01:10
Question 42: 1:03:20
Question 41 : 1:06:37(doubt)
Question 43: 1:08:16
Question 46: 1:11:30
Awesome Video Sir.....Thanks For Such Great Video.
Can You Provide PDF Of All Questions With Output ?
♥️♥️♥️♥️♥️
Thank you. Keep Learning.
You are great sir.I thanking you from the bottom of my heart.If people get a teacher like you everyone can code and get placed. Thank God
Thank u.. Keep Learning...
Watch Next 50 MCQs in C in the following link
ua-cam.com/video/AlOQMTr5zD0/v-deo.html
Sir, In Q No. 97 answer is correct i.e 16 21, but the explanation of execution of loop block is different.
i.e after print 16 i will be 17 and the default case will be executed.
Yes. Exactly.
Correct
Watch this video for clarity..
ua-cam.com/video/eO5MkLqgiro/v-deo.html
Thanks, 🙏 it helps me a lot for clearing c++/c MCQ round of companies
Thank you. Keep Learning.
Sir, if you share this all questions in pdf format we will take printout. It will be very helpful for us. Can you sir?
Right I also need
Me too sir
Every channel is hungry for views
Yes sir i too want
Yes
Sir ... This was really helpful. Im very thrilled by solving these all and most imptly your explanation is great ! Understood every point without the help of googling in the middle 😊
You are most welcome...
You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
In Q.35 , the answer will be D. None of the above for "Break" statement
B. Quit the current iteration is for "Continue" statement
Yes
Watch this video for clarity..
ua-cam.com/video/eO5MkLqgiro/v-deo.html
Thank you so much sirr... because of this video I got placed in HCL,CTS companies...good work sir....thank u so much sirr
Thank you. Keep Learning.
Sir thanks for the lectures. Sir can you provide me the questions pdf ? It will be helpful for my preparation.Thanks
Thank you. Keep Learning.
explanations are meaningful rather than just answering, very fruitful material is provided by you
Thank you
Thank you. Keep Learning.
thank you so much, sir, good explanation all the best for further videos.sir can u provide me pdf.i will pay for that
Yah me also want that..
i have material of what they ask in technical questions of 118 pages pdf and coding round questions using command line argumenst
@@sandeepsandy9456 can u plz send me that sir.....
@@sanbaysrina6822 I too want that can u pllzz send me
Explained in best way, very helpful. Please upload more videos like this
Thank you. Keep Learning.
In question no. 60 the size of pointer x must be 2 bcoz pointer carries address, not a character.
Ply reply if I'm wrong
*x returns value where x returns address i.e x=&x[0] in our Question . so *x='h' , the size is required is 1 byte.
and regarding sizeof(x), even it returns the address, it counts 1 byte for each character in string including NULL character.
Anyway I appreciate your doubt.
30:16-> structure will take 8bytes...processor will take as word which is 4bytes
You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
Sir, in question.100 , how could strlen(p) be 8 because in strlen() function , it doesnot count the 'null symbol' which is at the end of the string array. strlen(p) must be 7. Plz reply if its right or wrong
For first iteration j is length of str (It is the index of last null char).
Nhhere iebebebeneeeebbeebebriru birbirbibrbirbibrbirbinrinrinrnrniornrnenenenenenenru norunreibeib ri bi
Ibibe eb ebebeb b beb
Bravo sir! Your teaching skills are superb.
Thank you. Keep Learning.
Excellent work done sir! The video is extremely useful. Please continue uploading such videos.
Thank you. Keep Learning.
Definitely sir
2:02:05 sir binary of -6 is wrong i guess it should be 110 ??
you consider as 1010
please explain sir
Because of your content i was able to qualify 1st round of JOSH TECHNOLOGY
Glad to hear that and Congratulations.
You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
@@CSEGURUS Sir it will very help full if you will upload top 100 question like this on OOPS.
great vdo must watch... crystal clear explanation
Glad you liked it.. Thank you..
Watch “Operators in C - Tips and Tricks” in the following link
ua-cam.com/video/tmFkBx362yw/v-deo.html
In question : 49
If we will give ::
printf(-2+"goodbye");
what will be the output.
if u write the above statement,It will not print anything as it takes null character before the character 'g'
Goodb
garbage value, including null
excellent video sir. you have done this with so much patience and clarity.
Thank u. .....Keep Learning...
Watch Next 50 MCQs in C in the following link
ua-cam.com/video/AlOQMTr5zD0/v-deo.html
Sir in question 88 higher priority is brackets so first performs that then j=10.. please explain
Watch this video for clarity..
ua-cam.com/video/eO5MkLqgiro/v-deo.html
Thank u soooooooo much sir
Great video..
One watch of ur video will teach any one C language perfectly .
Very helpful for any examination.
Please do this type of video on C++ & python also 🙏🙏🙏🙏🙏🙏🙏🙏
Thank you. Keep Learning.
I am working on C++ for this type of MCQ's to upload.
It's really helpful
Thank you. Keep Learning.
Thank you very much sir for posting this video.Proper guidance is required in programming and analysis of errors is also a key issue.Thanks for letting us know the solution of these tricky questions which will come handy for competitive programming challenges.Keep on posting many more interesting videos like this,Sir.
Thank you .. . Yes.. I will work more on this type of questions.... Keep Learning.
Q-62 will be error
Because u have included extra bracket at the last.
Thank You sir, I wish you achieve lot of success in your life, and all your wishes comes true.
In Vedas it is written that Guru hi bhagwan hai
It is 💯 true.
So nice of you...You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
@@CSEGURUS Thank you sir 😊
You should provide its pdf bro..!
1:42:50 In question number 62, in line 2,there is an extra bracket
Please watch this video for review. ua-cam.com/video/eO5MkLqgiro/v-deo.html
Plz upload more question like gate c question
Sir ,
Questions No 48 .
Struct size is 44 after compiler....?
One of best video for common Placement Exam....👌👌👌
I request you to make a similar series on java
Thankyou sir ....it helped me alot to brush up my c concepts..❣
Thank you. Keep Learning.
Sir, que no 48 can we get a memory without variable declaration in structure
No
I have no words to say it's just phenomenal 🙏🙏🙏🙏thank you so much sir.
So nice of you..Most welcome.... Keep Learning... Watch Next 50 MCQs in C in the following link ua-cam.com/video/AlOQMTr5zD0/v-deo.html
Pls provide PDF all questions
very informative video,i am a beginner in C and done with 50 mcqs in one go,subscribed the channel, make more mcqs
thank you sir
You are most welcom..You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
Sir plz 200 mcq question
You are the guru of computer science
Very happy to hear...Pls Watch Top 90 Data Structures MCQs in the following link...
ua-cam.com/video/i2LTAJhkFf8/v-deo.html
Q.No 57 *p-- here we are decrementing the location.
--*p here we are decrementing the value.
I really can't understand
*p-- means minus minus the location no maybe
Just guessing
check associativity , its from right to left
*p means it's storing the address of another variable..... So u can't change the address by increment or decriment
sir @1:15:13 in structures char allocates 4 bytes if there are 5 char elements in sequence then size of that structure is 4(first 4 takes from first char)+4(last)=8 sir and now modern compliers allocates 4 bytes for int. I excuteded this code in my local complier and it shows as 44.
Watch this video for clarity..
ua-cam.com/video/eO5MkLqgiro/v-deo.html
Plss provide java questions also
The best mcq for c in utube thanq so much sir. I learn a lot from you thanq. Please go for 200 mcq please sir.
Thank you. Keep Learning.
In Q 39 first condition (x > 12) will be checked and then in the next line value of x will be incremented.
But you said x will be incremented first followed by condition check which is WRONG...
Same doubt
Final value of x should be 13
Yes,11>12 is checked n then only 'x' is incremented to 12
Very best teaching, solve all programs problems, thank you so much sir..
Thank you. Keep Learning.
Q-97
Your answer is true...but your explanation is totally wrong.
When it will print 16 ,after that it will be incremented by i++ i.e. i=17 now.
Again it will check condition (if i
Watch this video for clarity..
ua-cam.com/video/eO5MkLqgiro/v-deo.html
sir thank you so much ... i rejected many companies for this lack of info .... thankyou so much sir.
You are most welcome..All the best for your career...
You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
Excellent 👌 this video provided perfect basics of C language for solving MCQ Questions
Glad to hear that.. Keep Learning
Watch Next 50 MCQs in C in the following link
ua-cam.com/video/AlOQMTr5zD0/v-deo.html
1:40:00 , when first statement becomes false, then in && case, second won't run , that's why b is not incremented.
Yea.. u r right...
Very nice teaching sir
In que no.63
It's post increment sir , so it is from left to right
But you mention it as postdecrement but you try to say this as preincrement at 1:43:15 right to left ..... How is it possible sir please! Explain
Output should be 3 3 know sir?....
Watch this video for clarity
ua-cam.com/video/eO5MkLqgiro/v-deo.html
You're right
nice teaching to get a overview of mcq......tq soo much
Thank u..You are most welcome..
You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
for q.36 A continue statement is used to end the current loop iteration and return control to the loop statement. continue skips the current executing loop and MOVES TO the next iteration of the loop whereas break MOVES OUT of the loop and executes the next statement after the loop.
Please watch this video for review. ua-cam.com/video/eO5MkLqgiro/v-deo.html
@@CSEGURUS thanks man!
U cleared me ,many doubts, superb explanation, thank you so much sir.........,
You are most welcome....You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
whenever the question is given, first pause the video and answer it by own. Most of the time I get wrong answers that's why this video is very good for tricky problems. Solve it and improve it. :) :)
Thank you. Keep Learning.
Superb sir excellent teaching of all this basics thank you so much it will helpful very well👌
Thank you. Keep Learning. and Suggest me the topics that you require.
Amazing series of questions ...
learnt a lot ❤️❤️👍👍👍...
THANKYOU
My pleasure 😊...
printf("can anybody tellme a better place where i can find a better person with more mcqs?")
ans : no cos this is the best place i gained a lot of knowledge from youtube so far.
Sir u deserve Million views over this.
Great thanks to u for your comment.. I am very glad it was helpful..You can watch this playlist for more stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
Thank u great explanation
You are welcome!.....Thank u…You can watch this playlist for placement related stuff in C
ua-cam.com/play/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe.html
Question no. 29:-
Answer should be garbage value. I have tested it by running the C code.
Question no. 48:-
Answer should be 22 bytes (considering int size as 2 bytes and char as 1 byte) because of compiler optimization. Size of struct will be 21 bytes only when we explicitly tell compiler not to do optimization using __attribute__((packed))
Please watch this video for review. ua-cam.com/video/eO5MkLqgiro/v-deo.html
Thank you sir!!! This video made me confident in c concepts
Thank you. Keep Learning.
best best...superb video to clear all the basic concepts in the language all at once
Thank you. Keep Learning.