C Programming (Rapid Fire Quiz-2)

Поділитися
Вставка
  • Опубліковано 11 гру 2024

КОМЕНТАРІ • 432

  • @sagarsahu6959
    @sagarsahu6959 3 роки тому +69

    I scored only 4 but enjoyed lot ❤️

  • @jaideepsharma6945
    @jaideepsharma6945 4 роки тому +13

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

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

  • @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

  • @mohitarora8754
    @mohitarora8754 5 років тому +38

    Sir please provide explanation of these questions....

  • @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

  • @Zenith_ff
    @Zenith_ff Рік тому +3

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

  • @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

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

  • @rewakher8316
    @rewakher8316 4 роки тому +13

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

  • @saddamahmad2310
    @saddamahmad2310 5 років тому +25

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

  • @mtarun3015
    @mtarun3015 4 роки тому +2

    my score is 5
    thanks for providing these logical questions.

  • @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 😍😍😍😍😍

  • @Vaibhavpatil0201
    @Vaibhavpatil0201 4 роки тому +1

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

  • @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

  • @nellivelker5213
    @nellivelker5213 3 роки тому +1

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

  • @sairohithareti823
    @sairohithareti823 5 років тому +7

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

  • @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

  • @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

  • @ranjithn0605
    @ranjithn0605 10 місяців тому +1

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

  • @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.

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

  • @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

  • @poojithayadav8703
    @poojithayadav8703 3 роки тому

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

  • @darktiger8699
    @darktiger8699 5 років тому +4

    Please provide explanation in the ending of the video

  • @avisheksinha4264
    @avisheksinha4264 5 років тому +5

    1st view
    Thanks sir for this series ❤️

  • @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

  • @shikshitverma1684
    @shikshitverma1684 4 роки тому +1

    7 out of 10 thankuu for quiz

  • @darktiger8699
    @darktiger8699 5 років тому +1

    7/10 is my score
    Thanks for the video

  • @shikhargupta4280
    @shikhargupta4280 2 роки тому +1

    I have score 8/10 !!

  • @onlyintellectuals
    @onlyintellectuals Рік тому

    fun(int, int) is also valid.

  • @AhmedSamy-fg5zz
    @AhmedSamy-fg5zz Рік тому

    7 / 10 What a great channel.

  • @tehuanmelo
    @tehuanmelo 2 роки тому

    7/10 - the best content ever.

  • @sinibs7179
    @sinibs7179 Рік тому

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

  • @pravinkakade8810
    @pravinkakade8810 3 роки тому

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

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

  • @fathimahida8878
    @fathimahida8878 3 роки тому

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

  • @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

  • @chandrakiranreddykovvuri4704
    @chandrakiranreddykovvuri4704 4 роки тому

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

  • @bablumahato1485
    @bablumahato1485 4 роки тому

    many many thanks for giving us such quality content

  • @thetechguy3993
    @thetechguy3993 Рік тому

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

  • @SoumyaMajhi
    @SoumyaMajhi Рік тому

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

  • @kakshihatake
    @kakshihatake 9 місяців тому +1

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

  • @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 ?

  • @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

  • @uvesh_shaikh
    @uvesh_shaikh 3 роки тому

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

  • @Harshit-ju2iz
    @Harshit-ju2iz Рік тому

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

  • @Abhijeet578
    @Abhijeet578 5 років тому +2

    Tysm..it is necessary 😍

  • @shyamsatishreddy7817
    @shyamsatishreddy7817 2 роки тому

    My score is 6 because Neso academy lectures 😇😇😇

  • @niladritadas1908
    @niladritadas1908 5 років тому +1

    I scored 7 😊

  • @mohamadgamalmohamad4430
    @mohamadgamalmohamad4430 2 роки тому +1

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

  • @sowjanyavemula1214
    @sowjanyavemula1214 3 роки тому

    My score is 6/10 ..tqq sir!

  • @armanmalik42740
    @armanmalik42740 2 роки тому

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

  • @venkateshthirunagiri85
    @venkateshthirunagiri85 5 років тому +1

    7 marks 💙💙

  • @ajay0536
    @ajay0536 3 роки тому

    My score is 9.i enjoyed it sir.

  • @visheshvaidya8625
    @visheshvaidya8625 Рік тому

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

  • @sunilverma-ry8yn
    @sunilverma-ry8yn 3 роки тому

    8 are correct.

  • @RohitSharma-nd3ec
    @RohitSharma-nd3ec 2 роки тому

    8 OUT OF 10 chill dude

  • @brocklesnarufcchamp1
    @brocklesnarufcchamp1 3 роки тому

    Q 8 was bizarre and incomprehensible.

  • @akimbo-boi
    @akimbo-boi 6 місяців тому

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

  • @shriram6288
    @shriram6288 2 роки тому

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

  • @AélsonRenner
    @AélsonRenner 4 місяці тому

    In previous quiz 4/10, now 6/10

  • @aakashmishra1981
    @aakashmishra1981 5 років тому +1

    Out of 10

  • @shreyasgosavi9647
    @shreyasgosavi9647 3 роки тому +1

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

  • @prajapati_23
    @prajapati_23 8 місяців тому

    I scored 8 out of 10❤

  • @gauravrajpurohit882
    @gauravrajpurohit882 2 роки тому

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

  • @praveenkumarreddy5788
    @praveenkumarreddy5788 3 роки тому +1

    i scored 8

  • @aymenbekri4580
    @aymenbekri4580 2 роки тому

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

  • @twiz8859
    @twiz8859 2 роки тому

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

  • @juliawilson113
    @juliawilson113 2 роки тому +1

    6/10 sir

  • @hareeshdwivedi7396
    @hareeshdwivedi7396 4 роки тому +1

    I get 9out of 10

  • @chandrakiranreddykovvuri4704
    @chandrakiranreddykovvuri4704 4 роки тому

    More interesting 🤩🤩🤩🤩🤩

  • @ajithkumarp4071
    @ajithkumarp4071 3 роки тому

    I was scored 9 So I am very about that

  • @learningisfun3791
    @learningisfun3791 4 роки тому

    C is a correct answer

  • @varunpandey3172
    @varunpandey3172 3 роки тому

    It was fun sir 😁

  • @shubhamshakya4741
    @shubhamshakya4741 5 років тому

    Got 6/10..Happy😃😃

  • @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!

  • @mohancena8970
    @mohancena8970 3 роки тому

    5 but it's a learning ❤️

  • @missionimpossible5657
    @missionimpossible5657 10 місяців тому

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

  • @rajivkumawat7940
    @rajivkumawat7940 2 роки тому +2

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

  • @ananyadas1076
    @ananyadas1076 3 роки тому

    i scored 8!!!

  • @nextrealm
    @nextrealm Рік тому

    thanks sir

  • @rahulgoel2096
    @rahulgoel2096 2 роки тому

    my score 4!

  • @leeavi2660
    @leeavi2660 3 роки тому

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

  • @rifatibnnezam7422
    @rifatibnnezam7422 3 роки тому

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

  • @learningisfun3791
    @learningisfun3791 4 роки тому

    All are correct

  • @jagjeetsuryawanshi1965
    @jagjeetsuryawanshi1965 4 роки тому

    i got 6 correct

  • @learningisfun3791
    @learningisfun3791 4 роки тому

    B is a correct answer

  • @mohitkumar-ml9sr
    @mohitkumar-ml9sr 5 років тому +1

    my score =8

  • @deepikabehera442
    @deepikabehera442 5 років тому

    Nice questions...

  • @raunaksahu_IIT-BHU
    @raunaksahu_IIT-BHU 7 місяців тому

    scored 7 out of 10 (thala for a reason)

  • @adibahbab6859
    @adibahbab6859 3 роки тому

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

  • @dharu_22
    @dharu_22 3 роки тому

    I scored only 4 but learnt a lots.

  • @priyankak4100
    @priyankak4100 3 роки тому

    My score is 6 i like this quiz

  • @priyadeepsen1187
    @priyadeepsen1187 3 роки тому

    In this quiz, i scored 6/10

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

  • @dutchmarz5102
    @dutchmarz5102 5 років тому

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