Вы находитесь на странице: 1из 15

Sample Qestion Paper 05

Sr.
Answe
No Question Option1 Option2 Option3 Option4
r
.
01 _______ computers
perform the complex
processing by
Analog Digital Hybrid Personal 2
directly measuring
the discrete physical
quantities.
02 _______ is a non-
volatile memory chip
in which data once ROM and
ROM PROM EPROM 1
stored cannot be PROM
altered by
programmer
03 Modern magnetic
tapes use 8 bit
All of these
________code EBCDIC BCD ASCII 1
options
format for data
recording
04 The tape of magnetic
tape storage is
divided into Vertical
Channels Frames and Tracks and Channels and
columns 2
and Frames Channels Frames Tracks
called_________ and
horizontal rows is
called________
05 Which of these is an Magnetic
Smart Card ATM Card Punch Card 2
electronic card. Strip Card
06 ________ is a set of
control statements
Application Operating
and extends System software Utilites 2
software system
processing capability
of Computer system
07 Different types of
Command Job control All of these
user interfaces System calls 4
language language options
include
08 File File
File Available File Allotment
FAT stands for Allocation Administration 1
Table Transfer
Table Table
09 The OSI model has 5 6 7 8 7
________ layers
10 Standard multimedia
MPEG FOR MPEG FOR All of these
compression JPEG 4
VIDEO AUDIO options
technique is
11 The mechanism of
counting the 1 bits of
the character bit set
and adding a check
Error
bit to make the total Parity Even Parity Odd Parity 2
Checking
number of 1 bits
even while
transferring the data,
is referred to as
It is very slow
The shortcoming of Very complex and also very
It is very
Mark 1 computer is indesign and huge Unreliable complex 4
slow
___________ in size indesign and
huge in size
12 Which of the
Winchester
following are not Zip disk Disk packs Floppy disk 3
Disk
Hard disk
13 The unit of
measurement of data None of these
Maud Baud Bandwidth 2
transfer rate is options
______
14 ______is collection
of the facts or
informational raw
Data Database Computer Main Memory 1
material and become
information after
processing.
15 Algorithms can be
represented in PROGRAM DECISION SPREADSHE
FLOWCHARTS 4
various ways S CHARTS ET
EXCEPT
16 _____ contains the
addresses of all the
records according to
Index Subscript Array File 1
the contents of the
field designed as the
record key.
17 Advantages of using Effective Time Effective
Efficient Coding 4
flow charts is Analysis consuming Analysis and
Efficient
Coding
18 The logic used to
perform instructions Selection None of these
Sequence logic End case 2
one after another logic options
is_______
19 Computer languages
are classified as all Machine Assembly High level
Code language 2
of the following Language language Language
EXCEPT:
20 Limitation of Executed
Difficult to Machine
Machine language fast by Error prone 1
program dependent
are, EXCEPT: Computer
21 These program
error typically
It is easier The program
involve
to detect cannot be compiled
________ is true for incorrect All of these
Syntax error and executed until 4
Syntax error. Punctuation, options
compared to all syntax errors
undefined
logical error are corrected
terms, no
parenthesis etc.
23 Program errors are All of these
Virus Bugs Errors 2
known as ________ options
24 Commonly used file Indexed All of these
Sequential Direct and Random 4
organization are: Sequential options
25 _________language
that enables users to
define there
Query Manipulation DDL DML 1
requirements for
extracting required
information.
26 3.2 % 3 1 0 0.2 Err 4
27 What is o/p If c=10,
d=20 ( c> d ? printf("
Hi Hello HiHello None of these 2
Hi") : printf("
Hello"));
28 Which of the
following are
All are only i,ii and iii are only i,ii and iv only i and ii
keywords of the C 2
keywords keywords are keywords are keywords
language?
i)if
ii)else
iii)then
iv)elseif

29 which of the
`Thank `enter values of p n all of the
following is NOT a `23.56e-03` 4
You` r` above
character constant
30 void main() { int
arr[10]; printf("%d",
20 10 Error None 1
sizeof(arr)); getch();
}
31 Uppercase
case letters Should not start
Following are the
are not with a digit but can Any letter with - Letter starting
rules for naming an 3
equivalent have digits in + = sign with
identifier except:
to lowercase between the name
letters
32 What is output void
main() { int n=3,a=2;
7 8 6 None 2
a*= n+1;
printf("%d", a); }
33 The keyword
_______ breaks the
break exit both a and b None 1
control from while
loop.
34 The
The compiler will
compiler
search first the The compiler
Consider the will search
user`s default/ will search only
declaration #include only the None of the
working directory the user`s 1
Here the angled standard above.
and then the default/working
brackets indicate libraries for
standard libraries directory
the file
for the file myfile.h
myfile.h
35 main() { printf(" \n
Hello Hi
Hello"); disp(); } Hello Hi still
Hi Hello Infinite no of 4
disp() { printf(" \n stack overflow
times
Hi"); main(); }
36 C() { printf("C"); }
B() { C();
printf("B"); } A() { CAMB MABC MCAB MACB 4
printf(" A"); B(); }
main() { printf("M");
A(); }
37 which of the
following shows the
(), **, * or /,
correct hierarchy of (), **, *, /, +, - (), **, /, *, +, - (), / or *, - or + 4
+ or ?
arithmetic operations
in C
38 main() { printf(" C to C to it that C to it that C
it that C servies"); C servies Compilation Error Linker Error servies still 4
main(); } infinitely stack overflow
39 array of
The statement int (* an integer function array of 5
pointer to
arr [5]) (int *, char *) taking 5 arrays and pointer to None of above 1
five
means returning an char integers
functions
40 What error would the
Missing The function
following function
parentheses should be defined Redeclaration of None of the
give on compilation 3
in return as int f ( int a , int a above
? f(int a, int b) { int
statement b)
a; a=20; return a; }
41 If the binary
equivalent of 5.375
in normalised form is
0100 0000 1010
1100 0000 0000
0000, 0000 what is
the output of the 40 AC 00
00 CA 00 40 00 00 AC 40 00 00 CA 04 3
following'C' program 00
? main() { float a =
5.375; char *p; int i;
p=(char*) &a;
for(i=0;i<=3;i++)
printf("%02x",(unsig
ned char)p[i] ) ; }
42 b is a
pointer to a
b is a pointer to b is a pointer
Interpret the function
a void which of type int
following statement : which takes invalid statement can be typecast which is a 1
void(*b)(int *); a pointer to
as a pointer to pointer to a
an int and
int void
returns a
void
43 From an ascending
priority queue only
Largest Smallest Rear Top 2
the_________item
can be removed
44 Consider the
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;
10 100 1000 20 3
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 :

45 A stack in c is
declared as a ____ collection of
array structure group 2
containing two element
objects
46 The remove
empty non empty overloaded underflow 2
operation can only
be performed, if the
queue is
47 Stack is constantly memory
element object set of integers 3
changing location
48 In a doubly linked
list if a node is to be
deleted between two
nodes, how many 2 4 3 1 3
links of the existing
list have to be
modified?
49 What is the output of
the following code?
void main()
{
int i = 100, j = 200;
None of the
100 200 300 2
const int *p=&i; above

p = &j;
printf("%d",*p);
}

50 The value of
automatic variable
0 -1 Garbage None 3
that is declared but
not initialized will be
51 In a'C' program none of the
before main after main anywhere 3
constant is defined above
52 Passing a A function
What does the term Passing a pointer Choosing a
copy of a that does not
'call-by-reference' to a variable into a random value 2
variable into return any
refer to? function. for a variable.
a function. values.
53 Consider the
following declaration
black= -
::- enum color black= -1 ,blue = - black= -1 ,blue an illegal
1,blue=2, 3
{black=-1, blue, 2, green= -3 = 0, green= 1 declaration
green=3
green }; This
represents
54 The macro FILE is
stdlib.h stdio.h io.h stdio.c 2
defined in which 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
int total( int
all the elements as an int total( int int total( int
numbers[], None of the
integer. Let the numbers[], int numbers[], int 4
int elements above
second parameter to elements ) { elements ) {
){
the function be an
integer which
contains the number
of elements of the
array. The correct
code is
56 Passing a A function
What does the term Passing a pointer Choosing a
copy of a that does not
call-by-value refer to a variable into a random value 1
variable into return any
to? function for a variable
a function values
57 Associativity of
right to left left to right from center None 1
unary minus is
58 void main() { int
I=0; for(;I= =2;) {
0 012 01 No output 4
printf("%d", I); I++;
}}
59 If ( ps->top=-1)
return (true); else return (1
return (false); For (ps-
return (ps->top==- it can not be
this group of >top=+1) return(top+1); 3
1); made shorter
statements suggested else return
shorter and more 0;
efficient method
60 The fwrite() and
hexadecimal
fread() functions text form binary form octal form 2
form
handle data in
61 When the language
has the capability to
Extensible Encapsulation Overloading Overriding 1
produce new data
type,it is called____.
62 ______ is the good
Constructor and None of these
example of a method Constructor Attribute 1
Attribute options
that is shared by all
instance of a class.
63 Which of the
is-a Part-of Use-a All of these
following are class 4
relationship. relationship. relationship. options.
relationships?
64 Both Data
Derived class
Data Constructor & members and
inherits from base Member function. 4
members. destructor. Member
class.
function.
65 A contract is
Interface and
implemented Class Interface. Abstract Class. 4
Abstract Class
through.
66 Complex object
None of these
composing of other Aggregation Assosiation Composition 1
options
object is called_____
67 A relationship that
can be identified
between two object
function association link activity 2
entities (classes or
individuals) is called
a ___________.
68 Data
Encapsulati Data
Which are the main Inheritance, Overloading,
on, Encapsulation,
three features of Polymorphism & Inheritance & 3
Inheritance Inheritance &
OOP language? Exception handling Polymorphism
& Exception Polymorphism
handling
69 A line with an
1?.n, where arrow-head
Only with a line Cannot be
Cardinality can be n represents pointing in
between base class represented in 1
represented as: an unlimited direction of
& derived classes UML.
value. parent or
superclass.
70 Method is another None of these
Function Attribute Behavior 1
name of____ options
71 SATURINE : redundant : heavenly :
saturn : venus wolf : sly 3
MERCURIAL :: wordy starry
72 KIND : Requital Reverentral:imprud Circumspect:sh Muddy:unclea
4
BENEVOLENT :: :reverberate ent ort-sighted r
73 Horse : colt :: bird : eaglet child : adult seed : fruit sheep : lamb 4
74 CONE : PINE :: fruit : berry bulb : flower acorn : oak needle : fir 3
75 MANDATORY : pious : chaste :
competent : inept opaque : ornate 2
OPTIONAL :: indignant celibate
76 BLUEPRINT : itinerary : tenant : volume :
signal : light 1
CONSTRUCTION :: trip premises library
77 CELEBRATE : window : lament :
pot : pan face : penalty 2
MARRIAGE :: bedroom bereavement
78 PROHIBITED : innocuous : deleterious : required : compulsory :
4
REFRAIN :: forbid embark decide comply
79 ASSUAGE : humiliate intensify convert solidify 2
80 DORMANT : authoritative elastic active uninteresting 3
81 Studies over the last
20 years have shown
that virtually all
babies born to drug -
addicted mothers are
themselves adicted
There have
to drugs. No such Prior to the
been
correlation, however, recent
instances in
has been shown Although some Drug addiction development
which drug-
between drug- biological is an acquired of DNA
addicted
addicted fathers and conditions have condition which testing, which
babies have
thier newborn been shown to be cannot be maternity was 1
been born to
children. It would genetically based, passed on from unquestionabl
addicted
appear, then, that drug addiction is a mother to her e, paternity
fathers and
drug addiction is a not among them children could not be
non-
genetically inherited positively
addicted
trait that is gender- determined
mothers.
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
Canned food Canned
products increased Advertising Canned food price
products were opener
by 20 percent, while effectivenes decreased relative 4
avaible in more production
canned food s increased to substitutes
stores doubled
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 cannot say true probably false 3
therefore the
gateway of india is
in maharashtra
84 Ravi is the younger
than sachin sachin is
younger than tarun
true false cannot say probably true 1
therefore ravi is the
youngest among
them
85 During 1985,
advertising
expenditures on
canned food
products increased
Canned food
by 20%, while Advertising Canned food prices Can opener
products are
canned food effectivenes decreased relative production 1
available in
consumption rose by s increased. to substitutes. doubled.
more stores.
25%.Each of the
following, if true,
could help explain
the increase in food
consumption except:
86 The movement of
ownership by unions
is the latest step in
the progression from
management
ownership to Employee- Employee
employee ownership. owned Employee union union
Employee
Employee ownership companies ownership ownership
participation in
can save depressed generally drives up enables 3
management raises
and losing have higher salaries and workers to
morale.
companies. productivity wages. share in the
All the following . profits.
statements, if true,
provide support for
the claim above
except:

87 One major obligation Social A study of social The social Social 3


of the social psychologist psychology should scientist has an phenomena
psychologist is to must have a be part of the obligation to are little
provide his own strong curriculim of provide the understood by
discipline, the other background government means by which those outside
social sciences and in other officials. social the field of
conceptual tools that sciences as phenomena may social
will increase the will as their be understood psychology.
range and the own by others
reliablilty of their
understanding of
social phenomena.
Beyond that,
responsible
government officials
are today turning
more frequently to
the social sientists
for insight into the
nature and solution
of the problems with
which they are
confronted. The
above argument
assumes that:
88 starting from a point
x jayant walked
15metres towards the
west he turned to his
left and walked 20
metres he then
turned to his left and 32 metres 27 metres
47 metres east 42 metres north 1
walked 15 metres he south south
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 and
L is done on L is done on M is done on O is done on
Friday, then which 2
Tuesday Wednesday Monday Tuesday
of the following is
true?
90 A farmer plants only Beans, corn, Beans, corn, peas, Beans, peas, Corn, peas,
3
five different kinds kale, corn, beans, corn, squash squash, beans, squash, beans,
of vegetables -- peas, squash corn, kale kale, peas
beans, corn, 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.
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 is 1.20 1.40 1.44 1.89 3
equal to
92 If a = -1 and b = -2,
what is the value of 343 216 125 64 2
(2 - ab2)3?
93 If z = 1, y = 2.......a =
26. Find the value of 351 221 400 200 1
z + y + x + .......+a.
94 A clock that gains
two minutes each 36 24 14 12 1
hour is synchronized
at midnight with a
clock that loses one
minute an hour.
What will be the
difference, in
minutes, between the
times shown on the
two clocks when a
third clock correctly
shows noon?
95 50 copies of a book
can be purchased for
a sum payable 3
months hence while
51 copies can be had 6 % 8% 10 % 12 % 2
for same sum for
cash payment. What
is the rate of interest
per year?
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
960 900 840 800 1
interest of the same
sum of money in the
same number of
years but at 4% per
annum of simple
interest.
97 If the radius of a
cylinder is tripled
increased by
while its height is halved unchanged doubled 4
350%
halved, its volume
will be
98 In a group of people
solicited by a
charity, 30%
contributed
Rs.40each, 45% 30% 40% 45% 50% 4
contributed Rs.20
each, and the rest
contributed Rs.12
each. What
percentage of the
total contributed
came from people
who gave Rs.40?
99 A is 8 miles east of
B. C is 10 miles
north of B. D is 13
miles east of C and E
5 miles 6 miles 13 miles 18 miles 3
is 2 miles north of D.
Find shortest
distance between A
and E.
10 A dishonest milk
0 seller professes to
sell milk at cost price
None of the
but gains 12 1/2%. 8 : 1 6:2 5:1 1
above.
The proportion of
water he adds to
milk is

Вам также может понравиться