True or False with proper Reasons. 1. In ‘C’ program, Modulas operator (%) works with float variable. 2. It necessary to write default clause after the last case clause in Switch statement. 3. The values that are passed while calling a function are called formal parameters 4. Writing for(;;); in a statement of ‘C’ program would generate an infinite loop. 5. No =+ 2; is a valid statement in ‘C’ program. 6. The precedence of logical operators are higher that relational operators. 7. Array index can have negative value.
[7 marks]Do as Directed in reference to Clanguage. 1. Size of float is ______ bytes. 2. “\t” is used for ______ and “\b” is used for _____. 3. What do yoSu mean by lifetime of a variable? 4. ______ is used for writing multiline comment. 5. Find minimum of 2 numbers using ternary operator. 6. What does the header file consists of? 7. The associativity of && is _____ to ______.
[7 marks]What is an operator? What are the types of operators? Explain any 2 types of operators in detail.
[7 marks]Explain formatted input and output function with proper example.
[7 marks]What are tokens? Explain different classes of tokens.
[7 marks]What is a flowchart? State the standard guidelines and standard symbols for drawing a flowchart.
[7 marks]Explain Entry Control & Exit Control loop in details with syntax, use and example
[7 marks]Explain structure of “C” program.
[7 marks]Explain different decision making statements of Cwith examples.
[7 marks]What is function prototype, function definition and function call? – explain with an example.
[7 marks]Write a program in C Language to read two, 3x3 matrices and find sum of the matrices.
[7 marks]Explain four storage classes of Clanguage.
[7 marks]Write a program in C Language to find sum of digits of any given number. Page 1 of
[2 marks]What is an Array? How it differs from ordinary variables? How to initialize 1- Darray and 2-Darray? Write a program which find odd maximum number from 1-D Integer array.
[7 marks]Write a program in C Language to check whether a string is palindrome or not. (Apalindrome is a word which reads the same backward and forward. E.g. madam, dad.)
[7 marks]Explain following functions. (1) strcmp( ) (2) strlen( ) (3) strrev( ) (4) strcat( ) (5) strcpy( )
[7 marks]Write a program to display the following output using C Language. A B C D E F G H I J Page 2 of
[2 marks]