Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
36 views

C Programming MCQ

The document contains a set of multiple choice questions about C programming concepts and syntax. It covers topics like variable naming rules, data types, operators, functions, pointers, arrays, typecasting, preprocessor directives and more. Each question has 4 answer options and only one is correct.

Uploaded by

gjfjfgj
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views

C Programming MCQ

The document contains a set of multiple choice questions about C programming concepts and syntax. It covers topics like variable naming rules, data types, operators, functions, pointers, arrays, typecasting, preprocessor directives and more. Each question has 4 answer options and only one is correct.

Uploaded by

gjfjfgj
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

C Programming MCQ (Multiple Choice Questions)

1. Who is the father of C language?


a) Steve Jobs
b) James Gosling
c) Dennis Ritchie
d) Rasmus Lerdorf

2. Which of the following is not a valid C variable name?


a) int number;
b) float rate;
c) int variable_count;
d) int $main;

3. All keywords in C are in ____________


a) LowerCase letters
b) UpperCase letters
c) CamelCase letters
d) None of the mentioned

4. Which of the following is true for variable names in C?


a) They can contain alphanumeric characters as well as special characters
b) It is not an error to declare a variable to be one of the keywords(like goto, static)
c) Variable names cannot start with a digit
d) Variable can be of any length

5. Which is valid C expression?


a) int my_num = 100,000;
b) int my_num = 100000;
c) int my num = 1000;
d) int $my_num = 10000;

6. Which of the following cannot be a variable name in C?


a) Volatile
b) true
c) friend
d) export

7. What is short int in C programming?


a) The basic data type of C
b) Qualifier
c) Short is the qualifier and int is the basic data type
d) All of the mentioned

8. Which of the following declaration is not supported by C language?


a) String str;
b) char *str;
c) float str = 3e2;
d) Both String str; & float str = 3e2;

9. Which keyword is used to prevent any changes in the variable within a C program?
a) immutable
b) mutable
c) const
d) volatile

10. What is the result of logical or relational expression in C?


a) True or False
b) 0 or 1
c) 0 if an expression is false and any positive number if an expression is true
d) None of the mentioned

11. Which of the following typecasting is accepted by C language?


a) Widening conversions
b) Narrowing conversions
c) Widening & Narrowing conversions
d) None of the mentioned

12. Where in C the order of precedence of operators do not exist?


a) Within conditional statements, if, else
b) Within while, do-while
c) Within a macro definition
d) None of the mentioned

13. Which of the following is NOT possible with any 2 operators in C?


a) Different precedence, same associativity
b) Different precedence, different associativity
c) Same precedence, different associativity
d) All of the mentioned

14. What is an example of iteration in C?


a) for
b) while
c) do-while
d) all of the mentioned

15. Functions can return enumeration constants in C?


a) True
b) false
c) depends on the compiler
d) depends on the standard

16. Functions in C Language are always _________


a) Internal
b) External
c) Both Internal and External
d) External and Internal are not valid terms for functions

17. Which of following is not accepted in C?


a) static a = 10; //static as
b) static int func (int); //parameter as static
c) static static int a; //a static variable prefixed with static
d) all of the mentioned

18. Property which allows to produce different executable for different platforms in C is
called?
a) File inclusion
b) Selective inclusion
c) Conditional compilation
d) Recursive macros

19. What is #include <stdio.h>?


a) Preprocessor directive
b) Inclusion directive
c) File inclusion directive
d) None of the mentioned

20. C preprocessors can have compiler specific features.


a) True
b) False
c) Depends on the standard
d) Depends on the platform

21. Which of the following are C preprocessors?


a) #ifdef
b) #define
c) #endif
d) all of the mentioned

22. The C-preprocessors are specified with _________ symbol.


a) #
b) $
c) ” ”
d) &

23. How is search done in #include and #include “somelibrary.h” according to C standard?
a) When former is used, current directory is searched and when latter is used, standard
directory is searched
b) When former is used, standard directory is searched and when latter is used, current
directory is searched
c) When former is used, search is done in implementation defined manner and when latter
is used, current directory is searched
d) For both, search for ‘somelibrary’ is done in implementation-defined places
24. How many number of pointer (*) does C have against a pointer variable declaration?
a) 7
b) 127
c) 255
d) No limits

25. Which of the following is not possible statically in C language?


a) Jagged Array
b) Rectangular Array
c) Cuboidal Array
d) Multidimensional Array

26. Which of the following return-type cannot be used for a function in C?


a) char *
b) struct
c) void
d) none of the mentioned

27. The standard header _______ is used for variable list arguments (…) in C.
a) <stdio.h >
b) <stdlib.h>
c) <math.h>
d) <stdarg.h>

28. When a C program is started, O.S environment is responsible for opening file and
providing pointer for that file?
a) Standard input
b) Standard output
c) Standard error
d) All of the mentioned

29. In C language, FILE is of which data type?


a) int
b) char *
c) struct
d) None of the mentioned

30. What is the sizeof(char) in a 32-bit C compiler?


a) 1 bit
b) 2 bits
c) 1 Byte
d) 2 Bytes

31. Which of the following is not an operator in C?


a) ,
b) sizeof()
c) ~
d) None of the mentioned
32. scanf() is a predefined function in______header file.
a) stdlib. h
b) ctype. h
c) stdio. h
d) stdarg. h

33. What is meant by ‘a’ in the following C operation?

fp = fopen("Random.txt", "a");

a) Attach
b) Append
c) Apprehend
d) Add

34. What will be the output of the following C code?

1. #include <stdio.h>
2. int main()
3. {
4. int y = 10000;
5. int y = 34;
6. printf("Hello World! %d\n", y);
7. return 0;
8. }

a) Compile time error


b) Hello World! 34
c) Hello World! 1000
d) Hello World! followed by a junk value

35. What will happen if the following C code is executed?

1. #include <stdio.h>
2. int main()
3. {
4. int main = 3;
5. printf("%d", main);
6. return 0;
7. }

a) It will cause a compile-time error


b) It will cause a run-time error
c) It will run without any error and prints 3
d) It will experience infinite looping

36. What will be the output of the following C code?

1. #include <stdio.h>
2. int main()
3. {
4. signed char chr;
5. chr = 128;
6. printf("%d\n", chr);
7. return 0;
8. }

a) 128
b) -128
c) Depends on the compiler
d) None of the mentioned

37. What will be the output of the following C code on a 64 bit machine?

1. #include <stdio.h>
2. union Sti
3. {
4. int nu;
5. char m;
6. };
7. int main()
8. {
9. union Sti s;
10. printf("%d", sizeof(s));
11. return 0;
12. }

a) 8
b) 5
c) 9
d) 4

38. What will be the output of the following C function?

1. #include <stdio.h>
2. enum birds {SPARROW, PEACOCK, PARROT};
3. enum animals {TIGER = 8, LION, RABBIT, ZEBRA};
4. int main()
5. {
6. enum birds m = TIGER;
7. int k;
8. k = m;
9. printf("%d\n", k);
10. return 0;
11. }

a) 0
b) Compile time error
c) 1
d) 8

39. What will be the output of the following C code?


1. #include <stdio.h>
2. int const print()
3. {
4. printf("Sanfoundry.com");
5. return 0;
6. }
7. void main()
8. {
9. print();
10. }

a) Error because function name cannot be preceded by const


b) Sanfoundry.com
c) Sanfoundry.com is printed infinite times
d) Blank screen, no output

40. Will the following C code compile without any error?

1. #include <stdio.h>
2. int main()
3. {
4. for (int k = 0; k < 10; k++);
5. return 0;
6. }

a) Yes
b) No
c) Depends on the C standard implemented by compilers
d) Error

You might also like