Sie sind auf Seite 1von 17

Sr

. Answ
Question Option1 Option2 Option3 Option4
N er
o.
01 _______ is a non-
volatile memory
chip in which data
ROM PROM EPROM ROM and PROM 1
once stored cannot
be altered by
programmer
02 The Calculations
Control Unit and
& decision Control Unit ALU RAM 2
ALU
making is done in
03 Modern magnetic
tapes use 8 bit
All of these
________code EBCDIC BCD ASCII 1
options
format for data
recording
04 Magnetic disk is a
Random None of these
________ storage Direct access Indirect access 1
access options
device
05 Which of the
CD-ROM and
following are of CD-ROM WORM Zip disk 3
WORM
type Optical Disk:
06 Collection of
Software Instructions Hardware Procedure 1
Programs is
07 File
File Allocation File Available File Allotment
FAT stands for Administration 1
Table Table Transfer
Table
08 ________ is used
by operating
system to map file
names to their
corresponding file
Directories Diary Paging File 1
attributes and file
data, and also to
provide greater
flexibility to users
in file naming
09 The OSI model
3
has ________ 5 6 7 8
layers
10 __________
terminal is a
Intelligent Dumb
graphics terminal X terminal Smart terminal 2
terminal terminal
that has a rich set
of terminals
11 The fastest
computers of
microcomputers super computer Pentium 3 mini computer 2
today`s era
is________
Which of these
keys belong to Numeric Alphanumeric All of these
null 4
QWERTY Keypad Keys options
keyboard
12 It is a powerful
desktop
They can be
Which of the computer
It is not used for used by
following is true designed to meet All of these
computer aided several 1
in regard to Work greater options
design personnel at a
station. processing
time
power, large
storage etc.
13 Rules that govern
transmission of
data over
Router Topology Prototype Protocol 4
communication
network
is__________
14 The periodic
refreshing of STATIC and None of these
STATIC DRAM 2
____________ DRAM options
RAM is required
15 A value written
into a program
instruction that
does not change Identifiers Constants Objects Operators 2
during the
execution of
program.
16 _____ contains
the addresses of
all the records
Index Subscript Array File 1
according to the
contents of the
field designed as
the record key.
17 The flowcharts
used to describe
the sequence of System Program Activity None of these
2
operations for a flowcharts flowcharts flowcharts options
particular problem
is called
18 The method of
carrying out the
instructions given Tracking and
Tracking Tracing Executing 2
in the flowchart Tracing
with some sample
data is known as
19 Language wherein
Encapsulation and Object oriented
Assembly Pascal
Abstraction of programming Cobol 2
Language language
data is done is Language
called as:
20 Language
Primarily used for
ADA C++ JAVA FORTRAN 3
internet-based
applications
21 It is complete
Process which It is process
when all desired
_________is not should be of validating
verification s All of these
true related to planned and the 4
against options
Debugging. scheduled correctness of
specifications
properly program.
are done
23 Program errors are
All of these
known as Virus Bugs Errors 2
options
________
24 File-oriented
Standard methods Database- approach and
File-oriented Object Oriented
of organizing data oriented Database- 3
approach approach
are: approach oriented
approach
25 Data
The component of
definition
data base Data
Data definition Language and None of these
management manipulation 3
Language Data options
system is Language
manipulation
________
Language
26 which of the `Thank You` `enter values of `23.56e-03` all of the above 4
following is NOT p n r`
a character
constant
27 Every C program arithmetic
char statement main () function 4
requires : operator
28 void main()
{
float
x[2][3]={{1.1,1.2,
1.3},
{2.1,2.2,2.3}}; 1.1 2.3 2.1 2.2 3

printf("%1.1f",
*(*(x+1)));
}

29 the process of
compiling and executable
Source program object code all of the above 4
running a C object code
program includes:
30 A continue
usually associated goto Else If None 4
with __________.
31 1
(int) 21.3/ (int) 4.5 5 1 0 None

32 C language came
into existence in 1971 1958 1972 1983 3
the year
33 A max width of c
variable name can 6 Char 8 Char 31 char 32 char 3
be
34 void main() { The condition in The while
Sunc will be A linker error is
while(1) printf(" while loop is loop is an 3
printed once. generated.
sunc"); } illegal infinite loop.
35 main() { printf("
Hello Hi
\n Hello"); disp(); Hello Hi still
Hi Hello Infinite no of 4
} disp() { printf(" stack overflow
times
\n Hi"); main(); }
36 main() { char ch=
'A';
11 12 22 Error 2
printf("%d%d",
sizeof(ch)
,sizeof('A')); }
37 which of the
following this = `T` *
mes = 123.56; con = `T` * `A` 3 + a = b; 4
statement is 20;
wrong
38 void main() { float
a=0.7; if(a< 0.7)
c c++ c c++ None 1
printf("c"); else
printf("c++"); }
39 Unions are union members union
union contents
different than use the same members are All of above 2
are not members
structures in that space anonymous
40 Which of the
following
statement is
correct regarding
arrays ? Array
elements are
stored in
contiguous
memory locations
none of the
The size of the i, ii and iii i only i and iii 3
above
array can be
mentioned
anywhere in the
program In an
array'arr' the
expression arr[i]
refers to the i +
1th element in the
array.
41 The output of the
following program
will be ::- main() {
int a, *ptr,b,c;
25, 25, 25 25, 55, 25 25, 55, 55 none of these 2
a=25; ptr = &a; b=
a+30; c= *ptr;
printf(" %d, %d,
%d ", a, b, c); }
42 Stack is constantly memory
element object set of integers 3
changing location
43 Consider the
program segment 10 100 1000 20 3
given below. (The
numbers represent
program line
numbers) :
1. #include
2. int y;
3. void main()
4.{
5. int x,*px,**px;
6. x = 10;
7. y = 1000;
8. px = &x;
9. ppx = &px;
10. f3(ppx);
11.
printf("%d",*px);
12.}
13.void f3(int
**pp)
14.{
15. *pp = &y;
16.
printf("%d",**pp)
;
17.}
The printf() at line
11 prints the value
:

44 A linked list can


An elementary
have member A next pointer A list All of the above 4
data item
node, which has
45 Consider the None of the
10 1000 20 3
program segment above
given below. (The
numbers represent
program line
numbers) :
1.#include
2. int y;
3. void main()
4. {
5. int
x,*px,**ppx;
6. x = 10;
7. y = 1000;
8. px = &x;
9. ppx = &px;
10. f1(px);
11.
printf("%d",*px);
12. }
13. void f1(int *p)
14. {
15. *p = 20;
16.
printf("%d",*p);
17. }
The printf() at line
11 prints the
value:

46 If there are no
element in stack
TRUE 1 FALSE 0 1
empty(s) returns
as the value
47 Interpret the b is a pointer to invalid b is a pointer b is a pointer of 1
following a function which statement to a void type int which is
statement : takes a pointer which can be a pointer to a
void(*b)(int *); to an int and typecast as a void
returns a void pointer to int
48 Consider the
following
statements.
i. stack is a LIFO
ii. stack is a FIFO only i and iii are only ii and iii are only i and iv only ii and iv are
3
true true are true true
iii. queue is a
LIFO
iv. queue is a
FIFO

49 If stack contain no
item then it is Null stack Empty stack Waste stack Stack of no use 2
called as ___
50 In doubly link list
two information
each node contain two pointer two nodes double header 2
node
______
51 has a declaration
"extern" will be
is globally
An external associated with initialized to 0
accessible by all All of the above. 4
variable it when declared if not
functions
with in a initialized.
function
52 static int x=3 , y,z;
void main() { int
a; a= x++ * ++y + 3 4 5 Garbage 2
++z; printf("%d",
a); }
53 void main() { int
k=4; switch(k) {
default :
printf("A"); case
Compilation
1: printf("B"); C D None 3
Err
case 4:
printf("C"); case
2+3 -1 :
printf("D"); }}
54 The expression The file The file ftp is not the file "sample"
4
((fpt = fopen(" "sample" doesn't "sample" could declared as a is read only.
sample","w" ))= = exist while not be created FILE pointer
NULL) would be fopen is being for writing
true if ::- executed
55 A function called
total(), totals the
sum of an integer
array passed to it
(as the first
parameter) and
returns the total of
all the elements as int total( int int total( int int total( int
None of the
an integer. Let the numbers[], int numbers[], int numbers[], int 4
above
second parameter elements ) { elements ) { elements ) {
to the function be
an integer which
contains the
number of
elements of the
array. The correct
code is
56 What does the Passing a copy Passing a pointer Choosing a A function that
term call-by-value of a variable into to a variable into random value does not return 1
refer to? a function a function for a variable any values
57 void main() { int
k=3; while(k) { int Declarations
1 Infinite loop 21 2
k=1; printf("%d", syntax err
k); k--; } }
58 Consider the
function
int my(int n)
{
if(n!=1) return (n*
my(n-1)); 20 24 16 2 2
}
Call it with my(4).
What is the return
value of this
function?
59 Suppose a, b and c
are integer
variables that have
45 56 54 65 1
been assigned the
values
a=8, b=3 and c =-
5. Determine the
value of 2 * b + 3
*(a-c)

60 What is output
void main() { int
7 8 6 None 2
n=3,a=2; a*= n+1;
printf("%d", a); }
61 You can define
Which of the An object It is easier to your own data
following are You can define oriented conceptualize types and It is
good reasons to your own data program can be an object easier to 4
use an object types taught to correct oriented conceptualize an
oriented language. its own errors program object oriented
program
62 Object-oriented
technology`s
______ feature
means that a small
change in user
Abstraction Modularity Encapsulation Modelling 3
requirements
should not require
large changes to
be made to the
system.
63 An object has All of these
State Behaviour Identity. 4
_____. options.
64 Generalizatio
What is It is same as Aggregation of All of these
n and 3
inheritance? encapsulation. information. options.
specialization.
65 Any class that
In interface
Which of the implements an
methods do not
following is not interface must Both are true. Both are false. 1
have any
false? provide the
implementation.
implementation.
66 Complex object
composing of None of these
Aggregation Assosiation Composition 1
other object is options
called_____
67 A relationship that
can be identified
between two function association link activity 2
object entities
(classes or
individuals) is
called a
___________.
68 Which of the
following
Procedural Object oriented Object based Structural
programming 1
language language language language
technique focuses
on the algorithm.
69 Memberwise There is nothing
Shallow copy is Is same like None of these
copying of like shallow 1
defined as Deep copy options
objects copy
70 To initialize
the objects of
to allocate it`s class as
The use of to initialize the
memory for the well as to None of these
constructor is objects of it`s 1
objects of it`s allocate options.
______. class.
class only memory for
the objects of
it`s class
71 IGNOMINY :
fame : heroism death : victory derelict : fool martyr : man 1
DISLOYALTY ::
72 It may be useful to
think of character
in fiction as a
function of two
________ analogous huma disparate aggran divergent typi comparable deli
3
impulses: the nize dize fy neate
impulse to
individualize and
the impulse to
__________.
73 GAZELLE :
horse : slow swan : graceful lion : roar lamb : bleat 3
SWIFT ::
74 TRAP : GAME :: novel : author net : fish leash : dog wall : house 2
75 charlatan : slavish :
Bland : Piquant :: inane : relevant terse : serious 2
genuine servile
76 LUBRICANT : eraser : reagent :
balm : pain solvent : paint 1
FRICTION :: correction chemical
77 GRACEFUL : articulate : fastidious : humorous :
servile : rebellion 1
MOVEMENT :: speech grime laughter
78 DISINTERESTE
biased violent complete humane 1
D:
79 ACCOLADE : rejection separation negligence descent 1
80 TEMERITY : foolhardiness negligence timidity care 3
81 Each of the
following could
be the number of
4 5 6 8 2
white puppies in
the shelter
EXCEPT
82 During 1985,
advertising
expensing
expenditure on
canned food
products increased
by 20 percent, Canned food Canned food
Advertising Canned opener
while canned food price decreased products were
effectiveness production 4
consumption rose relative to avaible in
increased doubled
by 25 percent. substitutes more stores
Each of the
following, if true,
could help explain
the increase in
food consumption
except
83 Typically the
entrepreneur is
seen as an
individual who
owns and operates
a small business.
But, simply to
won and operate a
small business or Someone who Entrepreneurs
An owner of a Entrepreneurs are
even a big develops an do not own
large business the main actors
business does not enterprise may and operate 2
may be an in economic
make someone an be considered an small
entrepreneur. growth.
entrepreneur. If entrepreneur. businesses.
this person is a
true entrepreneur,
then new products
are being created,
new ways of
providing services
are being
implemented.
Which of the
following
conclusion can be
best drawn from
the above passage.
84 A politician wrote
the following: "I
realize there are
shortcomings to
the questionaire
method. However,
since I send a
copy of the
the
quetionnaire to Most people
questionnaire A large, absolute
every home in the who received Most people in
method of number of replies
district, I believe the the district live 4
data is synonymous
the results are questionnaire in homes.
collection is with accuracy
quite have replied
unscientific
representative.... I
think the numbers
received are so
large that it is
quite accurate
even though the
survey is not done
scientifically"
85 Farmers in the
North have
observed that
heavy frost is
usually preceded
by a full moon. The temperature
They are must fall below Absence of a
No one has
convinced that the 10 degrees cloud cover
Farmers are proven that the
full moon Celsius (50 cools the ground 2
superstitious. moon causes
somehow degrees which causes
frost.
generates the Fahrenheit) for frost.
frost. Which of frost to occur.
the following, if
true, would
weaken the
farmers
convection?
86 The movement of Employee- Employee Employee Employee union
3
ownership by owned participation in union ownership
unions is the latest companies management ownership enables workers
step in the generally have raises morale. drives up to share in the
progression from higher salaries and profits.
management productivity. wages.
ownership to
employee
ownership.
Employee
ownership can
save depressed
and losing
companies.
All the following
statements, if true,
provide support
for the claim
above except:

87 being unhappiness
being
overweight is and unhappiness
A person hearing overweight is
always caused unattractivene necessarily leads
this advertisement the only cause of 2
by unhappiness ss can cause to being
countered, unhappiness and
and someone to be overweight
unattractiveness
unattractiveness overweight
88 Looking at a
potrait, A said
"her mother`s only
son is my cousin`s
father". My cousin
A`s
is the daughter of A`s Uncle A`s sister A`s mother 4
grandmohter
my maternal uncle
who has an only
sister. whose
potrait was "A"
looking at?
89 Which of the
following pair of
activies could be L and O M and P L and M N and O 3
done on Monday
and Tuesday?
90 In a game, exactly
Magenta, red,
six inverted cups Green, yellow, Magenta, green, Orange, yellow,
purple,
stand side by side magenta, red, purple, red, red, magenta, 3
yellow, green,
in a straight line, purple, orange orange, yellow green, purple
orange
and each has
exactly one ball
hidden under it.
The cups are
numbered
consecutively 1
through 6. Each of
the balls is painted
a single solid
color. The colors
of the balls are
green, magenta,
orange, purple,
red, and yellow.
The balls have
been hidden under
the cups in a
manner that
conforms to the
following
conditions:
The purple ball
must be hidden
under a lower-
numbered cup
than the orange
ball.
The red ball must
be hidden under a
cup immediately
adjacent to the cup
under which the
magenta ball is
hidden.
The green ball
must be hidden
under cup 5.
Which of the
following could
be the colors of
the balls under the
cups, in order
from 1 through 6?

91 If the angles of a acute Right isosceles obtuse 1


triangle ABC are
in the ratio of 3 : 5
: 7, then the
triangle is
92 0.000006 * 0.0000000000 0.000000000000
0.0000000042 0.000000000042 3
0.0000007 = ? 042 42
93 Rahul buys 16
cookies, Amit
buys 12 cookies
and Nayan buys x
cookies. The
average number of
cookies the three
35 31 30 29 4
bought is between
19 and 23,
inclusive. What is
the smallest
number of cookies
Nayan could have
bought?
94 A cylindrical
vessel of radius 4
cm contains water.
A solid sphere of
radius 3 cm is
lowered into the 9 / 2 cm 9 / 4 cm 4 / 9 cm 2 / 9 cm 2
water until it is
completely
immersed. The
water level in the
vessel will rise by
95 If a certain sum of
money becomes
double at simple
interest in 12
8 (1/3) 10 12 14 1
years, what would
be the rate of
interest per
annum?
96 Rakesh credits
15% of his salary
in fixed deposit Rs. 3500 Rs. 4500 Rs. 5000 Rs. 4000 4
account and
spends 30% of the
remainder amount
on groceries. If
the cash in hand is
Rs. 2380, what is
his salary?
97 If the price of
steak is currently
Rs.1.00 a pound
and the price
triples every 6
1 year 2 years 2 1/2 years 13 years 2
months, how long
will it be until the
price of steak is
Rs.81.00 of a
pound?
98 A,B and C play
cricket.Ratio of
A`s runs to C`s
runs and C`s runs
to B`s runs are
same as 3:2. They 162,108,72 108,72,162 72,108,162 162,72,108 4
score altogether
342 runs. The runs
A,B,C
respectively
scored were.
99 If the operation *
is defined by *a =
23 527 529 623 2
a2 - 2, then *(*5)
is
10 An old picture has
0 dimensions 33
inches by 24
inches. What one
length must be cut
2 inches 6 inches 9 inches 10 1/2 inches 2
from each
dimension so that
the ratio of the
shorter side to the
longer side is 2:3?

Das könnte Ihnen auch gefallen