Firstranker's choice
10CCP13/23
--- Content provided by FirstRanker.com ---
Second Semester B.E. Degree Examination, June/July 2019
Computer Concepts of 'C' Programming
Time: 3 hrs.
Max. Marks:100
Note: Answer any FIVE full questions, choosing at least TWO from each part.
--- Content provided by FirstRanker.com ---
PART - A
-
- Choose the correct answers for the following : (04 Marks)
- Which of the following is not a multiuser computer
- PC
- Minicomputer
- Mainframe
- Super Computer
--- Content provided by FirstRanker.com ---
- Transistor invention falls under the generation
- First
- Second
- Third
- None of above
--- Content provided by FirstRanker.com ---
- Which of the following is non-impact printer
- Dot Matrix
- Dairy Wheel
- Laser Printer
- Line Printer
--- Content provided by FirstRanker.com ---
- Binary equivalent of 2B is
- 0010 1011
- 0011 1010
- 0001 1011
- 0100 1011
--- Content provided by FirstRanker.com ---
- Which of the following is not a multiuser computer
- What is cache memory? How its presence affects the speed of processing. (06 Marks)
- What is firmware? How is it different from s/w? Give suitable example. (04 Marks)
- What are the different types of key boards? Briefly explain its working. (06 Marks)
--- Content provided by FirstRanker.com ---
- Choose the correct answers for the following : (04 Marks)
-
- Choose the correct answers for the following : (04 Marks)
- Identify the odd term among the following :
- Coaxial Cable
- Optical Fibre
- Twisted Pair
- Micro Wave
--- Content provided by FirstRanker.com ---
- Hard disk can serve as
- Input Media
- Output Media
- Storage
- All of Above
--- Content provided by FirstRanker.com ---
- Which of the following is used to manage hardware, input and output operation
- Operating System
- Compiler
- DBMS
- Command interpreter
--- Content provided by FirstRanker.com ---
- Which of not an application software
- Word processor
- Spread sheet
- UNIX
- Disk top publisher
--- Content provided by FirstRanker.com ---
- Identify the odd term among the following :
- Describe the major difference between a time sharing and client /server environments. (06 Marks)
- Explain the memory management functions of O.S. (06 Marks)
- What is computer network? Mention the layers of OSI — model. (04 Marks)
--- Content provided by FirstRanker.com ---
- Choose the correct answers for the following : (04 Marks)
-
- Choose the correct answers for the following : (04 Marks)
- Which of the following improvers the quality of software
- Understandability
- Completeness
- Consistency
- All of above
--- Content provided by FirstRanker.com ---
- In which phase of software development source code is converted into object code.
- Compilation
- Linking
- Testing
- Integration
--- Content provided by FirstRanker.com ---
- Oval sign on a flow chart indicates.
- End
- Start
- Both A and B
- None of above
--- Content provided by FirstRanker.com ---
- Which of the following is not a key word in 'C'
- int
- char
- while
- sqr
--- Content provided by FirstRanker.com ---
- Which of the following improvers the quality of software
- List the steps involved in problem solving on computers. Briefly explain them. (08 Marks)
- Draw a flow chart to find largest of 3 numbers. (04 Marks)
- What are identifiers? Give the rules in forming identifiers. (04 Marks)
--- Content provided by FirstRanker.com ---
- Choose the correct answers for the following : (04 Marks)
-
- Choose the correct answers for the following : (04 Marks)
- What is the value of term in the statement
term = 1/k;
if term is float and k is int data type- 0.5
- 0.0
- 1.0
- 0.1
--- Content provided by FirstRanker.com ---
- If 'x' is variable of type int, the value returned by
sizeof (x)
is- 1
- 2
- 8
- 4
--- Content provided by FirstRanker.com ---
- Break statement transfers the control
- Out of block
- Out of function
- Out of program
- None of above
--- Content provided by FirstRanker.com ---
- If i = 1, then the output of
printf("%d", i++);
is- 1
- 2
- 0
- none of above
--- Content provided by FirstRanker.com ---
- What is the value of term in the statement
- Write a program to print roots of quadratic equation. (08 Marks)
- Explain ternary operator, with a sample code segment. (04 Marks)
- Convert the following into 'C' equivalent. (04 Marks)
- (Ax+y)/P2
- (a+b)/(a - b)
--- Content provided by FirstRanker.com ---
- Choose the correct answers for the following : (04 Marks)
PART - B
-
- Choose the correct answers for the following : (04 Marks)
- The arguments in the function call are called
- Formal parameters
- Actual parameters
- Variables
- None of above
--- Content provided by FirstRanker.com ---
- Functions in 'C' should have at least
- No argument
- One argument
- Two arguments
- None of above
--- Content provided by FirstRanker.com ---
printf()
function is in built-in header filestdlib.h
stdio.h
conio.h
math.h
--- Content provided by FirstRanker.com ---
- Global variables are accessed to
- Only
main()
- All the function
- All function except
main()
- None of above
--- Content provided by FirstRanker.com ---
- Only
- The arguments in the function call are called
- Distinguish between the following : (12 Marks)
- Actual and formal parameters
- Global and local variables
- Automatic and static storage class
- Write a program using functions to find the product of two numbers. (04 Marks)
--- Content provided by FirstRanker.com ---
--- Content provided by FirstRanker.com ---
- Choose the correct answers for the following : (04 Marks)
-
- Choose the correct answers for the following : (04 Marks)
- Which of the following 'C' statement branches unconditionally from one point to another point
- if
- switch
- goto
- while
--- Content provided by FirstRanker.com ---
- The statement in 'C' which skips the remaining statements and proceeds with next iteration is
- Break
- Continue
- exit()
- None of above
--- Content provided by FirstRanker.com ---
- Which of the following control structure uses case label
- while
- for
- if-else
- switch()
--- Content provided by FirstRanker.com ---
- Recursive function will have
- Call to itself
- Terminating condition
- An argument
- All of above
--- Content provided by FirstRanker.com ---
- Which of the following 'C' statement branches unconditionally from one point to another point
- List the different if statements, write 'C' program to illustrate any two if statements. (08 Marks)
- Differentiate between do-while loop and for-loop structure. (04 Marks)
- Write a program in 'C' to find factorial of 'n' number using recursion. (04 Marks)
--- Content provided by FirstRanker.com ---
- Choose the correct answers for the following : (04 Marks)
-
- Choose the correct answers for the following : (04 Marks)
- Subscripted variables are called as
- Identifier
- structure
- Array
- Array of structure
--- Content provided by FirstRanker.com ---
- Array name can also be used as
- Pointer variable
- Base address
- Variable
- Constant
--- Content provided by FirstRanker.com ---
- A string can be a array of
- Alphabets
- Special characters
- Digits
- All of above
--- Content provided by FirstRanker.com ---
- End of string is marked with character
- \n
- \0
- \b
- \s
--- Content provided by FirstRanker.com ---
- Subscripted variables are called as
- Illustrate with a example how the integer elements of one dimensional array is stored, if base address is 2000. (06 Marks)
- Explain with an example to declare and initialize a string. (04 Marks)
- Given array of n elements, find the largest element. Write code for this. (06 Marks)
--- Content provided by FirstRanker.com ---
- Choose the correct answers for the following : (04 Marks)
-
- Choose the correct answers for the following : (04 Marks)
- Parallelism means
- Having multiprocessors
- Dual core processor
- Concurrently executing instruction on a single cpu
- All of above
--- Content provided by FirstRanker.com ---
- Open MP is an
- Operating system
- Framework
- API
- None of above
--- Content provided by FirstRanker.com ---
- Which of the following is not an openMP variable
- OMP_DYNAMIC
- OMP_Nested
- OMP_get_Nested
- OMP_NUM_THREADS
--- Content provided by FirstRanker.com ---
- Important application of parallel computing
- Scientific application
- Weather forecasting
- Analyzing biological sequences
- All of above
--- Content provided by FirstRanker.com ---
- Parallelism means
- Briefly explain the scope of parallel computing. (06 Marks)
- Write a program using openMP to generate prime number using the method sieve of eratosthenes. (08 Marks)
- List any four openMP library functions. (02 Marks)
--- Content provided by FirstRanker.com ---
- Choose the correct answers for the following : (04 Marks)
--- Content provided by FirstRanker.com ---
This download link is referred from the post: VTU B.Tech 1st Year Last 10 Years 2011-2021 Question Papers