I got 7/10 same as rapid fire quiz 1 I have downloaded ur whole c programming series and At this point I reached at arrays THANKS FOR SUCH AN AMAZING SERIES ❤️
@ompandit898610 ай бұрын
00:01 Instructions to be read before starting the quiz 00:19 Rapid-fire quiz on C Programming 01:06 Declaration of function is optional in C programming 01:40 Rapid fire quiz testing knowledge on C programming 02:48 In C, parameters are always passed by value 03:25 C hi would be printed until Stack Overflow happens 04:01 Continue can only be used in loop body as per C standard 04:42 Printing 'be hmm' nine times
@mohitarora87546 жыл бұрын
Sir please provide explanation of these questions....
@jaideepsh4 жыл бұрын
(6/10)- In previous quiz, I scored 2/10. I learned a lot this time again. Thanks pal!
@govindgupta66763 жыл бұрын
Mine is 8/10 I can literally say that this is the best playlist for learning C language online you will ever found. Hats off to NESO ACADEMY
@nbk3304 жыл бұрын
5 is my score... i m near to true to 2 more questions but due to doubt it become wrong.. thanx to ur tutorial i have score this much.. will try to improve more.. great great videos.. mine type of dumb is learning language..this is amazing.. u r simply great..!!
@Zenith_ff Жыл бұрын
i scored 2 but i am happy that i am improving more and more every day thank you NESO
@rohithk60075 жыл бұрын
To be genuine my score is 10/10 its became possible because of all your previous lectures. thanks a lot for providing an in-depth insight for us.
@nishantraj97622 жыл бұрын
In q6. Why c option is wrong
@Dinesh454442 жыл бұрын
@@nishantraj9762 in C by default parameters are passed by values. if you want to pass something using reference you have to use pointers.
@nishantraj97622 жыл бұрын
@@Dinesh45444 hmm yes
@nedstark97345 жыл бұрын
4/10 :) atleast I got passed. I have to increase my reading speed, as 3-4 times time is over and I was reading option a :)
@indiancoder83015 жыл бұрын
Same here
@mauryaashish18654 жыл бұрын
Mind blowing questions... Thank you sir for quiz!
@rewakher83164 жыл бұрын
my score is 8/10 . thank you sir because of you i have improved my score a lot
@AkshayKumar-by9fd5 жыл бұрын
my score in 5. Time was not sufficient to read full question. but i have tried my best. Thanks 😍😍😍😍😍
@kedarpednekar95825 жыл бұрын
for question 4, isnt it option 4 as we can declare function without return type so compiler takes return type as int by default? {edit: as per c99, its no more allowed}
@tanaykamath14155 жыл бұрын
Same doubt
@saddamahmad23106 жыл бұрын
my score is 2 this is very interesting quiz thanks for this I learned a lot
@praveensarathy45494 жыл бұрын
well done bro we'r great
@mtarun30154 жыл бұрын
my score is 5 thanks for providing these logical questions.
@devkinandansharma75583 жыл бұрын
7/10 becoming better because of nest academy 🥰
@abhiavinash51644 жыл бұрын
good series sir, i loved it.. in 10th question, why cond i value can't be non-positive int..?? as they is no cond that i>0
@gnana634 жыл бұрын
it will come out of loop when i=0 as its false value
@ShahbazKhan-pf3oo2 жыл бұрын
@@gnana63 yes correct and that's y it comes out of the loop and didn't manage to become a non - positive int
@Vaibhavpatil02014 жыл бұрын
This is Excellent series for programming... Grand thanks to you sir...
@vishalagrahari7583 жыл бұрын
I have a doubt in question 4, by default c compiler will choose int data type as return type of the functions. So, does this makes option 3 also a correct prototype declaration ?
@amishasahu20183 жыл бұрын
yes i have also the same doubt
@shannukichatpatikhabrein78676 жыл бұрын
The complete series of this programing course was awesome.. plz add more videos on further topic soon.. its humble request. Egerly waiting for Array, Pointer and Data Structure.
@kakshihatake10 ай бұрын
5:20 can someone describe about the Q.7?
@sainadhreddysyamala99332 жыл бұрын
I scored 6 but i am exited to listen this series thank u for giving this wonderful series for free sir thank u so much sir
@nellivelker52133 жыл бұрын
my score was 7/10! And i´m so happy about that!!! thx
@shreyasgosavi96473 жыл бұрын
I need an explanation for question 7... 3:22
@user-lk4ub3tq8e3 жыл бұрын
6/10 I still have a long way to go been into programing for 3 weeks and loving the process ! thank u neso
@manojgamingff68966 жыл бұрын
Rapid fire will helps to the learners. But please provide explanation to that questions.. It will be more helpful.. Thank you sir
@oluwasakinoluwadunsin16652 жыл бұрын
I scored 6/10 , due to being in eager to complete before time elapsed…I mistook some options …but I enjoyed every piece of ur lecture ❤️❤️
@sairohithareti8236 жыл бұрын
9/10...i couldn't complete reading that break and continue question..
@riathakur39365 жыл бұрын
Me too
@nihalpandey56754 жыл бұрын
@@riathakur3936 same here ☺
@hetaeramancer3 жыл бұрын
but you could've already known the answer just from reading option b -_-
@poojithayadav87033 жыл бұрын
My score is 7 and tq for ur lecture and ur videos are making me to learn 'C' 😇😇
@darktiger86996 жыл бұрын
Please provide explanation in the ending of the video
@avisheksinha42646 жыл бұрын
1st view Thanks sir for this series ❤️
@onlyintellectuals Жыл бұрын
fun(int, int) is also valid.
@AhmedSamy-fg5zz2 жыл бұрын
7 / 10 What a great channel.
@ranjithn060511 ай бұрын
I scored 4/10 on previous quiz 1 i scored 7/10
@AshishKhetwalАй бұрын
why ans to second que is not true? we have to declare a prototype right? before using a function
@msrgamer317411 күн бұрын
Same doubt
@The_immortaL978 Жыл бұрын
Question 6. shouldn't the answer be (c) both passed by value and passed by reference? If we pass an int, it is passed by value. whereas, when we pass an array, it is passed by reference. Below is the example. Correct me if I'm wrong. #include void printArray(int a[5]); int main() { int arr[5] = {1,2,3,4,5}; printf("Before->%d ",arr[0]); changeArr(arr); printf("After->%d",arr[0]); return 0; } void changeArr(int a[5]) { a[0] = 100; }
@shikshitverma16844 жыл бұрын
7 out of 10 thankuu for quiz
@sinibs7179 Жыл бұрын
i was able to score 8/10 , your lecture helps me a lot bro , thank you so much.
@ejune987 ай бұрын
Q2 -> isn't only definition of the function optional?
@thetechguy3993 Жыл бұрын
Got only 4 but learned a lot . Should increase reading speed . Thanks a lot neso academy
@shikhargupta42802 жыл бұрын
I have score 8/10 !!
@shabornisarkar1283 Жыл бұрын
answer to Q8) This means that the main function will keep calling itself indefinitely, leading to what's known as infinite recursion. Let's break down what happens step by step: The program starts executing the main function. The printf("hi "); statement is executed, printing "hi" to the console. The main(); statement is encountered. This leads to a recursive call to the main function itself. At this point, the same sequence of steps (1-3) will repeat within the newly called main function. This will continue indefinitely, creating a chain of function calls that won't stop. Since there is no base case or condition to exit the recursion, the program will keep calling the main function, eventually leading to a stack overflow. A stack overflow occurs when the call stack, which is used to manage function calls and local variables, becomes filled with too many function calls that haven't yet completed. In this case, each call to main is adding a new frame to the call stack, and since there's no termination condition, the stack keeps growing until it can't accommodate any more function frames. This results in a crash of the program.
@ClipsandTea20.11 ай бұрын
I never new main function could call itself until now
@armanmalik427402 жыл бұрын
i score 5 but very helpful sir why you are so helpful
@SoumyaMajhi Жыл бұрын
Got 8/10, pretty satisfied with this awesome video series by Neso.
@Harshit-ju2iz Жыл бұрын
4/10, A few of them were silly mistakes because of the time pressure but still learned alot.
@fathimahida88783 жыл бұрын
6/10.. This channel helps a lot.. Thank you💞
@chandrakiranreddykovvuri47044 жыл бұрын
8/10 good knowledge based questions👍👌👌👌👌👌👌
@tehuanmelo2 жыл бұрын
7/10 - the best content ever.
@Balaji-wl9sg3 жыл бұрын
My score is 7 sir thank you sir it is all because of you i have improved a lot thank you sir
@pravinkakade88103 жыл бұрын
I got 6/10 as same as last quiz... u r just simple amezing
@bablumahato14854 жыл бұрын
many many thanks for giving us such quality content
@sowjanyavemula12143 жыл бұрын
My score is 6/10 ..tqq sir!
@ABHINAVSHARMA-r1k3 ай бұрын
Can you explain the output in last question please
@uvesh_shaikh3 жыл бұрын
5/10 marks !!! Learnt a lot..............................
@darktiger86996 жыл бұрын
7/10 is my score Thanks for the video
@shyamsatishreddy78173 жыл бұрын
My score is 6 because Neso academy lectures 😇😇😇
@castiel05044 жыл бұрын
5 / 10 , same as previous score, but i think i wasted a lot of time on reading a question, text is simply to big to read/think/answer for 10 seconds. But hey, thats how this quiz goes!
@Abhijeet5786 жыл бұрын
Tysm..it is necessary 😍
@ajay05363 жыл бұрын
My score is 9.i enjoyed it sir.
@pascalchinedu67052 жыл бұрын
Can't believe this series is 3 years old... I know I'm late but all I can say is God bless you sir.. I scored 6/10
@shriram62882 жыл бұрын
Get score 10/10 😀😀😀😀😀👍 Again thanks 👍
@visheshvaidya86252 жыл бұрын
I've scored 6/10 literally it was a good quiz .
@cryptoearner83294 жыл бұрын
I was stucked in 9th and 10th question rest of them were easy. How much you guys scored??
@dragonlordsaviour70054 жыл бұрын
7/10
@hetaeramancer3 жыл бұрын
I forgot haha
@prajapati_239 ай бұрын
I scored 8 out of 10❤
@rifatibnnezam74223 жыл бұрын
My score was only 4 but I enjoyed the quiz a lot. Request to explain the questions
@RohitSharma-nd3ec2 жыл бұрын
8 OUT OF 10 chill dude
@mohamadgamalmohamad44302 жыл бұрын
i did mistake in number 1 & 6 & 7 so i got 7 out of 10
@aymenbekri45802 жыл бұрын
6 out of 10 and im enjoing too much thnx in august 2022
@shubhamshakya47415 жыл бұрын
Got 6/10..Happy😃😃
@sanidhyasinha24163 жыл бұрын
Can you give me the explaination of Q10?
@sunilverma-ry8yn3 жыл бұрын
8 are correct.
@AlokSingh-jw8fr3 жыл бұрын
Got to learn a lot of things. My score is 7/10 but is still can't understand why in ques 6 option a is correct and why not c?
@gauravrajpurohit8822 жыл бұрын
I scored only 4 ....but I had cleared my doubt
@chandrakiranreddykovvuri47044 жыл бұрын
More interesting 🤩🤩🤩🤩🤩
@brocklesnarufcchamp14 жыл бұрын
Q 8 was bizarre and incomprehensible.
@learningisfun37914 жыл бұрын
All are correct
@nextrealm Жыл бұрын
thanks sir
@ajithkumarp40713 жыл бұрын
I was scored 9 So I am very about that
@varunpandey31723 жыл бұрын
It was fun sir 😁
@pranabroy82183 жыл бұрын
3:13 Wouldn't (A) be the answer of the question 7. Someone please explain.
@nishantraj97622 жыл бұрын
Ha bhai hmko v lga...but jaisa ki ans hai waise v run kr gya
@niladritadas19085 жыл бұрын
I scored 7 😊
@mohancena89703 жыл бұрын
5 but it's a learning ❤️
@learningisfun37914 жыл бұрын
C is a correct answer
@sakthim71605 жыл бұрын
The answer for 4th question is d, you can declare a function without specifying it's return type. If you didn't specify its take int as a default type. Don't tell a wrong answer
@bluevojka4 жыл бұрын
Since it takes its default type irrespective of the return type we want thus its not a proper way.
@jeevaalok14673 жыл бұрын
@@bluevojka yea ur r8
@KavisivaKumar-pb9pu Жыл бұрын
but this may not be true with all compilers and is definitely not a good practice to have
@akimbo-boi7 ай бұрын
omg, I got 7/10 for second rapid fire quiz-2
@deepikabehera4426 жыл бұрын
Nice questions...
@leeavi26603 жыл бұрын
i score 5/10...but i enjoy thank you ...
@thompho565711 ай бұрын
I got 5/10 but had a lot of fun.
@rahulgoel20963 жыл бұрын
my score 4!
@venkateshthirunagiri856 жыл бұрын
7 marks 💙💙
@adibahbab68593 жыл бұрын
My score is 6/10. Though I enjoyed it!
@praveenkumarreddy57883 жыл бұрын
i scored 8
@DSAbyraj17293 жыл бұрын
sir ...in 9 th question we have to edit b option
@Vishalsingh-qc5or5 жыл бұрын
sir, in q7 i have checked everytime when i pass value in fun it is giving error so option a should be correct
@Tima-ql7on4 жыл бұрын
Error is give in c++ but if you in C than there is not Error. Check Your File extension must be .c