1-mark question list
Unit : 1 – Introduction to C Language
- _____ has developed C language
- _____ is the pictorial representation of programming logic
- ANSI stands for _____
- _____ are also known as reserved words
- _____ types operators are there in C language
- int type variables occupies _____ bytes in memory in C
- float type variables occupies _____ bytes in memory in C
- char type variables occupies _____ bytes in memory in C
- double type variables occupies _____ bytes in memory in C
- All preprocessor commands begin with _____ symbol
- _____ preprocessor is used to include header files
Unit : 2 – Control Structure
- if is an iterative control statement (true/false)
- for loop is selective control structure (true/false)
- do…while loop is _____ control loop (entry/exit)
- while loop is _____ control loop (entry/exit)
- _____ keyword is used to stop the loop
- _____ statement is used to bring the program control to the beginning of the loop
- _____ is used to transfer the program control to a predefined label
- for ( ; ; ) is an infinite loop (true/false)
Unit : 3 – Library Functions and User defined function (UDF)
- _____ function is used to count the length of string
- _____ function is used to compare two string
- _____ function is used to copy a string
- _____ function is used to get input from user
- _____ function is used to give output to screen
- _____ function converts character to upper case
- _____ function converts character to lower case
- _____ function used to get the absolute number
- _____ types of UDF are there in C
- _____ variable points to the another variable
- When a function calls itself, it is known as _____
- _____ number of storage classes are there in C
- _____ keyword is used to declare constant in C
- _____ keyword is used to return a value from a function
Unit : 4 – Array and Structure
- _____ is a group of variables that shares the common name in C
- _____ is a group of variables of dissimilar types in C
- _____ symbol is used to declare array in C
- _____ keyword is used to declare a structure
- _____ symbol is used to specify end the structure declaration
- Structure members are accessed using _____ operator
- Structure (pointer type) members are accessed using _____ operator
Unit : 5 – Pointer and File Handling
- Pointer is declared using _____ symbol
- Pointer to pointer is declared using _____ symbol
- argc stands for _____
- argv stands for _____
- Arguments to main function are passed using _____
- _____ function is used to create/open a file
- _____ function is used to close a file
- _____ mode is require to open file for writing
- _____ mode is require to open file for reading
- _____ mode is require to open file for appending
- _____ function returns the current position of a file pointer
- _____ function sets the file pointer at the beginning of a file
- _____ writes an integer to a file
- _____ reads an integer from a file
- _____ writes a character to a file
- _____ reads a character from a file
- feof stands for _____
General Question List
- What is C Language?
- What is Data type?
- Who developed C Language?
- What is Identifier?
- What is variable?
- What is constant?
- What is block?
- What is man function?
- What is #include?
- When to use #include?
- List of Data types in C.
- What is the size of each data type in C?
- What is Array?
- What is Structure?
- What is Function?
- What is User defined function?
- What is prototype?
- What is loop?
- Types of loops in C.
- What is Entry Control Loop?
- What is Exit Control Loop?
- What Do…While?
- Usage of break and continue keyword
- Usage of #define
- What is header file?
- What is the meaning of f in printf() and scanf() function?
- When use printf() function?
- When to use scanf() function()
- What value is returned by printf() function?
- What value is returned by scanf() function?
- clrscr() contained in which header file?
- printf() and scanf() contained in which header file?
- Full form of ANSI C
- Full form of ASCII
- List of operators in C language
- What is Logical Operator?
- What is Ternary Operator?
- What is Binary Operator?
- What is Unary Operator?
- What is Increment Operator?
- What is Decrement Operator?
- A C language program begins its execution from which function?
- Which compiler you are using in LAB for C programming?
- What is Branching Statement?
- What is Looping Statement?
- How many keywords are there in C language?
- What is keyword?
- What is literal?
- Each statement in C language ends with which symbol?
- Which is latest version of C compiler?
Question list of differences
- printf() vs scanf()
- puts() vs gets()
- putc() vs getc()
- getch() vs getchar()
- #define vs #include
- entry control loop vs exit control loop
- for loop vs while loop
- if statement vs switch case statement
- int data type vs char data type
- array vs structure