Você está na página 1de 17

Sr.

No
.

Question

Option1

Option2

Option3

Option4

Answ
er

01 _______
computers perform
the complex
processing by
Analog
directly measuring
the discrete
physical quantities.

Digital

Hybrid

Personal

02 _______ is a nonvolatile memory


chip in which data
ROM
once stored cannot
be altered by
programmer

PROM

EPROM

ROM and
PROM

03 Modern magnetic
tapes use 8 bit
________code
EBCDIC
format for data
recording

BCD

ASCII

All of these
1
options

04 The tape of
magnetic tape
storage is divided
into Vertical
Channels Frames and
columns
and Frames Channels
called_________
and horizontal
rows is
called________

Tracks and
Frames

Channels and
2
Tracks

05 Which of these is Magnetic


Smart Card
an electronic card. Strip Card

ATM Card

Punch Card 2

06 ________ is a set
of control
statements and
Applicatio
Operating
System software
extends processing n software
system
capability of
Computer system

Utilites

07 Different types of
System
user interfaces
calls
include

All of these
4
options

08 FAT stands for

Command
language

File
File
Allocation Administration

Job control
language

File Available File


Table
Allotment

Table

Table

09 The OSI model


has ________
layers

10 Standard
multimedia
compression
technique is

JPEG

MPEG FOR
VIDEO

MPEG FOR
AUDIO

All of these
4
options

11 The mechanism of
counting the 1 bits
of the character bit
set and adding a
check bit to make
Parity
the total number of
1 bits even while
transferring the
data, is referred to
as

Even Parity

Odd Parity

Error
Checking

Very complex
indesign and
huge in size

Unreliable

It is very
slow and also
very complex 4
indesign and
huge in size

12 Which of the
following are not Zip disk
Hard disk

Disk packs

Floppy disk

Winchester
Disk

13 The unit of
measurement of
Maud
data transfer rate is
______

Baud

Bandwidth

None of
2
these options

14 ______is
collection of the
facts or
informational raw
Data
material and
become
information after
processing.

Database

Computer

Main
Memory

The shortcoming
of Mark 1
computer is
___________

It is very
slow

Transfer
1

15 Algorithms can be
represented in
PROGRA
DECISION
FLOWCHARTS
various ways
MS
CHARTS
EXCEPT

SPREADSH
4
EET

16 _____ contains the Index

File

Subscript

Array

addresses of all the


records according
to the contents of
the field designed
as the record key.
17

Time
Efficient Coding
consuming

Effective
Analysis and
4
Efficient
Coding

Sequence logic

End case

None of
2
these options

19 Computer
languages are
Machine
classified as all of
Code language
Language
the following
EXCEPT:

Assembly
language

High level
Language

20 Limitation of
Executed
Difficult to
Machine language fast by
program
are, EXCEPT:
Computer

Error prone

Machine
dependent

Advantages of
Effective
using flow charts
Analysis
is

18 The logic used to


perform
Selection
instructions one
logic
after another
is_______

21

________ is true
for Syntax error.

It is easier
to detect
Syntax
error
compared
to logical
error

These program
error typically
The program
involve
cannot be
incorrect
compiled and
All of these
Punctuation,
4
executed until all
options
undefined
syntax errors are
terms, no
corrected
parenthesis
etc.

23 Program errors are


known as
Virus
________

Bugs

Errors

All of these
2
options

24 Commonly used
file organization
are:

Direct and
Random

Indexed
Sequential

All of these
4
options

Manipulation

DDL

DML

Sequential

25 _________languag Query
e that enables
users to define
there requirements
for extracting
required

information.
26 3.2 % 3

27 What is o/p If
c=10, d=20 ( c>
Hi
d ? printf(" Hi") :
printf(" Hello"));

0.2

Err

Hello

HiHello

None of
these

28 Which of the
following are
keywords of the C
language?
i)if
All are
only i,ii and iii
keywords are keywords
ii)else

only i,ii and iv only i and ii


2
are keywords are keywords

iii)then
iv)elseif
29 which of the
following is NOT `Thank
a character
You`
constant

`enter values of p
`23.56e-03`
n r`

all of the
above

30 void main() { int


arr[10];
printf("%d",
sizeof(arr));
getch(); }

10

None

31

20

Uppercase
case letters
Following are the
are not
rules for naming
equivalent
an identifier
to
except:
lowercase
letters

Error

Should not start


with a digit but
Any letter
Letter
can have digits in
3
with - + = sign starting with
between the
name

32 What is output
void main() { int
7
n=3,a=2; a*= n+1;
printf("%d", a); }

None

33 The keyword
_______ breaks
the control from
while loop.

break

exit

both a and b

None

34 Consider the
declaration

The
compiler

The compiler
The compiler None of the 1
will search first will search
above.

will search the user`s


only the
default/ working
#include Here the
only the user`s
standard directory and
angled brackets
default/workin
libraries for then the standard
indicate
g directory
the file
libraries for the
myfile.h file myfile.h
35 main() { printf(" \n
Hello"); disp(); }
Hi
disp() { printf(" \n
Hi"); main(); }

Hello

Hello Hi
Hello Hi still
Infinite no of stack
4
times
overflow

36 C() { printf("C"); }
B() { C();
printf("B"); } A() {
printf(" A"); B(); } CAMB
main()
{ printf("M");
A(); }

MABC

MCAB

MACB

(), **, /, *, +, -

(), / or *, - or
4
+

Linker Error

C to it that C
servies still
4
stack
overflow

37 which of the
following shows
the correct
hierarchy of
arithmetic
operations in C
38

39

(), **, *
(), **, *, /, +, or /, + or ?

main() { printf(" C C to it that


Compilation
to it that C
C servies
Error
servies"); main(); } infinitely
array of
The statement int
pointer to
(* arr [5]) (int *,
five
char *) means
functions

40 What error would


the following
function give on
compilation ? f(int
a, int b) { int a;
a=20; return a; }

an integer
array of 5
function taking 5
pointer to
arrays and
integers
returning an char

Missing
The function
parentheses should be
in return defined as int f
statement ( int a , int b)

41 If the binary
40 AC 00 00 CA 00 40
equivalent of
00
5.375 in
normalised form is
0100 0000 1010
1100 0000 0000
0000, 0000 what is

None of
above

Redeclaration None of the


3
of a
above

00 00 AC 40

00 00 CA 04 3

the output of the


following'C'
program ? main() {
float a = 5.375;
char *p; int i;
p=(char*) &a;
for(i=0;i<=3;i++)
printf("%02x",
(unsigned char)p[i]
);}
42
Interpret the
following
statement :
void(*b)(int *);

b is a
pointer to a
function
which
takes a
invalid statement
pointer to
an int and
returns a
void

43 From an ascending
priority queue only
Largest
the_________item
can be removed
44 Consider the
10
program segment
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;

b is a pointer
to a void
which can be
typecast as a
pointer to int

b is a pointer
of type int
which is a
1
pointer to a
void

Smallest

Rear

Top

100

1000

20

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 :
45 A stack in c is
declared as a ____
array
containing two
objects

structure

group

collection of
2
element

46 The remove
operation can only
empty
be performed, if
the queue is

non empty

overloaded

underflow

47 Stack is constantly
element
changing

object

memory
location

set of
integers

48 In a doubly linked
list if a node is to
be deleted between
two nodes, how
2
many links of the
existing list have
to be modified?

200

300

None of the 2
above

49 What is the output 100


of the following
code?
void main()
{

int i = 100, j =
200;
const int *p=&i;
p = &j;
printf("%d",*p);
}
50 The value of
automatic variable
that is declared but 0
not initialized will
be

-1

Garbage

None

51 In a'C' program
before
constant is defined main

after main

anywhere

none of the
above

52

Passing a
What does the
copy of a
term 'call-byvariable
reference' refer to? into a
function.

53 Consider the
following
declaration ::enum color
{black=-1, blue,
green }; This
represents

black=
black= -1
black= -1 ,blue =
-1,blue=2,
,blue = 0,
-2, green= -3
green=3
green= 1

54 The macro FILE is


defined in which
stdlib.h
of the following
files;
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
an integer. Let the
second parameter
to the function be

A function
Passing a pointer Choosing a
that does not
to a variable into random value
2
return any
a function.
for a variable.
values.

stdio.h

int
int total( int
total( int numbers[], int
numbers[], elements ) {
int
elements )
{

io.h

an illegal
declaration

stdio.c

int total( int None of the 4


numbers[], int above
elements ) {

an integer which
contains the
number of
elements of the
array. The correct
code is
56

Passing a
What does the
copy of a
term call-by-value variable
refer to?
into a
function

57 Associativity of
unary minus is

A function
Passing a pointer Choosing a
that does not
to a variable into random value
1
return any
a function
for a variable
values

right to left left to right

58 void main() { int


I=0; for(;I= =2;)
0
{ printf("%d", I);
I++; } }

012

from center

None

01

No output

59 If ( ps->top=-1)
return (true); else
return (false); For
this group of
statements
suggested shorter
and more efficient
method

return (1
(psreturn (ps>top=+1)
>top==-1);
else return
0;

return(top+1);

it can not be
3
made shorter

60 The fwrite() and


fread() functions
handle data in

text form

hexadecimal
form

octal form

61 When the language


has the capability
to produce new
Extensible Encapsulation
data type,it is
called____.

Overloading

Overriding

62 ______ is the good


example of a
Constructo
method that is
Attribute
r
shared by all
instance of a class.

Constructor None of
1
and Attribute these options

63 Which of the
is-a
Part-of
following are class relationshi
relationship.
relationships?
p.

Use-a
relationship.

64 Derived class
Data
Member
inherits from base members. function.

Constructor & Both Data


4
destructor.
members and

binary form

All of these
4
options.

Member
function.

class.
65 A contract is
implemented
through.

Class

66 Complex object
composing of
other object is
called_____

Aggregatio
Assosiation
n

67 A relationship that
can be identified
between two
object entities
function
(classes or
individuals) is
called a
___________.

Interface.

association

Abstract
Class.

Interface and
Abstract
4
Class

Composition

None of
1
these options

link

activity

68

Data
Encapsulati
Overloading,
Inheritance,
Data
Which are the
on,
Inheritance
Polymorphism & Encapsulation,
main three features Inheritance
&
3
Exception
Inheritance &
of OOP language? &
Polymorphis
handling
Polymorphism
Exception
m
handling

69

1?.n, where
n
Only with a line
Cardinality can be represents between base
represented as:
an
class & derived
unlimited classes
value.

70 Method is another
Function
name of____
71 SATURINE :
MERCURIAL ::
72

73

Attribute

redundant :
saturn : venus
wordy

A line with an
arrow-head
Cannot be
pointing in
represented
direction of
in UML.
parent or
superclass.

Behavior

None of
1
these options

heavenly :
starry

wolf : sly

Requital
KIND :
Reverentral:impr Circumspect:s Muddy:uncle
:reverberat
4
BENEVOLENT ::
udent
hort-sighted ar
e
Horse : colt ::

bird :
eaglet

child : adult

seed : fruit

sheep : lamb 4

74 CONE : PINE ::

fruit : berry bulb : flower

acorn : oak

needle : fir

75 MANDATORY :
OPTIONAL ::

pious :
indignant

opaque :
ornate

chaste :
celibate

competent : inept

76 BLUEPRINT :
itinerary :
CONSTRUCTION
signal : light
trip
::

tenant :
premises

volume :
library

77 CELEBRATE :
MARRIAGE ::

window :
bedroom

pot : pan

face : penalty 2

78 PROHIBITED :
REFRAIN ::

innocuous : deleterious :
forbid
embark

required :
decide

compulsory :
4
comply

79 ASSUAGE :

humiliate

convert

solidify

80

authoritativ
elastic
e

active

uninteresting 3

DORMANT :

lament :
bereavement

intensify

81 Studies over the


last 20 years have
shown that
virtually all babies
born to drug addicted mothers
are themselves
adicted to drugs. There have
Prior to the
No such
been
recent
correlation,
instances in
development
Although some
however, has been which
Drug addiction of DNA
biological
shown between
drugis an acquired testing,
conditions have
drug-addicted
addicted
condition
which
been shown to be
fathers and thier babies have
which cannot maternity
1
genetically
newborn children. been born
be passed on was
based, drug
It would appear, to addicted
from a mother unquestionab
addiction is not
then, that drug
fathers and
to her children le, paternity
among them
addiction is a
noncould not be
genetically
addicted
positively
inherited trait that mothers.
determined
is gender-linked
and passed through
the mother. All the
following, if true,
would weaken the
argument above
EXCEPT
82 During 1985,
advertising
expensing
expenditure on
canned food
products increased
by 20 percent,

Advertisin
g
effectivene
ss
increased

Canned food
price decreased
relative to
substitutes

Canned food
products were
avaible in
more stores

Canned
opener
production
doubled

while canned food


consumption rose
by 25 percent.
Each of the
following, if true,
could help explain
the increase in
food consumption
except
83 The gateway of
india is in mumbai
mumbai is in
maharashtra
false
therefore the
gateway of india is
in maharashtra

cannot say

true

probably
false

84 Ravi is the
younger than
sachin sachin is
younger than tarun true
therefore ravi is
the youngest
among them

false

cannot say

probably true 1

85 During 1985,
advertising
expenditures on
canned food
products increased
by 20%, while
canned food
consumption rose
by 25%.Each of
the following, if
true, could help
explain the
increase in food
consumption
except:

Advertisin
g
effectivene
ss
increased.

Canned food
prices decreased
relative to
substitutes.

Canned food
products are
available in
more stores.

Can opener
production
doubled.

86 The movement of
ownership by
unions is the latest
step in the
progression from
management
ownership to

Employee- Employee
owned
participation in
companies management
generally raises morale.
have higher
productivit
y.

Employee
union
ownership
drives up
salaries and
wages.

Employee
union
ownership
enables
workers to
share in the
profits.

employee
ownership.
Employee
ownership can
save depressed and
losing companies.
All the following
statements, if true,
provide support for
the claim above
except:
87 One major
obligation of the
social psychologist
is to provide his
own discipline, the
other social
sciences and
conceptual tools
that will increase
the range and the Social
reliablilty of their psychologi
understanding of st must
social phenomena. have a
Beyond that,
strong
responsible
backgroun
government
d in other
officials are today sciences as
turning more
will as
frequently to the their own
social sientists for
insight into the
nature and solution
of the problems
with which they
are confronted.
The above
argument assumes
that:

The social
scientist has
A study of social an obligation
psychology
to provide the
should be part of means by
the curriculim of which social
government
phenomena
officials.
may be
understood by
others

88 starting from a
32 metres 47 metres east
point x jayant
south
walked 15metres
towards the west
he turned to his
left and walked 20

42 metres
north

Social
phenomena
are little
understood
by those
3
outside the
field of
social
psychology.

27 metres
south

metres he then
turned to his left
and walked 15
metres he then
further turned to
his right and
walked 12 metres
how far is jayant
from the point x
and in which
direction?
89 If P and N are
done on Thursday
L is done L is done on
and Friday, then
on Tuesday Wednesday
which of the
following is true?

M is done on O is done on
2
Monday
Tuesday

90 A farmer plants
Beans,
Beans, corn,
Beans, peas,
only five different corn, kale, peas, beans, corn, squash, beans,
kinds of vegetables corn, peas, squash
corn, kale
-- beans, corn,
squash
kale, peas, and
squash. Every year
the farmer plants
exactly three kinds
of vegetables
according to the
following
restrictions:
If the farmer plants
corn, the farmer
also plants beans
that year.
If the farmer plants
kale one year, the
farmer does not
plant it the next
year.
In any year, the
farmer plants no
more than one of
the vegetables the
farmer planted in
the previous year.

Corn, peas, 3
squash,
beans, kale,
peas

Which of the
following is a
possible sequence
of combinations
for the farmer to
plant in two
successive years?
91 If x + 49 =8.2,
then the value of x 1.20
is equal to

1.40

1.44

1.89

92 If a = -1 and b =
-2, what is the
343
2 3
value of (2 - ab ) ?

216

125

64

93 If z = 1, y = 2.......a
= 26. Find the
351
value of z + y + x
+ .......+a.

221

400

200

94 A clock that gains


two minutes each
hour is
synchronized at
midnight with a
clock that loses
one minute an
hour. What will be 36
the difference, in
minutes, between
the times shown
on the two clocks
when a third clock
correctly shows
noon?

24

14

12

95 50 copies of a
book can be
purchased for a
sum payable 3
months hence
while 51 copies
6%
can be had for
same sum for cash
payment. What is
the rate of interest
per year?

8%

10 %

12 %

96 The Compound
interest on a sum
of money in 3
years at the rate of
5% per annum is
Rs.1261. What is
the simple interest 960
of the same sum of
money in the same
number of years
but at 4% per
annum of simple
interest.

900

840

800

97 If the radius of a
cylinder is tripled
while its height is halved
halved, its volume
will be

unchanged

doubled

increased by
4
350%

98 In a group of
people solicited by
a charity, 30%
contributed
Rs.40each, 45%
contributed Rs.20
each, and the rest 30%
contributed Rs.12
each. What
percentage of the
total contributed
came from people
who gave Rs.40?

40%

45%

50%

99 A is 8 miles east of
B. C is 10 miles
north of B. D is 13
miles east of C and
5 miles
E is 2 miles north
of D. Find shortest
distance between
A and E.

6 miles

13 miles

18 miles

6:2

5:1

None of the 1
above.

10 A dishonest milk 8 : 1
0 seller professes to
sell milk at cost
price but gains 12
1/2%. The
proportion of

water he adds to
milk is

Você também pode gostar