SlideShare uma empresa Scribd logo
1 de 186
Anjuman College of Engineering and
    Technology, Sadar, Nagpur.
Computer Science and engineering
           department
             presents



      Envisage’13
      “Over C War”
                                 By, Shabina Parveen
          Powerpoint Templates
                                               Page 1
RULES
 Each Easy level question consists of 5
 marks.
Each Medium level question consists of 10
 marks
Each Hard level question consists of 15
 marks
According to the level chosen for betting,
 for each correct answer plus marks & for
 each wrong answer respective marks will
 be deducted from the actual score
               Powerpoint Templates
                                      Page 2
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 3
Question




Powerpoint Templates
                       Page 4
Answer


Dennis Ritchie





    Powerpoint Templates
                           Page 5
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 6
Question
Would the following program give a
 compilation error or warning?
 #include<stdio.h>
 int main()
 {
 float I =10, *j;
 void *k;
 k = &I;
 j = k;
 printf(“%fn”, *j);
 return 0;
 }
                       a. Yes
           Powerpoint Templates   b. No
                                          Page 7
Answer



   b. No




Powerpoint Templates
                       Page 8
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 9
Question
Predict the output:
# define SQUARE(x) x*x;
inline float square(float y)
{
return y*y;
}
int main()
{
float a = 0.5, b = 0.5, c, d;
c= SQUARE (++a)l;
d = square (++b);
return 0;
       Powerpoint Templates
}                               Page 10
Answer
Output: during preprocessing the
macro SQUARE gets expanded
into c=++x *++x;
You can notice the undesirable
side effect in this macro expansion;
the output is unpredictable
because such side effect must not
appear in inline function.

      Powerpoint Templates
                              Page 11
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 12
Question
  Which of the following
  statement is true about the >>
  operator?
a. It divides a positive value by a
  power of two.
b. It multiplies a positive value by a
  power of two.
c. It adds a positive value with a
  power of two.
d. It subtracts from a positive value a
          Powerpoint Templates
  power of two.                    Page 13
Answer

a. It divides a positive
 value by a power of
 two.


     Powerpoint Templates
                            Page 14
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 15
Question
would the following code compile?
#include<stdio.h>
int main()
{
int a = 10, *j;                a. Yes

void *k;                        b. no
j= k = &a;
j++;
k++;
printf(“%u %un , j, k”);
return 0;
         Powerpoint Templates
}                                  Page 16
Answer



   b. No



Powerpoint Templates
                       Page 17
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 18
Question
Predict the output:
#include<stdio.h>
int main()
{
int a[]={0,1,2,3.4};
int i , *p;
for(p=arr,i=0; p+i<=arr+4 ; p++ , i++)
 printf(“%d”, , *(p+1));
return 0;
}
       Powerpoint Templates
                                   Page 19
Answer



Output: 024



  Powerpoint Templates
                         Page 20
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 21
Question
 Which of the following
 statement is correct?
a. Int a=64<<2;
b. Float a =6.42<<2;
c. Double a = 3.33<<2;
d. Long double a =3.67<<2;


       Powerpoint Templates
                              Page 22
Answer

a. Int a=64<<2;




   Powerpoint Templates
                          Page 23
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 24
Question
Would the following program give a
compilation error or warning?
#include<stdio.h>
int main()
{
int *p1, i=25;                a. Yes
void *p2;                     b. no
p1=&i;
p2=&i;
p1=p2;
p2=p1;
return 0;
        Powerpoint Templates
                                   Page 25
}
Answer



      b. No



Powerpoint Templates
                       Page 26
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 27
Question
‱ In a file contains the line "I am a
  boyrn" then on reading this line
  into the array str using fgets().
  What will str contain?

‱   A. "I am a boyrn0"
‱   B. "I am a boyr0"
‱   C. "I am a boyn0"
‱   D. "I am a boy"
          Powerpoint Templates
                                  Page 28
Answer



C.    "I am a boyn0"




     Powerpoint Templates
                            Page 29
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 30
Question
What would be the result of the
expression a^a?
a. 0
b. 1
c. Sum of two operands
d. Multiplication of two operands


        Powerpoint Templates
                               Page 31
Answer



a. 0




       Powerpoint Templates
                              Page 32
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 33
Question
Would the following program give
a compilation error or warning?
#include<stdio.h>
int main()
{
float *p1,i=25.50;          a. Yes
char *p2;                   b. No
p1=&i;
p2=&i;
return 0;
}    Powerpoint Templates
                               Page 34
Answer



      a. Yes



Powerpoint Templates
                       Page 35
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 36
Question

Write a program in C to display any
message without using semi colon
anywhere in program?




      Powerpoint Templates
                             Page 37
Answer
#include <stdio.h>
void main()
{
if(printf(”Hello”))
{}

NOTE: We can write the printf inside
 while or switch as well for same
 result. Powerpoint Templates   Page 38
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 39
Question
What will be the output of the code
  snippet given below:
#include<stdio.h>
Void main()
{
Int a =10,b =65;
Printf(“%d”,a<<(a&b));
}
a. 65                        c. 0
d. 1                         b. 10
         Powerpoint Templates
                                  Page 40
Answer



     b. 10



Powerpoint Templates
                       Page 41
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 42
Question
Predict the output:
#include<stdio.h>
 int main()
 {
 int a[]={10,20,30,40,50};
 int j;
 for(j=0;j<5;j++)
 {
       printf(“%dn”, *a);
      a++;
 }
return 0;
           Powerpoint Templates
}                                 Page 43
Answer

Output:
Error message: Lvalue
required in function main



     Powerpoint Templates
                            Page 44
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 45
Question
#include<stdio.h>
int main()
{
 char str[20] = "Hello";
  char *const p=str;
   *p='M';
   printf("%sn", str);
   return 0;
          Powerpoint Templates
}                                Page 46
Answer



   MELLO




Powerpoint Templates
                       Page 47
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 48
Question
   Who were the two main individuals
  involved in development of K&R standard
  for C language?

a. Dennis Ritchie & John Von Neumann
b. Brian Kernighan & Dennis Ritchie
c. Grace Hopper & Niklaus Wirth
d. Dennis Ritchie & Bjarne Stroustroup



       Powerpoint Templates
                                 Page 49
Answer


    Brian Kernighan and Dennis Ritchie

‱




             Powerpoint Templates
                                    Page 50
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 51
Question
Predict the output:
#include<stdio.h>
int main()
{
float a[]={13.24, 1.5, 1.5, 5.4, 3.5};
float *j, *k;
j=a;
k=a+4;
i = j*2;
k =k/2;
printf(“%f %fn”, *j. *k);
return 0;
          Powerpoint Templates
                                         Page 52
}
Answer

Output:
Error message: illegal use
of pointer in function main



    Powerpoint Templates
                           Page 53
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 54
Question
void main(){
int i=10;
static int x=i;
 if(x==i)
printf("Equal");
else if(x>i)
printf("Greater than");
else
 printf("Less than");
      Powerpoint Templates
                             Page 55
Answer


Compiler error




Powerpoint Templates
                       Page 56
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 57
Question
Which of the following utility
is used for compiling and
linking the program?

a. Make
b. Makefile
c. Compiler
d. linker
       Powerpoint Templates
                              Page 58
Answer



a. Make



  Powerpoint Templates
                         Page 59
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 60
Question
Would the following program give a
compilation error or warning?
#include<stdio.h>
int main()
{
char a[]=”sunstroke”;          a. Yes
char *p = “coldwave”;          b. No
a = “coldwave”;
p = “sunstroke”;
printf(“%s %sn”, a, p);
return 0;
}       Powerpoint Templates
                                     Page 61
Answer



       b. No



Powerpoint Templates
                       Page 62
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 63
Question

Write a c program to add two
numbers without add operator?




       Powerpoint Templates
                                Page 64
Answer
#include <stdio.h>
#include <conio.h>
int main(){
      int a=1,b=2,c;
       c=a-(-b);
      printf(“%d”,c);
      getch();
      return 0;
        Powerpoint Templates
}                              Page 65
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 66
Question
Which of the following
function is used to copy data
types other than strings from
one variable to another?

a. memcpy()                    c. objcpy()
b. datacpy()                   d. strcpy()

        Powerpoint Templates
                                       Page 67
Answer



a. memcpy()



 Powerpoint Templates
                        Page 68
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 69
Question
Predict the output:
#include<stdio.h>
#include<string.h>
int main()
{
char s[]=”rendezvous !”;
printf(“%dn”, *(s + strlen (s)));
return 0;
       Powerpoint Templates
}                                Page 70
Answer



Output: 0



 Powerpoint Templates
                        Page 71
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 72
Question
What will be the output of the
  code snippet given below?
#include<stdio.h>
Void main()
{
Char ch = ‘A’;
Printf(“%d”, ch | ‘A’ & ‘Z’);
}
       Powerpoint Templates
                              Page 73
Answer



        65




Powerpoint Templates
                       Page 74
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 75
Question
Consider the following program
 segment:
int a=35;
int *b;
b= &a;
A. b contains address of an int
B. value at address contained in b is
  an int.
C. b is a pointer which points in the
  direction of an int.
         Powerpoint Templates
D. all of the above              Page 76
Answer



d. all of the above



     Powerpoint Templates
                            Page 77
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 78
Question
Predict the output:
#include<stdio.h>
#include<string.h>
int main()
{
printf(5 + “fascimile”);
return 0;
}
       Powerpoint Templates
                              Page 79
Answer



Output: mile



    Powerpoint Templates
                           Page 80
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 81
Question
Predict the output:

#define call(x) #x
void main(){
  printf("%s",call(c/c++));
}


        Powerpoint Templates
                               Page 82
Answer



     c/c++




Powerpoint Templates
                       Page 83
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 84
Question
In which header file is the
 NULL macro defined?
a. <stdio.h>
b. <stddef.h>
c. # define
d. All of the above


         Powerpoint Templates
                                Page 85
Answer



c. All of the above




   Powerpoint Templates
                          Page 86
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 87
Question
Predict the output:
#include<stdio.h>
int main()
{
int arr[12];
printf(“%dn”, sizeof(arr));
return 0;
}
       Powerpoint Templates
                               Page 88
Answer



Output: 24



   Powerpoint Templates
                          Page 89
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 90
Question
struct marks{
int p:3;
 int c:3;
 int m:2;
};
void main()
{
struct marks s={2,-6,5};
printf("%d %d %d",s.p,s.c,s.m);
       Powerpoint Templates
                              Page 91
Answer


       221
     221




Powerpoint Templates
                       Page 92
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 93
Question
Is the NULL pointer same as
an uninitialized pointer ?


                a. Yes
                 b. No

     Powerpoint Templates
                            Page 94
Answer



      b. No



Powerpoint Templates
                       Page 95
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 96
Question
What is the current version
of standard for c language
was approved in December
2011?



     Powerpoint Templates
                            Page 97
Answer



      C11




Powerpoint Templates
                       Page 98
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 99
Question
Predict the output:

void main(){
 int a=25;
   clrscr();
   printf("%o %x",a,a);
   getch();
}
     Powerpoint Templates
                            Page 100
Answer



     31 19




Powerpoint Templates
                       Page 101
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 102
Question
State true or false:
Multiplication of a pointer
and an unsigned integer is
allowed


 a. True
 b. false
     Powerpoint Templates
                            Page 103
Answer



 b. False



Powerpoint Templates
                       Page 104
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 105
Question
‱ In which numbering system can the
  binary number 1011011111000101
  be easily converted to?
      A. Decimal system
      B. Hexadecimal system
      C. Octal system
      D. No need to convert

        Powerpoint Templates
                               Page 106
Answer



Hexadecimal system




   Powerpoint Templates
                          Page 107
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 108
Question
Predict the output:
void main()
{
 int a=-12;
 a=a>>3;
printf("%d",a);
}

      Powerpoint Templates
                             Page 109
Answer



        -2




Powerpoint Templates
                       Page 110
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 111
Question
Does mentioning the array
name gives the base
address in all the contexts?


   a. Yes
   b. no

     Powerpoint Templates
                            Page 112
Answer



      b. No



Powerpoint Templates
                       Page 113
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 114
Question
‱ What is the difference
  between #include <>
  and #include “ ” ?




     Powerpoint Templates
                            Page 115
Answer
#include <> ---- > specifically used
 for built in header file.

#include ” ” ----->specifically used
for user defined/created n header
files.



       Powerpoint Templates
                               Page 116
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 117
Question
Assuming, integer is 2 byte, What
will be the output of the program?
        #include<stdio.h>
       int main()
        {
           printf("%xn", -1>>1);
           return 0;
        }
     Powerpoint Templates
                            Page 118
Answer



       ffff




Powerpoint Templates
                       Page 119
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 120
Question
A pointer to a block of
memory is effectively
same as the array

 a. True
 b. False
    Powerpoint Templates
                           Page 121
Answer



 a. True




Powerpoint Templates
                       Page 122
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 123
Question
Find the ERROR:

  void main()
   {
      int const * p=5;
      printf("%d",++(*p));
    }

     Powerpoint Templates
                             Page 124
Answer



Compiler error: Cannot modify a
         constant value.




     Powerpoint Templates
                            Page 125
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 126
Question
Predict the output:

#include "string.h"
void main(){
 clrscr();
printf("%d
  %d",sizeof("string"),strlen("string");
getch();
}          Powerpoint Templates
                                   Page 127
Answer



       76




Powerpoint Templates
                       Page 128
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 129
Question
 What does the following
 declaration mean:
a. index of the pointer variable
b. memory location as 10
c. ptr is a pointer to an array of 10
  integers
d. none of the above

         Powerpoint Templates
                                   Page 130
Answer


c. ptr is a pointer to an array of
             10 integers




      Powerpoint Templates
                             Page 131
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 132
Question
Two different operators would
always have different
Associativity.

A. Yes               B. No




      Powerpoint Templates
                             Page 133
Answer



       NO




Powerpoint Templates
                       Page 134
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 135
Question
Predict the output:

#include<stdio.h>
void main()
{
int i;
For(i=0;i++<10;)
Printf(“%dn”,i);
}       Powerpoint Templates
                               Page 136
Answer
         2
         3
         4
         5
         6
         7
         8
         9
        10
Powerpoint Templates
                       Page 137
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 138
Question
Predict the output:
#include<stdio.h>
int main()
{
printf(“%c”, “abcdefgh”[4]);
return 0;
}
      Powerpoint Templates
                               Page 139
Answer


       0

Powerpoint Templates
                       Page 140
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 141
Question
‱ Data written into a file using
  fwrite() can be read back using
  fscanf()

 A. True
                      B.      False



       Powerpoint Templates
                                      Page 142
Answer



    FALSE




Powerpoint Templates
                       Page 143
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 144
Question
What the following code will
 display?

void main()
{
  printf("%s",__DATE__);
}

       Powerpoint Templates
                               Page 145
Answer



Current system DATE




    Powerpoint Templates
                           Page 146
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 147
Question
Predict the output:
#include<stdio.h>
int main()
{
char str[7] = “strings”;
printf(“%sn” , str);
return 0;
}
         Powerpoint Templates
                                Page 148
Answer



Output: cannot predict




     Powerpoint Templates
                            Page 149
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 150
Question
What do the functions atoi()?

A. is a macro that converts integer
  to character.
B. It converts an integer to string
C. It converts a floating point
  number to string


        Powerpoint Templates
                                Page 151
Answer


is a macro that converts integer to
              character




           Powerpoint Templates
                                  Page 152
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 153
Question
Predict the output:
void main()
{
  printf("%s","c" "question" "bank");
}
A. c question bank
B. bank
C. cquestionbank
D. Compiler error
         Powerpoint Templates
                                Page 154
Answer


cquestionbank




Powerpoint Templates
                       Page 155
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 156
Question
Would the following code
 compile successfully?
# include<stdio.h>
int main()
{
printf(“%c”, 7[“sundaram”]);
return 0;
}
        Powerpoint Templates
                               Page 157
Answer



Ans: Yes




Powerpoint Templates
                       Page 158
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 159
Question
Give the output:
main()
 {
 #define a 50
 printf("%d",a);
 }



       Powerpoint Templates
                              Page 160
Answer


       50




Powerpoint Templates
                       Page 161
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 162
Question
Give the output:
void main(){
  char *str="c-pointer";
  printf("%*.*s",10,7,str);
}

(a. c-pointer
 b. c-pointer
 c. c-point
         Powerpoint Templates
                                Page 163
 d. cpointer null null
Answer



    c-point




Powerpoint Templates
                       Page 164
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 165
Question
Which of the following statements are
  correct about the program?
#include<stdio.h>
      int main()
      {
         printf("%pn", main());
         return 0;
       }
        Powerpoint Templates
                               Page 166
Answer



It prints garbage values infinitely




          Powerpoint Templates
                                      Page 167
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 168
Question
‱ Find the error:
typedef struct
{
int data;
NODEPTR link;
}*NODEPTR;



        Powerpoint Templates
                               Page 169
Answer



Error: typedef cannot be used until is define




                Powerpoint Templates
                                       Page 170
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 171
Question
‱ Predict the output:

#include<stdio.h>
void main()
{
int i;
For(i=0;++i<=10;)
Printf(“%dn”,i);
}                 Powerpoint Templates
                                         Page 172
Answer
         1
         2
         3
         4
         5
         6
         7
         8
         9
Powerpoint Templates
                       Page 173
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 174
Question
Predict the output:
#include<stdio.h>
#include<string.h>
Int main
{
Char str1[]=“learn through IndiaBIX0.com”,
   str2[120];
Char *p;
P=(char*)memccpy(str2,str1,’I’,strlen(str1));
*p=‘0’;
Printf(“%s”,str2);

            Powerpoint Templates
Return 0;                                  Page 175
Answer



“learn through indi”




   Powerpoint Templates
                          Page 176
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 177
Question
State true or false:

‱ In place of the condition in a while
  loop structure there can be any other
  valid expression



        Powerpoint Templates
                                  Page 178
Answer



      True




Powerpoint Templates
                       Page 179
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 180
Question
Predict the output:
#include<stdio.h>
Void main()
{
Char arr[7]=“NETWORK”;
Printf(“%s”,arr);
}

      Powerpoint Templates
                             Page 181
Answer



Garbage value




 Powerpoint Templates
                        Page 182
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 183
Question
                 START


                 Initialize


                                 False
                   Test

         True
                Body of loop             Stop



                increement




          Powerpoint Templates
‱ What does the above flowchart shows?184
                                   Page
Answer



Shows the flowchart of FOR LOOP




         Powerpoint Templates
                                Page 185
Categories

   Easy
  Medium
   Hard
  Powerpoint Templates
                         Page 186

Mais conteĂșdo relacionado

Semelhante a C Quiz

important C questions and_answers praveensomesh
important C questions and_answers praveensomeshimportant C questions and_answers praveensomesh
important C questions and_answers praveensomeshpraveensomesh
 
Computer programming mcqs
Computer programming mcqsComputer programming mcqs
Computer programming mcqssaadkhan672
 
C multiple choice questions and answers pdf
C multiple choice questions and answers pdfC multiple choice questions and answers pdf
C multiple choice questions and answers pdfchoconyeuquy
 
Deep C Programming
Deep C ProgrammingDeep C Programming
Deep C ProgrammingWang Hao Lee
 
C language questions_answers_explanation
C language questions_answers_explanationC language questions_answers_explanation
C language questions_answers_explanationsrinath v
 
CIS 170 Effective Communication - tutorialrank.com
CIS 170 Effective Communication - tutorialrank.comCIS 170 Effective Communication - tutorialrank.com
CIS 170 Effective Communication - tutorialrank.comBartholomew19
 
CIS 170 Inspiring Innovation/tutorialrank.com
 CIS 170 Inspiring Innovation/tutorialrank.com CIS 170 Inspiring Innovation/tutorialrank.com
CIS 170 Inspiring Innovation/tutorialrank.comjonhson110
 
Ppl home assignment_unit2
Ppl home assignment_unit2Ppl home assignment_unit2
Ppl home assignment_unit2Akshay Nagpurkar
 
Mcq powerpoint 2007
Mcq powerpoint 2007Mcq powerpoint 2007
Mcq powerpoint 2007sanu
 
Generic programming
Generic programmingGeneric programming
Generic programmingPlatonov Sergey
 
Quiz1 tonghop
 Quiz1 tonghop Quiz1 tonghop
Quiz1 tonghopDaewoo Han
 
Exam for c
Exam for cExam for c
Exam for cvijasli25
 
CIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.comCIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.combellflower82
 
C++ Certified Associate Programmer CPA
C++ Certified Associate Programmer CPAC++ Certified Associate Programmer CPA
C++ Certified Associate Programmer CPAIsabella789
 
Cis 170 Extraordinary Success/newtonhelp.com
Cis 170 Extraordinary Success/newtonhelp.com  Cis 170 Extraordinary Success/newtonhelp.com
Cis 170 Extraordinary Success/newtonhelp.com amaranthbeg143
 

Semelhante a C Quiz (20)

Java Quiz
Java QuizJava Quiz
Java Quiz
 
important C questions and_answers praveensomesh
important C questions and_answers praveensomeshimportant C questions and_answers praveensomesh
important C questions and_answers praveensomesh
 
Computer programming mcqs
Computer programming mcqsComputer programming mcqs
Computer programming mcqs
 
C multiple choice questions and answers pdf
C multiple choice questions and answers pdfC multiple choice questions and answers pdf
C multiple choice questions and answers pdf
 
UNIT 2 LOOP CONTROL.pptx
UNIT 2 LOOP CONTROL.pptxUNIT 2 LOOP CONTROL.pptx
UNIT 2 LOOP CONTROL.pptx
 
Deep C Programming
Deep C ProgrammingDeep C Programming
Deep C Programming
 
Aptitute question papers in c
Aptitute question papers in cAptitute question papers in c
Aptitute question papers in c
 
C language questions_answers_explanation
C language questions_answers_explanationC language questions_answers_explanation
C language questions_answers_explanation
 
C taw12 70
C taw12 70C taw12 70
C taw12 70
 
CIS 170 Effective Communication - tutorialrank.com
CIS 170 Effective Communication - tutorialrank.comCIS 170 Effective Communication - tutorialrank.com
CIS 170 Effective Communication - tutorialrank.com
 
CIS 170 Inspiring Innovation/tutorialrank.com
 CIS 170 Inspiring Innovation/tutorialrank.com CIS 170 Inspiring Innovation/tutorialrank.com
CIS 170 Inspiring Innovation/tutorialrank.com
 
Ppl home assignment_unit2
Ppl home assignment_unit2Ppl home assignment_unit2
Ppl home assignment_unit2
 
Mcq powerpoint 2007
Mcq powerpoint 2007Mcq powerpoint 2007
Mcq powerpoint 2007
 
Generic programming
Generic programmingGeneric programming
Generic programming
 
Quiz1 tonghop
 Quiz1 tonghop Quiz1 tonghop
Quiz1 tonghop
 
Exam for c
Exam for cExam for c
Exam for c
 
Programming in c
Programming in cProgramming in c
Programming in c
 
CIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.comCIS 170 Focus Dreams/newtonhelp.com
CIS 170 Focus Dreams/newtonhelp.com
 
C++ Certified Associate Programmer CPA
C++ Certified Associate Programmer CPAC++ Certified Associate Programmer CPA
C++ Certified Associate Programmer CPA
 
Cis 170 Extraordinary Success/newtonhelp.com
Cis 170 Extraordinary Success/newtonhelp.com  Cis 170 Extraordinary Success/newtonhelp.com
Cis 170 Extraordinary Success/newtonhelp.com
 

Último

Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
The Evolution of Money: Digital Transformation and CBDCs in Central Banking
The Evolution of Money: Digital Transformation and CBDCs in Central BankingThe Evolution of Money: Digital Transformation and CBDCs in Central Banking
The Evolution of Money: Digital Transformation and CBDCs in Central BankingSelcen Ozturkcan
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...gurkirankumar98700
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 

Último (20)

Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
The Evolution of Money: Digital Transformation and CBDCs in Central Banking
The Evolution of Money: Digital Transformation and CBDCs in Central BankingThe Evolution of Money: Digital Transformation and CBDCs in Central Banking
The Evolution of Money: Digital Transformation and CBDCs in Central Banking
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍾 8923113531 🎰 Avail...
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 

C Quiz

Notas do Editor

  1. 158- 159, 162, 165
  2. 168, 171, 174
  3. 177, 180, 183
  4. 186, 189, 192