Good that you understood the mistake and corrected them. This is a good quality to know ones own mistake. Cheers.
@CSEGURUS5 жыл бұрын
Thank you. Keep Learning.
@snehahalder38774 жыл бұрын
You are a very responsible KZbinr. Most of the content creators never put in the time and effort to correct the mistakes. Highly appreciated sir.
@CSEGURUS4 жыл бұрын
Most welcome for ur words.... Keep Learning... Watch Next 50 MCQs in C in the following link kzbin.info/www/bejne/d52ygoCKp5qtepI
@AyushSingh-wt7qz5 жыл бұрын
still check Q. 62 there is one extra parentheses in the last which will result in to "error" output
@abisekks63835 жыл бұрын
Thanks for making the effort ! . If possible, Can you please make all the correction in the previous video and upload it again
@CSEGURUS5 жыл бұрын
Thank you. Keep Learning.
@maheswarareddymule5105 жыл бұрын
Thanks for resolving our doubts again
@CSEGURUS5 жыл бұрын
Thank you. Keep Learning.
@himanshuchaurasia83344 жыл бұрын
1,3,7,15,16,18,23,25, 33,35,39,62,63, 64,65,70,71,88,97 are corrected questions. 😎
@ChandraSekhar-jm3sr4 жыл бұрын
Tq sir gave lot of confidence
@CSEGURUS4 жыл бұрын
Thank you.. Keep Learning... Please try this too... Next 50 mcqs kzbin.info/www/bejne/d52ygoCKp5qtepI
@aditipandey19955 жыл бұрын
Sir.. Can you please upload mcq questions on java
@koresiddappa38345 жыл бұрын
Super bro 💪 all questions are awesome and good level do more and more like this typical questions on c language for competitive exams
@CSEGURUS4 жыл бұрын
Thank you .. Keep learning. Go for next 50 mcqs kzbin.info/www/bejne/d52ygoCKp5qtepI
@nirajthorat40303 жыл бұрын
Amazing Content !
@Md_Danish4335 жыл бұрын
is there any one who explain Q64 because when i run, it will show 455 as output.
@aaminaminur44134 жыл бұрын
Q No. 7 is one such dangerous question. Most of us will commit mistake in first attempt for sure.
@CSEGURUS4 жыл бұрын
yes.. u r right...
@labanyasengupta92884 жыл бұрын
Thanks for corrections
@CSEGURUS4 жыл бұрын
Always welcome...You can watch this playlist for more stuff in C kzbin.info/aero/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe
@mnagesh77942 жыл бұрын
thank you sir for your effort You have helped us in best way possible. Please upload more such snippets or twisters.
@CSEGURUS2 жыл бұрын
Surely i will upload...You can watch this playlist for placement related stuff in C kzbin.info/aero/PLYT7YDstBQmEGhVqAoubBS0OE_5m4JDUe
@shanthiyasekar73174 жыл бұрын
Question no 88 is still confusing I think j should be 10 because the parentheses is the first priority (j=I+10) now j becomes 10 and it will check with and operator i &&10=0&&10 =0 but j value is 10 clear me if I. Wrong
@KamalpreetSingh-du6kc4 жыл бұрын
bro instead of int x u have to take the float then only u get the rem = 0.3 otherwise due to the int it takes only 0 and print 0
@prashantsingh89964 жыл бұрын
Great work brother.
@CSEGURUS4 жыл бұрын
Thank you.... Keep Learning... Watch Next 50 MCQs in C in the following link kzbin.info/www/bejne/d52ygoCKp5qtepI
@sarveshshinde15973 жыл бұрын
In qu. 25..... .there is a semicolon after for loop.....so loop will never be executed or it does not hv any statement and hence """hello""" will be printed as it is through printf
@CSEGURUS3 жыл бұрын
Please watch this video for review. kzbin.info/www/bejne/m4CYfp6CpsycqNE
@soumyapanigrahi82772 жыл бұрын
Hello, i had a doubt, that for a struct stud with char and int, what is the size of the struct?? Please help me
@CSEGURUS2 жыл бұрын
The answer is 8. Struct will take multiples of next multiple of largest byte data type.Here Int-4 char -1. total=5. so next multiple of 4 after 5 is 8.
@kritikatyagi61075 жыл бұрын
Sir question no.88 () have higher priority so 1st () excute .Then we excute according to the && concept.
@CSEGURUS5 жыл бұрын
Watch this video for clarity.. kzbin.info/www/bejne/m4CYfp6CpsycqNE
@nandinireddy47883 жыл бұрын
Sir can u please upload mcqs on java
@CSEGURUS3 жыл бұрын
MCQs in Data structures will be uploaded soon.
@nandinireddy47883 жыл бұрын
Thank u sir
@ChandraSekhar-jm3sr4 жыл бұрын
Sir after watching this very clearly and learning concept, Now is it simple to crack interviews??, and technical exams??
@CSEGURUS4 жыл бұрын
Yes ofcorse..
@tushitagarwal40934 жыл бұрын
Sir make it for java plzzz 🙏🙏
@durgaveninaru52654 жыл бұрын
For qstn 33 ,if we replace %d with %f will that give 0.3 .Because 0.3 is float value
@CSEGURUS4 жыл бұрын
No. it won't. 4.3%2 itself gives syntax error.
@b.sainathreddy45674 жыл бұрын
Sir in q.3 if i give a=0 Then the value of not(a) is how much weather it is greater than 400 or not
@jginger96354 жыл бұрын
I think for 0, the opposite value is 1 as it is boolean logic. so !a for a=0 ==> !(0) = 1 now if condition.. if(!a>=400) will still be False. as if(1>=400) is if(0) or if(False).
@dr.anubhavkumarprasad57654 жыл бұрын
Please give proper reason for q.25 How i gets value 5
@CSEGURUS4 жыл бұрын
i=0 gets decremented like -1,-2,-3..........-2^31(min value in integer). Now the decremented value taken by compiler is +2^31-1(Max value in integer). Now its get decremented 2^31-2, 2^31-3........2^5..2^4(16)...15...14..13..... 7.. 6.. then 5.
@dr.anubhavkumarprasad57654 жыл бұрын
@@CSEGURUS after attaining minimum negative integer value(-2^31) will it becomes 0. Just like a clock attaining 1 after 12.
@BarkaDog3 жыл бұрын
@@dr.anubhavkumarprasad5765 lol no. It becomes the max value of int not 0.
@sarveshshinde15973 жыл бұрын
there is a semicolon after for loop.....so loop will never be executed or it does not hv any statement and hence """hello""" will be printed as it is through printf
@krishkhemani963 жыл бұрын
@@BarkaDog So if no condition is given properly it will end at the highest value of i??
@priyankpatel66444 жыл бұрын
question no 97 ..i vlaue after being 16 gets incremented to 17 & then default is used 17+4 =21
@CSEGURUS4 жыл бұрын
yes
@CSEGURUS4 жыл бұрын
Please try this too... Next 50 mcqs kzbin.info/www/bejne/d52ygoCKp5qtepI
@vijayanandv8094 жыл бұрын
In 97th question there is value as 5 but you didn't go by case 5 .You went case 1 .how is it?
@CSEGURUS4 жыл бұрын
there is no break in case 0. thats why i+=2 will be executed immediately...
@CSEGURUS5 жыл бұрын
Watch Next 50 MCQs in C in the following link kzbin.info/www/bejne/d52ygoCKp5qtepI