C Programming (Rapid Fire Quiz-2)

แชร์
ฝัง
  • เผยแพร่เมื่อ 16 ธ.ค. 2024

ความคิดเห็น • 433

  • @sagarsahu6959
    @sagarsahu6959 4 ปีที่แล้ว +69

    I scored only 4 but enjoyed lot ❤️

  • @ompandit8986
    @ompandit8986 9 หลายเดือนก่อน +1

    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

  • @mohitarora8754
    @mohitarora8754 5 ปีที่แล้ว +38

    Sir please provide explanation of these questions....

  • @jaideepsh
    @jaideepsh 4 ปีที่แล้ว +13

    (6/10)- In previous quiz, I scored 2/10. I learned a lot this time again. Thanks pal!

  • @govindgupta6676
    @govindgupta6676 2 ปีที่แล้ว +6

    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

  • @roshanmhatre8810
    @roshanmhatre8810 4 ปีที่แล้ว +22

    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 ❤️

  • @Zenith_ff
    @Zenith_ff ปีที่แล้ว +3

    i scored 2 but i am happy that i am improving more and more every day thank you NESO

  • @mauryaashish1865
    @mauryaashish1865 3 ปีที่แล้ว +4

    Mind blowing questions...
    Thank you sir for quiz!

  • @nbk330
    @nbk330 4 ปีที่แล้ว +3

    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..!!

  • @nedstark9734
    @nedstark9734 5 ปีที่แล้ว +14

    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 :)

  • @saddamahmad2310
    @saddamahmad2310 5 ปีที่แล้ว +25

    my score is 2 this is very interesting quiz thanks for this I learned a lot

  • @rewakher8316
    @rewakher8316 4 ปีที่แล้ว +13

    my score is 8/10 .
    thank you sir
    because of you i have improved my score a lot

  • @rohithk6007
    @rohithk6007 5 ปีที่แล้ว +12

    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.

    • @nishantraj9762
      @nishantraj9762 2 ปีที่แล้ว

      In q6. Why c option is wrong

    • @Dinesh45444
      @Dinesh45444 2 ปีที่แล้ว +1

      @@nishantraj9762 in C by default parameters are passed by values. if you want to pass something using reference you have to use pointers.

    • @nishantraj9762
      @nishantraj9762 2 ปีที่แล้ว +1

      @@Dinesh45444 hmm yes

  • @ranjithn0605
    @ranjithn0605 10 หลายเดือนก่อน +1

    I scored 4/10 on previous quiz 1 i scored 7/10

  • @Vaibhavpatil0201
    @Vaibhavpatil0201 4 ปีที่แล้ว +1

    This is Excellent series for programming...
    Grand thanks to you sir...

  • @AkshayKumar-by9fd
    @AkshayKumar-by9fd 5 ปีที่แล้ว +4

    my score in 5. Time was not sufficient to read full question. but i have tried my best. Thanks 😍😍😍😍😍

  • @mtarun3015
    @mtarun3015 4 ปีที่แล้ว +2

    my score is 5
    thanks for providing these logical questions.

  • @devkinandansharma7558
    @devkinandansharma7558 3 ปีที่แล้ว +3

    7/10 becoming better because of nest academy
    🥰

  • @sainadhreddysyamala9933
    @sainadhreddysyamala9933 2 ปีที่แล้ว +1

    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

  • @sairohithareti823
    @sairohithareti823 5 ปีที่แล้ว +7

    9/10...i couldn't complete reading that break and continue question..

    • @riathakur3936
      @riathakur3936 5 ปีที่แล้ว

      Me too

    • @nihalpandey5675
      @nihalpandey5675 4 ปีที่แล้ว

      @@riathakur3936 same here ☺

    • @hetaeramancer
      @hetaeramancer 3 ปีที่แล้ว

      but you could've already known the answer just from reading option b -_-

  • @shabornisarkar1283
    @shabornisarkar1283 ปีที่แล้ว +1

    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.
      @ClipsandTea20. 10 หลายเดือนก่อน

      I never new main function could call itself until now

  • @onlyintellectuals
    @onlyintellectuals ปีที่แล้ว

    fun(int, int) is also valid.

  • @darktiger8699
    @darktiger8699 5 ปีที่แล้ว +4

    Please provide explanation in the ending of the video

  • @kedarpednekar9582
    @kedarpednekar9582 5 ปีที่แล้ว +12

    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}

  • @pascalchinedu6705
    @pascalchinedu6705 2 ปีที่แล้ว +3

    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

  • @nellivelker5213
    @nellivelker5213 3 ปีที่แล้ว +1

    my score was 7/10! And i´m so happy about that!!! thx

  • @kakshihatake
    @kakshihatake 9 หลายเดือนก่อน +1

    5:20 can someone describe about the Q.7?

  • @manojgamingff6896
    @manojgamingff6896 5 ปีที่แล้ว +2

    Rapid fire will helps to the learners. But please provide explanation to that questions.. It will be more helpful.. Thank you sir

  • @shikshitverma1684
    @shikshitverma1684 4 ปีที่แล้ว +1

    7 out of 10 thankuu for quiz

  • @shikhargupta4280
    @shikhargupta4280 2 ปีที่แล้ว +1

    I have score 8/10 !!

  • @abhiavinash5164
    @abhiavinash5164 4 ปีที่แล้ว +3

    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

    • @gnana63
      @gnana63 4 ปีที่แล้ว +1

      it will come out of loop when i=0 as its false value

    • @ShahbazKhan-pf3oo
      @ShahbazKhan-pf3oo 2 ปีที่แล้ว

      @@gnana63 yes correct and that's y it comes out of the loop and didn't manage to become a non - positive int

  • @user-lk4ub3tq8e
    @user-lk4ub3tq8e 3 ปีที่แล้ว

    6/10 I still have a long way to go
    been into programing for 3 weeks and loving the process !
    thank u neso

  • @shreyasgosavi9647
    @shreyasgosavi9647 3 ปีที่แล้ว +1

    I need an explanation for question 7... 3:22

  • @sunilverma-ry8yn
    @sunilverma-ry8yn 3 ปีที่แล้ว

    8 are correct.

  • @shannukichatpatikhabrein7867
    @shannukichatpatikhabrein7867 5 ปีที่แล้ว +1

    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.

  • @AhmedSamy-fg5zz
    @AhmedSamy-fg5zz ปีที่แล้ว

    7 / 10 What a great channel.

  • @Harshit-ju2iz
    @Harshit-ju2iz ปีที่แล้ว

    4/10, A few of them were silly mistakes because of the time pressure but still learned alot.

  • @brocklesnarufcchamp1
    @brocklesnarufcchamp1 3 ปีที่แล้ว

    Q 8 was bizarre and incomprehensible.

  • @poojithayadav8703
    @poojithayadav8703 3 ปีที่แล้ว

    My score is 7 and tq for ur lecture and ur videos are making me to learn 'C' 😇😇

  • @thetechguy3993
    @thetechguy3993 ปีที่แล้ว

    Got only 4 but learned a lot . Should increase reading speed . Thanks a lot neso academy

  • @uvesh_shaikh
    @uvesh_shaikh 3 ปีที่แล้ว

    5/10 marks !!! Learnt a lot..............................

  • @tehuanmelo
    @tehuanmelo 2 ปีที่แล้ว

    7/10 - the best content ever.

  • @darktiger8699
    @darktiger8699 5 ปีที่แล้ว +1

    7/10 is my score
    Thanks for the video

  • @sinibs7179
    @sinibs7179 ปีที่แล้ว

    i was able to score 8/10 , your lecture helps me a lot bro , thank you so much.

  • @Balaji-wl9sg
    @Balaji-wl9sg 2 ปีที่แล้ว

    My score is 7 sir thank you sir it is all because of you i have improved a lot thank you sir

  • @pravinkakade8810
    @pravinkakade8810 3 ปีที่แล้ว

    I got 6/10 as same as last quiz... u r just simple amezing

  • @shyamsatishreddy7817
    @shyamsatishreddy7817 2 ปีที่แล้ว

    My score is 6 because Neso academy lectures 😇😇😇

  • @bablumahato1485
    @bablumahato1485 4 ปีที่แล้ว

    many many thanks for giving us such quality content

  • @armanmalik42740
    @armanmalik42740 2 ปีที่แล้ว

    i score 5 but very helpful sir why you are so helpful

  • @chandrakiranreddykovvuri4704
    @chandrakiranreddykovvuri4704 4 ปีที่แล้ว

    8/10 good knowledge based questions👍👌👌👌👌👌👌

  • @avisheksinha4264
    @avisheksinha4264 5 ปีที่แล้ว +5

    1st view
    Thanks sir for this series ❤️

  • @oluwasakinoluwadunsin1665
    @oluwasakinoluwadunsin1665 2 ปีที่แล้ว

    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 ❤️❤️

  • @Abhijeet578
    @Abhijeet578 5 ปีที่แล้ว +2

    Tysm..it is necessary 😍

  • @sowjanyavemula1214
    @sowjanyavemula1214 3 ปีที่แล้ว

    My score is 6/10 ..tqq sir!

  • @mohamadgamalmohamad4430
    @mohamadgamalmohamad4430 2 ปีที่แล้ว +1

    i did mistake in number 1 & 6 & 7
    so i got 7 out of 10

  • @RohitSharma-nd3ec
    @RohitSharma-nd3ec 2 ปีที่แล้ว

    8 OUT OF 10 chill dude

  • @SoumyaMajhi
    @SoumyaMajhi ปีที่แล้ว

    Got 8/10, pretty satisfied with this awesome video series by Neso.

  • @ajay0536
    @ajay0536 3 ปีที่แล้ว

    My score is 9.i enjoyed it sir.

  • @niladritadas1908
    @niladritadas1908 5 ปีที่แล้ว +1

    I scored 7 😊

  • @praveenkumarreddy5788
    @praveenkumarreddy5788 3 ปีที่แล้ว +1

    i scored 8

  • @vishalagrahari758
    @vishalagrahari758 3 ปีที่แล้ว +1

    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 ?

    • @amishasahu2018
      @amishasahu2018 3 ปีที่แล้ว

      yes i have also the same doubt

  • @fathimahida8878
    @fathimahida8878 3 ปีที่แล้ว

    6/10.. This channel helps a lot.. Thank you💞

  • @venkateshthirunagiri85
    @venkateshthirunagiri85 5 ปีที่แล้ว +1

    7 marks 💙💙

  • @visheshvaidya8625
    @visheshvaidya8625 ปีที่แล้ว

    I've scored 6/10 literally it was a good quiz .

  • @castiel0504
    @castiel0504 4 ปีที่แล้ว

    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!

  • @AélsonRenner
    @AélsonRenner 5 หลายเดือนก่อน

    In previous quiz 4/10, now 6/10

  • @ejune98
    @ejune98 6 หลายเดือนก่อน

    Q2 -> isn't only definition of the function optional?

  • @shriram6288
    @shriram6288 2 ปีที่แล้ว

    Get score 10/10 😀😀😀😀😀👍 Again thanks 👍

  • @gauravrajpurohit882
    @gauravrajpurohit882 2 ปีที่แล้ว

    I scored only 4 ....but I had cleared my doubt

  • @prajapati_23
    @prajapati_23 8 หลายเดือนก่อน

    I scored 8 out of 10❤

  • @twiz8859
    @twiz8859 2 ปีที่แล้ว

    Score 7 because of time i wasn't able to read long statements in time.

  • @learningisfun3791
    @learningisfun3791 4 ปีที่แล้ว

    C is a correct answer

  • @The_immortaL978
    @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;
    }

  • @akimbo-boi
    @akimbo-boi 6 หลายเดือนก่อน

    omg, I got 7/10 for second rapid fire quiz-2

  • @ajithkumarp4071
    @ajithkumarp4071 3 ปีที่แล้ว

    I was scored 9 So I am very about that

  • @aymenbekri4580
    @aymenbekri4580 2 ปีที่แล้ว

    6 out of 10 and im enjoing too much thnx in august 2022

  • @learningisfun3791
    @learningisfun3791 4 ปีที่แล้ว

    All are correct

  • @bhavyaaggarwal8558
    @bhavyaaggarwal8558 4 ปีที่แล้ว +1

    9 out of 10 my7th question was wrong

  • @juliawilson113
    @juliawilson113 2 ปีที่แล้ว +1

    6/10 sir

  • @hareeshdwivedi7396
    @hareeshdwivedi7396 4 ปีที่แล้ว +1

    I get 9out of 10

  • @jagjeetsuryawanshi1965
    @jagjeetsuryawanshi1965 4 ปีที่แล้ว

    i got 6 correct

  • @rajivkumawat7940
    @rajivkumawat7940 2 ปีที่แล้ว +2

    i scored 0 but enjoy alot ......

  • @aakashmishra1981
    @aakashmishra1981 5 ปีที่แล้ว +1

    Out of 10

  • @shubhamshakya4741
    @shubhamshakya4741 5 ปีที่แล้ว

    Got 6/10..Happy😃😃

  • @nextrealm
    @nextrealm ปีที่แล้ว

    thanks sir

  • @missionimpossible5657
    @missionimpossible5657 10 หลายเดือนก่อน

    I got 5/10 but had a lot of fun.

  • @rifatibnnezam7422
    @rifatibnnezam7422 3 ปีที่แล้ว

    My score was only 4 but I enjoyed the quiz a lot. Request to explain the questions

  • @rahulgoel2096
    @rahulgoel2096 2 ปีที่แล้ว

    my score 4!

  • @mohancena8970
    @mohancena8970 3 ปีที่แล้ว

    5 but it's a learning ❤️

  • @ananyadas1076
    @ananyadas1076 3 ปีที่แล้ว

    i scored 8!!!

  • @chandrakiranreddykovvuri4704
    @chandrakiranreddykovvuri4704 4 ปีที่แล้ว

    More interesting 🤩🤩🤩🤩🤩

  • @leeavi2660
    @leeavi2660 3 ปีที่แล้ว

    i score 5/10...but i enjoy
    thank you ...

  • @deepikabehera442
    @deepikabehera442 5 ปีที่แล้ว

    Nice questions...

  • @varunpandey3172
    @varunpandey3172 3 ปีที่แล้ว

    It was fun sir 😁

  • @learningisfun3791
    @learningisfun3791 4 ปีที่แล้ว

    B is a correct answer

  • @vishalpal9053
    @vishalpal9053 3 ปีที่แล้ว

    8/10 same as quiz 1

  • @dharu_22
    @dharu_22 3 ปีที่แล้ว

    I scored only 4 but learnt a lots.

  • @dutchmarz5102
    @dutchmarz5102 5 ปีที่แล้ว

    my score is 9/10...failed number 6,...learned something at least...

  • @priyankak4100
    @priyankak4100 3 ปีที่แล้ว

    My score is 6 i like this quiz

  • @adibahbab6859
    @adibahbab6859 3 ปีที่แล้ว

    My score is 6/10. Though I enjoyed it!