Jobs in India
Search Jobs
Search Jobs
Advertisements

Placement Paper Tech Prep 22 May 2012 by CDAC

Details of Placement Paper Tech Prep 22 May 2012 by CDAC conducted by CDAC for job interview.
Advertisements
C-DAC Latest Placement Papers

1.The programming language that was designed for specifying algorithm.....
Address
ASCII
ALGOL
None of these options

2. _____ contains the addresses of all the records according to the contents of the field designed as the record key.Index

ans Subscript Array File

3. _________ symbol is used for Processing of data. Oval Parallelogram

ans Rectangle Diamond

4. __________ is the analysis tool used for planning program logic Protocol None of these options PROLOG

Pseudocode

5. Machine language has two part format the first part is__________ and the second part is __________ OPCODE,OPERAND

ans OPERAND,OPCODE DATA CODE,OPERAND OPERAND,CODEOP

6. Language Primarily used for internet-based applications ADA C++ JAVA

ans FORTRAN

7. _________ is a point at which the debugger stops during program execution and awaits a further command. Memory Dump Watch point

ans Break point None of these options

8. ________do not contain any program logic and are ignored by the language

Processor

Protocol

Virus Comment

None of these

9. The component of data base management system is ________

Data definition Language

Data manipulation Language

Data definition Language

Data manipulation Language

None of these

10. The quality of Algorithm is judged on the basis of_________

Time requirement

Memory Requirement

Accuracy of solution

All of these-ans

11. Advantages of using flow charts is

Effective Analysis

Efficient Coding

Time consuming

Effective Analysis

Efficient Coding

ans Programming in C

12. The Real constants in C can be expressed in which of the following forms Fractional form only Exponential form only ASCII form only

ans Both Fractional and Exponential forms

13. The program, which translates high-level program into its equivalent machine language program, is called Transformer Language processor Converter

None of these options

14. Consider the following statements.

i.Multiplication associates left to right

ii.Division associates left to right

iii.Unary Minus associates right to left

iv.subtraction associates left to right

All are true

ans only i and ii are true all are false only iii and iv are true

15. What will be the value of variable a in the following code? unsigned char a; a = 0xFF + 1; printf("%d", a); 0xFF 0100 0

ans 00

16. What is the output of the following program? #include
void main()
{
printf(n10!=9 : %5d,10!=9);
}
ans 0 Error None of these options

17. #include
void main()
{
int x=10;
(x
void main()
{
int a=14;
a += 7;
a -= 5;
a *= 7;
printf(n%d,a);
}
ans 98 89 None of these options

20. What is the output of the following code? #include
#define T t
void main()
{
char T = `T`;
printf(n%ct%cn,T,t);
}
Error
T t
T T
t t

21. The statement that prints out the character set from A-Z, is
for( a = `z`; a < `a`; a = a 1) printf("%c", &a); for( a = `a`; a