Draw neat Block Diagram illustrating the Anatomy of a Computer System.
[3 marks]Illustrate an Algorithm to check whether the given year is leap year or not.
[4 marks]Define Flow chart, List the rules for designing a Flow chart and Rephrase the merits and demerits of flow chart.
[7 marks]List the rules to assign a name to an Identifier (Variable)
[3 marks]Illustrate the basic structure of a C Programs and highlight usual sections of main function.
[4 marks]Construct a Cprogram which receives number of days as input and converts them in to Year, Months and Days,
[7 marks]Construct a Cprogram to swap the values of two integers with use of only two variables.
[7 marks]Contrast the Entry Control loop and Exit Control loop.
[3 marks]Construct a Cprogram to find the largest number amongst three integers entered.
[4 marks]Construct a Cprogram to check if entered integer is a prime number or note.
[7 marks]Debug the following codes and show the output for this: For ( i=0 ; i<=50 ; i++ ); { printf( “\n %d” , i ) } *consider header files and declaration of variable is done.
[3 marks]Explain nested if-else statement with suitable example.
[4 marks]Construct a Cprogram to print following pattern1 11 12 13 14 15…..1
[7 marks]List the types of Array.
[3 marks]Summarize the methods for initialization of One-Dimensional array.
[4 marks]Construct a Cprogram to multiply 3X3 matrix.
[7 marks]List the application of gets getchar and puts functions.
[3 marks]Summarize the method for Declaration, initialization and Printing on screen of a String.
[4 marks]Define a Structures which contains details of a Cricketer: • Name of Player: • Team name: • Total run scored: • Batting average:
[7 marks]Write True / False against following statements: 1) Pointer is a variable which holds address of location where value of other variable is stored. 2) Pointer holds the address in form of float or integer. 3) The address of a variable can be stored in two or more pointers.
[3 marks]List the categories of User Defined Functions and Discuss any one of these.
[4 marks]Construct a Cprogram which used a user define function that receives an integer and returns square and cube of it and prints in main function.
[7 marks]What are the arithmetic operators that are permitted on pointers?
[3 marks]Show the use of Malloc, Calloc, Free and Realloc in context of Dynamic memory allocation.
[4 marks]List and discuss file handling functions used in C.
[7 marks]