Multiple Choice Questions for C Programming Part 2 | BCA Entrance Exam | Placement Exam

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ม.ค. 2025

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

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

    Good

  • @AmAnYaDaV-kl1hf
    @AmAnYaDaV-kl1hf 4 ปีที่แล้ว

    Nice

  • @imransirofficial-ARO
    @imransirofficial-ARO 6 ปีที่แล้ว +1

    Great work ma'am...Thanx a lot.

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

    Perfect videos

  • @pradumchauhanpradum6134
    @pradumchauhanpradum6134 6 ปีที่แล้ว +4

    thank you madam ji....... please English ka video banaye.

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

      Phle English me comments krlo 🤣🤣

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

    Very easy questions

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

    Thanks 🙂😊

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

    Thanks

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

    Ma'am Aapki videos se bht help milti h. Thanks a lot ma'am.

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

    Mam these question are enough for bca entrance exam
    In computer Awerance
    Content part in C language

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

    Bekr lecture kuch smjh nhi aaya

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

    Thank u maamfor ur help... please upload more videos on mcq on c language...

    • @AECcomputers
      @AECcomputers  6 ปีที่แล้ว

      Sure would be uploading more soon....

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

    Thank you Didi.......

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

    Ur video is very helpful please upload a video for C++ mcq

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

    Thx mam..

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

    Thnks so much

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

    Thanks Medam

  • @smmulticontent...haryanaal619
    @smmulticontent...haryanaal619 4 ปีที่แล้ว

    Mam I think in question 5 we use exponentia Singh ** for example 2**2 means 2×2= 4 ans ...exponent meaning rase to the power ....

  • @pravinmankar4271
    @pravinmankar4271 6 ปีที่แล้ว

    -2 or any negative value in bollean represent as 0 or 1?

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

      in c language it is considered as true

  • @Rohit-te9dr
    @Rohit-te9dr 6 ปีที่แล้ว

    Thanks mam

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

    int a=5;
    a=a++;
    what will be value of a after execution of second statement .Kindly tell reason as well.

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

      5 cuz it is post increment it will first print value and then increments to 6 to the memory

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

    Voice is not understandable nd audiable Plzz check that one,nice video tq mam

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

    #include
    void main()
    { unsigned int var=10;
    Printf(«"%d",-var );
    }
    Wht is output and plz explain in detail

  • @imransirofficial-ARO
    @imransirofficial-ARO 6 ปีที่แล้ว +1

    Humble Request:
    Dear ma'am please make more videos of C (multiple choice).
    It will be very useful for UPPCL ARO and many other govt job exams.
    Thank You.

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

    85doud969t79fd6f07fof97f79f96d9f69f97f79f07f97f96f9f96f96f69f97f6f96ff9f69f9ff9f9f69f69f699f6f96f96f69f9f96f69f699f9f96f9f96f69f69f69f69f69f96f69f69996

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

    Q7 is wrong.
    Function argument evaluation order is undefined in C.
    So both "7 7 8" and "9 7 6" seems to be valid as well as any other order if the compiler so chooses.
    Conclusion: Don't write code like that.

    • @AECcomputers
      @AECcomputers  6 ปีที่แล้ว

      Oh really..... Where I was wrong I admitted but that doesnt mean you will comment anything about any questions.
      Conclusion : if you are finding all answers wrong and you have more knowledge then why are you wasting your time watching my videos.

    • @sverkeren
      @sverkeren 6 ปีที่แล้ว

      @@AECcomputers
      I'm confused. Are you saying argument evaluation order is defined as from right to left
      or are you saying I should stop and it does not matter if your viewers get the wrong answers on these "exam" questions?

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

      the evaluation order is defined from right to left in standard C Compilers for printf statement

    • @sverkeren
      @sverkeren 6 ปีที่แล้ว

      Can you point me to that, because all I find is this statement in the C11 standard (port70.net/~nsz/c/c11/n1570.html#J.1)
      "J.1 Unspecified behavior
      1 The following are unspecified:
      [...]
      * The order in which the function designator, arguments, and subexpressions within the arguments are evaluated in a function call (6.5.2.2)."

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

      Yeah, after looking into this it it seems to depend entirely on the compiler. GCC outputs 9 7 6, but other compilers like Clang and ICC output 7 7 8. I have to agree this code seems very contrived and prone to errors.

  • @PawanSingh-fm9vv
    @PawanSingh-fm9vv 6 ปีที่แล้ว

    int x=5;
    printf("%d %d %d", x,x2);
    please explane it mam,,,

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

      These are bit wise operators
      > means shift the binary value n bits towrads right
      The above code will print 5 20 1
      since binary value of x=5 is 0000000000000101 in 16 bits
      x will print 5
      x2 will shift 2 bits towards right will print 1
      Rest will explain it in detail in a video

    • @PawanSingh-fm9vv
      @PawanSingh-fm9vv 6 ปีที่แล้ว

      Ok mam thank u,, next video me isko explain kr dijiye plzzz,,,

  • @SuriyaR16
    @SuriyaR16 6 ปีที่แล้ว

    I think
    a = 80
    How many of u agree !!!

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

      No my friend answer is 50
      Pointer is variable whose value is the address of the another variable i.e direct address of the memory location... Like any variable or constant you must declare a pointer berfore using
      It store any variable address
      The general form of a pointer
      Type * var name
      So address of a would be P and modified thr value and then print the value a= 50

  • @MdDanish-fy6mb
    @MdDanish-fy6mb 4 ปีที่แล้ว

    Thanks