The document outlines a comprehensive curriculum for learning C programming, covering fundamental concepts such as algorithms, flowcharts, data types, operators, control structures, functions, arrays, and strings. Each unit includes definitions, explanations, and example programs to illustrate the concepts. The curriculum emphasizes practical programming skills through various coding exercises and examples.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
35 views5 pages
PPS-I Important Questions
The document outlines a comprehensive curriculum for learning C programming, covering fundamental concepts such as algorithms, flowcharts, data types, operators, control structures, functions, arrays, and strings. Each unit includes definitions, explanations, and example programs to illustrate the concepts. The curriculum emphasizes practical programming skills through various coding exercises and examples.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5
UNIT-I
1. Define Algorithm. Explain Properties/characteristics of Algorithm
and write an Algorithm for Even or Odd? 2. Define Flowchart. Explain the flowchart with one example flowchart. 3. Explain all the Features of C Language. 4. Explain Structure of C program with example. 5. Explain the Following: i) Keywords ii) Identifiers iii) Constants 6. Define Variable and Explain Rules to create a Variable with Example Declarations. 7. Define Number System. Perform the following conversions: i)(111000)2—( )10 ii) (213)8---( )16 iii) (1AF)16—( )8 iv)(123)10---( )2 8. Define Data types and Explain types of Datatypes? 9. Explain all Input/Output statements with an Example C Program. 10. Define Pseudocode and write pseudocode for roots of Quadratic Equation. UNIT-II 1. Define Operator. Explain all types of Operators in Detail with Example Program. (arithmetic, relational, logical, assignment, Increment and Decrement, Conditional, Bitwise, special operators) 2. Difference Between Increment and Decrement operator with Example Program. 3. Define Precedence and Associativity with an Example. 4. solve ++a-b--*c-d where a=2, b=4, c=1, d=3 5. Define Type Conversion and Explain its Types. UNIT-3 1. Define and Explain the following with Example Program: i) if ii) if-else iii) Nested if-else iv) else if v) switch 2. Define and Explain the following with example program: i) For ii) While iii) Do-while 3. Write a C Program to find the character is vowel or consonant using switch case. 4. Write a C program to check the given number is polindrome number or not. 5. Write a C program to check the given number is Armstrong number or not. 6. Write a C program to find the factorial of a given number. 7. Write a C program to find Fibonacci series of n terms. 8. Compare and contrast while and Do-while. 9. Explain Nested For Loop with an Example program to find n Multiplication of Tables. 10. Write a C program to find the biggest of 3 numbers. 11. Write a C program to check the given number is strong number or not. 12. Write a C program to check the given number is perfect number or not. 13. Write a C program to check the first and last digit of a given number. 14. Write a C program to find the roots of Quadratic Equation. UNIT-IV 1. Define Function and Explain how many ways to declare a Function. 2. Define Function and Explain Types of Functions based on Parameters and Return Values. 3. Define Parameter and Explain Parameter passing Techniques. 4. Explain about Inter Function Communication. 5.Explain Recursion with an example. 6. Write a C program to find the factorial of a number using Recursion. 7. Write a C program to find the Fibonacci series of n terms using Recursion. 8. Write a C program to find GCD of 2 numbers using Recursion. 9. Define Storage class and Explain types of storage class with an Example program. 10. Explain the Following: i) return ii)exit() 11. Write a C program to find the sum, difference, product, division of a number using Functions. 12. Write a C program to find the sum of its digits using Function. UNIT-5 1. Define an array and Explain types of arrays with initialization. 2. Explain the concept of Passing array as Argument to function. 3. Write a C program to find addition of matrices.. 4. Write a C program to find Multiplication of matrices. 5. Write a C program to find Transpose of matrix. 6. Write a C program to find max and min element in array elements. 7. Define String and Explain how many types to declare strings. 8. Explain String I/O Functions. 9. Explain all String Handling/manipulation/built-in Functions. 10. Write a C program to find the given string is palindrome or not. 11. Write a C program to copy one string to another without using String Function. 12. Write a C program to concatenate two strings without using String Function. 13. Write a C program to reverse a string without using String Function. 14. Write a C program to compare one string to another without using String Function.