0% found this document useful (0 votes)
9 views9 pages

Wa0006.

The document outlines a structured curriculum for a C programming course, divided into five units, each containing numerous chapters and topics. It includes a variety of questions and exercises related to C programming concepts such as variables, operators, arrays, functions, pointers, structures, file handling, and dynamic memory allocation. The document serves as a comprehensive guide for students to learn and practice C programming.

Uploaded by

akileshkarthick4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views9 pages

Wa0006.

The document outlines a structured curriculum for a C programming course, divided into five units, each containing numerous chapters and topics. It includes a variety of questions and exercises related to C programming concepts such as variables, operators, arrays, functions, pointers, structures, file handling, and dynamic memory allocation. The document serves as a comprehensive guide for students to learn and practice C programming.

Uploaded by

akileshkarthick4
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

UNIT CHAPTER

UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1
UNIT 1 CHAPTER 1

UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1
UNIT 2 CHAPTER 1

UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1
UNIT 3 CHAPTER 1

UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1
UNIT 4 CHAPTER 1

UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
UNIT 5 CHAPTER 1
QUESTIONS
Write a short notes on keywords in C language.
Define variables.
How to declare and give an initial value to the variable.
Difference between local and global variables.
Define operator and List out the types of an operators.
What is an operator and operand?
What is a Constant?
Difference between while and do while statements.
What is the use of preprocessor directive?
List down the Primary Data Types in C.
What are Ternary operators or Conditional operators?
Draw the structure of C program.
What is associativity and why is in important?
What is the difference between the statements of a=5 and a==5 in C?
Write the general form of switch case statement.
What is the purpose of format specifier in I/O satement
Draw the structure of the C program and explain each part in detail.(7)
Write a c program to find roots of quadratic equations.(6)
Explain the looping statements in C with suitable examples.
Explain about else if and nested if statements in C with suitable examples.
Explain the different types of operators used in C with an example.
Write a C program to find the largest among three numbers. (7)
Write a C program to find the sum of n numbers. (6)
Explain enumeration constants with an example program. (7)
Discuss pre-processor directives with example program. (6)
Explain switch case statement with an example program
Explain the decision making statements in C with suitable examples.
Explain the Conditional statements in C with suitable examples.

what is an array? What are different types of arrays used in C?


Write down the difference between variables and arrays.
Write down the syntax and give an example for array declaration.
Write any two strings handling functions in C with their syntax and purpose.
How to declare and give an initial value to the string variable.
List out some String functions.
Define string variable.
Write the syntax and example for strcat function.
What is Linear Search?
What is binary Search?
What is the difference between ‘\0’ and 0?
How does the C language handle the values in an array internally?
Sort the following elements using selection sort concept 23,54,67,13,5.
How to identify the length of a string?
What will be the value of x for the following string operation in C? x=strcmp('hello","welcome");
What is an array? Discuss how to initialize a one dimensional and two dimensional array with suitable example?
Write a C program for sorting the list of datas in an array using selection sort.
Explain in detail about string and list the various string operations with examples.
Write a C program to find whether the given string is palindrome or not using with built-in function
Write a C program to find the addition of two matrices.
Wrrite and explain the procedure for selection sort with an example.
Explain binary search with procedure . How to search the key 12 in the array list 2, 5, 8, 12, 16, 23, 38, 56, 72, 91
What is string? Explain about declaration and initialization of string in ‘C’. How strings are displayed with different formats? E
Write a C program to find the Multiplication of two matrices.
Write a C program to search an element in a given array using linear and binary search.
Write a C program to find whether the given string is palindrome or not without using built-in function.

What is the function prototype? Give an example.


What are actual and formal arguments?
List out some math functions used in C.
Write the difference between user defined and built in functions.
What is a recursive function?
Write the difference between variable, pointer and pointer to pointer variable.
What is the relation between the operators * and & in C?
Define pointer. How to declare and give an initial value to the pointer.
Why we using main() function in ’C’ program?
What is the use of ‘return’ Keyword?
What are the steps are involved to writing a user defined function in a C program?
Why addition of two pointers is impossible?
Why is the return statement not necessary when function is called by reference?
What will be the output of following code?int fun(int *a,int *b){ *a = *a+*b; *b = *a-*b; *a = *a-*b;}main(){ int x = 10,y
Explain about pointers and write the use of pointers in arrays with suitable examples.
What is recursion? Write a C program to find the factorial of a given number.
Write a c program to design the scientific calculator using built in functions.
What is a function in C? Explain what are the steps are involved to writing a function in a C program with Example.
Classify the function prototypes with suitable examples.
Explain the concept of call by value and call by reference with an suitable example

Define Dynamic memory allocation.


List down the various functions in Dynamic memory allocation.
Define structure and write the general form.
Define self – referential data structure.
What are the key differences between structure and union.
How to call the structure elements in C
write the difference between structure and pointer structure .
Define Union and write the general form.
Define nested structure
what is linked list. Draw the structure of node.
Illustrate nested structure with an example.
In C language can we allocate memory dynamically?how?
What are the storage classes used in C?
Explain about Dynamic memory allocation.
Explain about Pointer Structures with an example.
Explain in detail about Array of Structures with an example
Explain about Nested Structures with an example.
Write a C program to print the employee salary details using array of structure.
Explain nested structure and self-referential structure with an example.
Explain in detail about a union and write a C program to print the students details using union.
Explain in detail about an array of structure and write a C program to print the employee salary details using structure.
Define a structure. Describe how to declare and initialize structure and its members with an example.
Explain in detail about singly linked lists and its operations with a neat diagram.

Name any two functions in random accessing files and specify their use in C
Write the purpose of argv and argc command line arguments.
What is sequential access and random access?
What is file and how to declare file in C.
What is the use of fread() and fwrite() functions in file processing.
What is the use of fseek() ,frewind() and ftell() functions in file processing.
What are the modes used while reading and writing the file?
Give the syntax for Opening a Text File in C.
List some of C File Handling Operations.
How to Read and Write a Text File in C?
Distinguish between text mode and binary mode operation of a file.
What is the typedef function in C?
How sequential accessing files are done in C language explain in detail.(7)
Write a c program to Finding average of numbers stored in sequential access file.(6)
Describe command line arguments with an example.
List down the modes in which a C file can be opened. Specify the purpose of each mode.
Explain about the fopen (), fclose(), feof(), fprintf(), fscanf(), fseek() and rewind() functions.
Write a C program for Design a contact book using random access files.
How does random accessing files are done in C languages explain in detail.
Severity Blooms Co Po Answer Marks
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 13
Medium NIL
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL
Medium NIL 13
Medium NIL
Medium NIL 13
Medium NIL 15
Medium NIL 15

Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 15
Medium NIL 15
Medium NIL 15
Medium NIL 15

Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 15
Medium NIL 15

Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 15
Medium NIL 15
Medium NIL 15

Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 2
Medium NIL 13

Medium NIL 13
Medium NIL 13
Medium NIL 13
Medium NIL 15
Medium NIL 15

You might also like