76. What would be the output of the following C program
#include<stdio.h>
main()
{
int I,x=1,y=1,z=0;
printf(“%d %d”,x,y);
for(I=0;I<3;I++)
{
x+y=z;
printf(“%d”,z);
x=y;
y=z;
}
}
(A) 1 1 2 3 5 (B) 1 1 1 1 1
(C) 1 1 0 0 0 (D) Syntax Error
Answer: D
77
Let V1={A,B,C} and V2={P,Q}, then the graph below is a:
Answer
C. Bipartite Graph
78
Natural objects can be realistically modeled using:
Answer
B. Fractal Geometry
79
Not a storage placement strategy for an incoming program/data:
Answer
B. Average Fit
80
An attribute or set of attributes within one relation that matches the candidate key of some(possibly the same) relation:
Answer
D. Foreign key
81
A subset of data in a data warehouse in the form of summary data, related to a particular department or business function:
Answer
C. Data Marts
82
In an IP packet, header checksum computes:
Answer
A. 1’s complement sum of 16 bit words in the header without data field
83
A TCP server must prepare to accept a connection attempt from a TCP client by calling the function:
Answer
calling listen() and then calling accept()
84
Not a Bernstein’s condition for two processes P1 and P2 executing in parallel on input set I1 and I2, producing output set 01 and 02 respectively.
Answer
D. I1ÇI2=F
85
The normalization of 1NF relations to 2NF involves:
Answer
A. Removal of partial dependencies
86
The technique used for dimensionality reduction of original data:
Answer
C. Both (A) and (B)
87
The technique used for producing color displays with random scan CRT monitors:
Answer
A. Beam Penetration
Explanation:
Beam Penetration Method
Random scan monitors use Beam penetration method to display colour. It can display only four colours i.e. Red, Green, Orange and Yellow.
Shadow Mask Method
Raster scan monitors use Shadow mask method to display colour. It can display Millions of colours.
88
An objective measure of pattern interestingness in data mining:
Answer
C. Both (A) and (B)
89
DHCP stands for:
Answer
A. Dynamic Host Configuration Protocol
90
A static member function can have access to:
Answer
B. Static members in the class
91
Hidden terminals in a wireless network may cause:
Answer
B. Collisions
92
IC 80287 is:
Answer
D. Co-processor
93
The maximum size of main memory of a computer is determined by:
Answer
B. Address Bus
94
In computer terminology, POST stands for:
Answer
C. Power On self Test
95
SaaS is a popular term in the field of:
Answer
D. Cloud Computing
96
Not an assembler directive
Answer
A. XCHG
97
In a CDMA system, a code for a certain system should have:
Answer
D. Both (A) and (B)
98
1 Kilo Bytes refers to:
Answer
B. 1024 Bytes
99
Tuple in relational algebra refers to:
Answer
A. Row
100
A ternary operator in C++
Answer
A. ?:
Discussion
Ask a doubt or share a tip.
No comments yet — start the discussion.