CCP Assigmnt Question
CCP Assigmnt Question
CCP Assigmnt Question
I.A. Marks
: 25
Hours/Week : 06
Exam Hours: 03
Total Hours : 62
UNIT 1
INTRODUCTION TO COMPUTER SYSTEMS, INTERACTING WITH THE COMPUTER,
COMPUTER ORGANIZATION
5.
What is microprocessor?
6.
7.
What is a compiler?
UNIT 2
STORAGE DEVICE CONCEPTS, OPERATING SYSTEMS, NETWORKING
1. Mention the storage devices used in a personal computer?
2.
3.
What is the need for secondary storage? Briefly describe secondary storage devices like
(i)Floppy disk (ii) hard disk (iii) CD ROM
Explain operating system ?what are different type of OS and its functions?
9.
(ii)
UNIT 3
FUNDAMENTALS OF PROBLEM SOLVING, INTRODUCTION TO C LANGUAGE
1. What is a program?
2. Explain the structure of C program with an example.
3. Explain unformatted input output functions.
4.
5. Explain
i. Constants
ii. Variables
iii. Keywords
6.
7.
UNIT 4
STRUCTURE OF A C PROGRAM
1. Write the expresion in C language and evaluate the arithmetic expression.
i. 2ab++/a+b*(c/a)
ii. (a>b+c+a<c)++/a*b
where a=1,b=2,c=3.
What are statements? Explain different types of statements. How do u terminate the
stamen?
conditional operators
size of operator
UNIT 5
FUNCTIONS
1. what is a function in C? Explain its syntax?
2. Explain Calling function and called function.
3. What are the library functions? What are the advantages and disadvantages of library
functions?
4. Explain Math functions and Random numbers.
5.
10. Write a program to find the maximum of two numbers using user defined Functions?
11. Write a C program for linear search using user defined functions?
12. Write a program to reverse a number and check for palindrome using user defined
functions?
13. Write a C program for matrix multiplication using user defined functions?
UNIT 6
SELECTION MAKING DECISIONS, REPETITION
1. Explain the different types of IF statements.
2. Explain the unconditional branch statements.
3. Explain the difference between Entry loop and Exit loop.
4.
7.
Explain while loop structure with an example write the flow chart .
UNIT 7
ARRAYS AND STRINGS
1. What is an array? How are they declared in C? What are the rules to be followed while
using arrays?
2.
3.
4. Give the syntax and explain the semantics of formatted i/p and o/p statements for array.
5. a and b are two integers arrays each with n elements. Write a program to find the array c
such that c[i]=a[i]+b[n-1-i]
6.
Write a function to concatenate two strings, write a program to read three Strings and use
the function to concatenate them and print it.
7. Give any five string manipulation library functions, with an example each.
8. With an example getch() and putchar() functions.
9. Write a program for matrix multiplication of matrix order M*N.
UNIT 8
BASIC CONCEPTS OF PARALLEL PROGRAMMING