subject_title
stringclasses 2
values | time
stringclasses 1
value | subject_code
stringclasses 2
values | maximum_marks
float64 100
100
β | section
stringclasses 3
values | question
stringlengths 2
160
| marks
int64 1
5
|
---|---|---|---|---|---|---|
null | null | null | null | null | Discuss the various types of sorting algorithms. | 5 |
null | null | null | null | null | Explain how to implement a queue using an array. | 5 |
null | null | null | null | null | What is the purpose of a destructor in C? | 5 |
null | null | null | null | null | How do you perform file operations in C? | 5 |
null | null | null | null | null | What are the advantages of using pointers? | 5 |
null | null | null | null | null | Discuss the concept of a dynamic stack. | 5 |
null | null | null | null | null | How is string concatenation achieved in C? | 5 |
null | null | null | null | null | What is the role of the 'break' statement in loops? | 5 |
null | null | null | null | null | Write a program to sort an array using the bubble sort algorithm. | 5 |
PROGRAMMING IN C | 3 hours | CS101 | 100 | PART β A | What is the output of printf("%d", 5 + 2);? | 1 |
null | null | null | null | null | How do you define a constant variable in C? | 1 |
null | null | null | null | null | What does the 'return' statement do? | 1 |
null | null | null | null | null | What is a preprocessor directive? | 1 |
null | null | null | null | null | How can you comment code in C? | 1 |
null | null | null | null | null | What is the purpose of the 'break' statement? | 1 |
null | null | null | null | null | Define a local variable. | 1 |
null | null | null | null | null | Explain the concept of dynamic memory allocation. | 1 |
null | null | null | null | null | What is an inline function? | 1 |
null | null | null | null | null | How is a multi-dimensional array declared? | 1 |
null | null | null | null | PART β B | What is the difference between a function declaration and a function definition? | 3 |
null | null | null | null | null | Explain the concept of a linked list. | 3 |
null | null | null | null | null | How do you read data from a file in C? | 3 |
null | null | null | null | null | What are command line arguments? | 3 |
null | null | null | null | null | Explain the use of 'malloc' and 'free'. | 3 |
null | null | null | null | PART β C | How is memory managed in C? | 5 |
null | null | null | null | null | Discuss the use of recursive functions with examples. | 5 |
null | null | null | null | null | Explain how to implement a binary search algorithm. | 5 |
null | null | null | null | null | What is a hash table, and how is it implemented in C? | 5 |
null | null | null | null | null | What is the purpose of the 'sizeof' operator? | 5 |
null | null | null | null | null | Discuss the concepts of forward and backward declarations. | 5 |
null | null | null | null | null | Explain how to use the 'enum' keyword. | 5 |
null | null | null | null | null | What are the different types of loops in C? | 5 |
null | null | null | null | null | Explain the concept of a binary tree. | 5 |
null | null | null | null | null | Write a program to check if a number is prime. | 5 |
PROGRAMMING IN C | 3 hours | CS101 | 100 | PART β A | What is an identifier in C? | 1 |
null | null | null | null | null | Define the term 'function' in C. | 1 |
null | null | null | null | null | What is a macro? | 1 |
null | null | null | null | null | What is the output of 'sizeof(char)'? | 1 |
null | null | null | null | null | How do you declare a constant? | 1 |
null | null | null | null | null | What is the difference between '++a' and 'a++'? | 1 |
null | null | null | null | null | Explain the significance of the 'extern' keyword. | 1 |
null | null | null | null | null | What are logical operators in C? | 1 |
null | null | null | null | null | What is the purpose of the 'continue' statement? | 1 |
null | null | null | null | null | Define a global variable. | 1 |
null | null | null | null | PART β B | What is the purpose of the 'switch' statement? | 3 |
null | null | null | null | null | Explain how to create a file in C. | 3 |
null | null | null | null | null | What is a binary search tree? | 3 |
null | null | null | null | null | How do you handle errors using 'errno'? | 3 |
null | null | null | null | null | Discuss the importance of modular programming. | 3 |
null | null | null | null | PART β C | What is the purpose of the 'assert' function? | 5 |
null | null | null | null | null | Explain the use of the 'volatile' keyword. | 5 |
null | null | null | null | null | How is an abstract data type defined in C? | 5 |
null | null | null | null | null | Discuss how to implement a queue using linked lists. | 5 |
null | null | null | null | null | Explain how to create a simple calculator using functions. | 5 |
null | null | null | null | null | What is the role of the 'return' statement? | 5 |
null | null | null | null | null | Describe the different types of loops in C. | 5 |
null | null | null | null | null | What is the purpose of the 'static' storage class? | 5 |
null | null | null | null | null | Explain how to perform string manipulation in C. | 5 |
null | null | null | null | null | Write a program to count vowels in a string. | 5 |
PROGRAMMING IN C | 3 hours | CS101 | 100 | PART β A | What is a function pointer? | 1 |
null | null | null | null | null | Define a dynamic array. | 1 |
null | null | null | null | null | What is a prototype in C? | 1 |
null | null | null | null | null | How do you allocate memory dynamically? | 1 |
null | null | null | null | null | What is the purpose of the 'include' directive? | 1 |
null | null | null | null | null | Explain the difference between 'struct' and 'class'. | 1 |
null | null | null | null | null | What does 'extern' mean? | 1 |
null | null | null | null | null | What is an inline function? | 1 |
null | null | null | null | null | What is the syntax for a switch case? | 1 |
null | null | null | null | null | How do you use the 'sizeof' operator? | 1 |
null | null | null | null | PART β B | Explain how to pass an array to a function. | 3 |
null | null | null | null | null | What is the difference between 'malloc' and 'calloc'? | 3 |
null | null | null | null | null | Describe the use of the 'enum' keyword. | 3 |
null | null | null | null | null | How do you handle file I/O in C? | 3 |
null | null | null | null | null | Explain the importance of header files. | 3 |
null | null | null | null | PART β C | What is the purpose of the 'const' keyword? | 5 |
null | null | null | null | null | Discuss the importance of memory management. | 5 |
null | null | null | null | null | Explain how to implement a circular queue. | 5 |
null | null | null | null | null | What is the difference between a shallow copy and a deep copy? | 5 |
null | null | null | null | null | What is the significance of the 'return' statement in functions? | 5 |
null | null | null | null | null | Explain how to use the 'strncpy' function. | 5 |
null | null | null | null | null | Describe how to create a linked list. | 5 |
null | null | null | null | null | What is the purpose of the 'volatile' keyword? | 5 |
null | null | null | null | null | Explain the role of the 'break' statement in loops. | 5 |
null | null | null | null | null | Write a program to swap two numbers using pointers. | 5 |