50 Computer Knowledge Short Answer Questions - One Word CK bits || sweetymyworld ||
50 C Language Computer Knowledge
Short Answer Questions - One Word
- Who is the father of C language ? Denis ritchie
- How many keywords in C ? 32
- How many types of loop in C ? 3
- Which of the following function is user defined ? main
- Void occupy how many bytes in memory ? 0
- In C we used for input/output ? Scanf & Printf
- What is the range of int data types ? -32768 to +32767
- What is the range of char data type ? -128 to +127
- In which year , C language was Developed ? 1972
- Which type of language is C ? Procedural oriented programming
- The formula identifier "%c" is used for which datatype ? Char
- Sizeof() is a _______? Operator
- Break statement is used for ____? Quit the current itration
- Is it possible to run program without main() ? Yes
- Which of the following is a logical NOT operator symbolically ? !
- What is the default value of local variable ? garbage
- What is the default value of static variable ? 0
- Which of the following will no return a value ? void
- Is constant better than #define ? Yes
- Can we assign null in void pointer ? Yes
- Prototype of a function means ___ ? Name of the function , parameter of function & Declaration of function
- Float a[15] , what is the size of array ? 60
- Variable that are declared but not initialized contains ___ ? Garbage
- Which of the following is not a valid storage class ? Dynamic
- Which type of statment is "break" in C language ? Jump statement
- What is the space of local variable within the block or function
- Which operator is used to Access value at address stored by a pointer variable ? *
- Which of the following user- defined datatype share its memory each other ? Union
- Which pre-defined function is used for comparing two string ? strcmp()
- Which standard library file printf & scanf are located ? studio.h
- Can we print normal variable inside static function ? No
- How many way to calling of function in C language ? Two
- Which of the following is more memory efficient ? union
- Which of the following is the operator to compare two variables ? ==
- Which of the following is comment ? /*comment*/
- What is the index number of the last element of an array in 5 Elements ? 4
- The parameters specified in the function calls are called ___ parameters ? Actual
- Which type of loop are while and for ? Entry control
- What is the ASCII value of space character ? 32
- Logical expression produce ____type results ? Book
- If int a=5/2 ; will return a value ? 2
- By default how the values are passed to the function ? Call by value
- C language developed at ____?AT & T'S Bell lab
- C programs are converted into machine language with the help of ? A compiler
- C was primarily developed as ___? System programming
- Which of the following is not a reserved keyword for C ? a) auto b)case c)main d) default answer is main
- Which one of the following is not a valid identifier? a) _a; b)1a; c)a_b; d)a1; answer is b)1a;
- Which is the only function all C programs must contain ? main()
- Which of the following is not a correct variable type ? a) double b)int c)char d) real answer is d)real
- Which loop execute at_least once even condition is false ? do while
0 Comments