Computer Fundamentals Select One Option
Computer Fundamentals Select One Option
Computer Fundamentals Select One Option
119:41
Time Remaining (minutes):
1 The branch that deals with systematic application of the principles of computer science
is________
computer engineering
software engineering
IT engineering
Numeric Keypad
Arrow Keys
Alphanumeric Keys
Procedure
Process
Thread
OS
hexa
binary
octal
decimal
Electronic computer
Digital computer
Fastest computer
Smart Card
ATM Card
Punch Card
8 The shortcoming of Mark 1 computer is ___________
It is very slow
Unreliable
It is very slow and also very complex indesign and huge in size
System calls
Command language
10 ______refers to the way in which the nodes of a network are linked together
Protocol
Topology
Routing
11 A small program which can invade a computer system by attaching itself to a legitimate
program then encrypts the system.
hacker
virus
firmware
None of these options
Read
Write
Erase
13 The Atanasoff-Berry used ________for internal logic and _________ for storage
transistor, capacitor
capacitor, transistor
21
11
10
12
Machine language
Assembly language
Machine language and Assembly language
DAN
WAN
LAN
MAN
17 Portable computers which are mainly used by people who need computing wherever they go
is known as__________
LAPTOP
PC
LAPTOP and PC
Simplex
Full Duplex
Half Duplex
DVD
DMA
DRAM
Disk Pack
BUS
Cache Memory
Control Unit
To cause an interrupt
CPU
ALU
Control Unit
None of these options
Console
Host processor
Storage device
24 The output device ideal for Engineers , Architects, .City planners etc to generate high
precision ,hard copy graphic output of widely varying size is___________
Printer
SCIS
Plotter
Fundamentals of Programming
114:15
Time Remaining (minutes):
25 Machine language has two part format the first part is__________ and the second part is
__________
OPCODE,OPERAND
OPERAND,OPCODE
DATA CODE,OPERAND
OPERAND,CODEOP
26 Advantages of using flow charts is
Effective Analysis
Efficient Coding
Time consuming
Virus
Bugs
Errors
All of these options
Arrows
Oval
Circle
Rectangle
31 _________ is a point at which the debugger stops during program execution and awaits a
further command.
Memory Dump
Watch point
Break point
Memory dump
Hand simulation
Testing
33 The file organization method that can be used with magnetic tape storage is:
Direct
Sequential
Indexed Sequential
Machine language
Assembly Language
Scientific Language
Programming language
Subprogram
Preprocessor
Routine
Function
OO Programming Concepts
112:30
Time Remaining (minutes):
36 Polymorphism is done by
Function overloading
Operator overloading
No.
Yes, both public and private member functions can be activated within another member
function.
38 Encapsulation is
Information hiding
Data Binding
Instance of class
41 The ability to send a common message to different classes and for each subclass object to
respond to the message in a manner appropriate to its own properties is called
__________________.
adaptability
polymorphism
integration
singularity
Object of an abstract class type can`t be created and We can derive classes from these
abstract classes
43 Object Oriented Technology`s use of _________ facilitates the reuse of the code and
architecture and its __________ feature provides systems with stability, as a small change in
requirements does not require massive changes in the system:
Encapsulation; inheritance
Inheritance; polymorphism
Inheritance; encapsulation
Polymorphism; abstraction
To cancel the answer given by you first press the 'Reset' button and then 'Submit'.
44 Maintaining the state of an object is called____.
Serialization
Persistence
Marshalling
A feature in which member function with same name and different signature.
is-a relationship.
Part-of relationship.
Use-a relationship.
Procedural
Functional
Object Oriented
Algorithmic
bark
yodel
guard
pant
utilize
borrow
inherit
adapt
Programming in C
110:00
Time Remaining (minutes):
Two variable
10 variables
52 How can I print a `%` character in a printf format string? I tried \%, but it didn`t work.
Try \%
Try %%
Try $%
c= 127 u=127
c=-127 u=127
c=127 u=128
else
name
age
cha_r
57 A character variable can at a time store
1 character
8 characters
254 characters
$name
$__$
y(3)
long int c = a * b;
60 In b = 6.6 /a +(2*a +(3*c) / a *d) / (2/n); which operation will be performed first?
6.6 / a
2*a
3*c
2/n
61 What is the value of k after execution of the following program?
#include <stdio.h>
void main()
{
int k = 8;
(k++-k++);
printf("\n %d",k);
}
k=10
k=0
k=8
k=9
63 In b = 6.6 /a +(2*a +(3*c) / a *d) / (2/n); which operation will be performed first?
6.6 / a
2*a
3*c
2/n
21
compilation error
Garbage values
To cancel the answer given by you first press the 'Reset' button and then
66 The statement which prints out the values 1 to 10 on separate lines, is
Choose from multiple possibilities which may arise due to different values of a single variable
68 The statement which sums all values between 10 and 100 into a variable called total is,
assuming that total has NOT been initialized to zero.
False statement
Recursion
Passing a reference
Passing a value
None
Error
Garbage value
Null Value
10..50
Error
73 If int arr[3][3][3] is a three dimensional array of integers, which of the following refers to the
arr[2][3][1] element in the array?
*(*(*(arr+2)+3)+1)
*(*(*(arr+1)+3)+2)
*(arr+2)+3)+1
*(arr+1)+3)+2
delete a;
delete a[0];
delete []a;
delete [0]a;
10
100
10
100
1000
20
78 #include"stdio.h"
main()
{
int *p1,i=25;
void *p2;
p1=&i;
p2=&i;
p1=p2;
p2=p1;
printf("%d",i);
}
The output of the above code is :
25
Garbage value
Address of I
Arrays
Stack
Memory
Linked list
Heap
82 A list of data items usually words or bytes with the accessing restriction that elements can be
added or removed at one end of the list, is known as
Stack
Memory
Linked list
Heap
85 A linear list, in which elements can be added or removed at either end but not in the middle,
is known as
Queue
Tree
Stack
Deque
86 Consider a linked list of n elements. What is the time taken to insert an element pointer ?
O(log2n)
O(n)
O(1)
O(n log2n)
binary heap priority queue simply is a binary tree internally using a binary heap to store its
items
binary heap priority queue simply is a simple queue internally using a binary tree to store its
items
88 What is the worst case time required to search a given element in a sorted linked list of
length n?
O(log2n)
O(n).
O(1).
O(n log2n).
89 What kind of list is best to answer questions such as "What is the item at position n?"
Doubly-linked lists.
Singly-linked lists.
Error
Fascimile
mile
91 On opening a file for reading which of the following activities are performed:
C-DAC
Exam
C-DACExam
To cancel the answer given by you first press the 'Reset' button and
93 What is the output of the following program?
#define str(x)#x
#define Xstr(x)str(x)
#define oper multiply
void main()
{
char *opername=Xstr(oper);
printf("%s",opername);
}
opername
Xstr
multiply
Xstr
94 Which of following statements are true?
i.The standard input device is stdin
ii.stdin is a predefined stream automatically opened when the program is started.
95 What will happen if you try to put so many values into an array when you initialize it that the
size of the array is exceeded?
Nothing
prints “something”
Error
20
90
garbage value
98 Write a for loop which will read five characters (use scanf) and deposit them into the
character based array words, beginning at element 0.
100
612
Error
compilation error
98:01
Time Remaining (minutes):
Directions:- The given pair of words contains a specific relationship to each other. Select the best
pair of choices which expresses the same relationship as the given.
character : novel
brick: building
ballad : song
street : intersection
analogous humanize
disparate aggrandize
divergent typify
comparable delineate
Directions:- The given pair of words contains a specific relationship to each other. Select the best
pair of choices which expresses the same relationship as the given.
Maintain : satisfaction
Astonish : wonder
Soothe : concern
Lion : tame
Directions:- The given pair of words contains a specific relationship to each other. Select the best
pair of choices which expresses the same relationship as the given.
itinerary : trip
signal : light
tenant : premises
volume : library
Directions:- The given pair of words contains a specific relationship to each other. Select the best
pair of choices which expresses the same relationship as the given.
determination : success
recklessness : courage
vanity : conformity
debauchery : morality
Directions:- The given pair of words contains a specific relationship to each other. Select the best
pair of choices which expresses the same relationship as the given.
remiss : duty
cogent :argument
easy : hard
careful : position
To cancel the answer given by you first press the 'Reset' button and then 'Submit'.
Directions:- Choose the best word, which is most opposite in the meaning to the given word.
107 SEDULOUS :
rampant
esoteric
Morose
indolent
Directions:- Choose the best word, which is most opposite in the meaning to the given word.
108 FETTER :
Delay
Stretch
Comply
Thrive
Directions:- Pick out the best choice which can complete the incomplete stem correctly and
meaningfully
110 They must either choose the plans we proposed or the ones approved by the preceding
administration.
111 The young reporter went out on many routine assignments until his ability of grasp essentials
was proved
Directions:- The given pair of words contains a specific relationship to each other. Select the best
pair of choices which expresses the same relationship as the given.
apathy : caring
pity : strong
immorality : wrong
frequency : known
Directions:- Choose the best word, which is most opposite in the meaning to the given word.
reasonable
Illogical
semaphore
mundane
To cancel the answer given by you first press the 'Reset' button and
Directions:- The given pair of words contains a specific relationship to each other. Select the best
pair of choices which expresses the same relationship as the given.
redundant : wordy
saturn : venus
heavenly : starry
wolf : sly
Critical Reasoning
Select One Option
95:11
Time Remaining (minutes):
116 The movement to ownership by unions is the latest step in the progression from
management ownership. Employee ownership to employee ownership can save depressed
and losing companies. All the following statements, if true provide support for the claim
above EXCEPT
Directions:- In each of the following questions are given some statements followed by conclusions
that can be drawn from them choose the conclusion which appeals to you to be the
most correct
118 A is the sister of D.Dis the brother of B but B is not the brother of A therefore B is a girl
False
probbaly true
True
probably false
119 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:
120 Looking at a potrait, A said "her mother`s only son is my cousin`s father". My cousin is the
daughter of my maternal uncle who has an only sister. whose potrait was "A" looking at?
A`s Uncle
A`s sister
A`s grandmohter
A`s mother
Directions:- Which of the following can be best inferred from the passage?
121 In winning its bitter,protracted battle to acquire Blue industries, Inc., Bell industries has
fulfilled its goal to lessen its reliance on tobacco holdings, while the $5.2 billion deal may
spur more takeover activity in the insurance, analysts said.
2. The question contains an implication to which the applicant may not wish to lend
credence.
1 only
2 only
1 and 2 only
2 and 3 only
123 In a game, exactly six inverted cups stand side by side in a straight line, 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.
Which of the following could be the colors of the balls under the cups, in order from 1
through 6?
Directions:- In a group there are five students coded as P Q R S T.Q and R are intelligent in
mathematics and geology. P and R are intelligent in mathematics and hindi. Q and S
are intelligent in psychology and buddhist studies.T is intelligent in buddhist studies
hindi and psychology
Directions:- In a group there are five students coded as P Q R S T.Q and R are intelligent in
mathematics and geology. P and R are intelligent in mathematics and hindi. Q and S
are intelligent in psychology and buddhist studies.T is intelligent in buddhist studies
hindi and psychology
Directions:- The following questions are based on the following situations. Asha, Babli, Charn,
Deepti, Eira, Farha are cousins. No two cousins are of the same age , but all have birth
days on the same date in that year.The youngest is 17 years old and the oldest is Eira
is 22.Farha is somewhere between Babli and Deepti in age.Asha is older than Babli.
charn is older than Deepti.
126 which of the following must be true if exactly two of the cousins are between charan and
farha in age?
Directions:- For each of these questions, select the best of the answer choices given.
The local race track is a square with four turns. In order to measure a racer`s
performance, four timers - Aaron, Bill, Chad, Derek - are positioned around the track as
follows :
127 The timers can be around the racetrack in which of the following order, begining after the first
turn ?
To cancel the answer given by you first press the 'Reset' button and then 'Submit'.
Submit
128 In the closing days of the civil War, President Abraham Lincoln was planning to graciously
welcome the defeated confederate states back into the Union. After Lincoln was
assassinated, however, the "Radical Republicans" in Congress imposed martial law in the
South, creating resentment that caused problems well into this century. Had Lincoln lived,
the history of regional conflict in 20th century America would have been considerably
different. All of the following assumptions underline the argument above EXCEPT
The imposition of martial law in the South was primarily responsible for the resentment felt in
the South
Had he lived, lincoln would have treated hte defeated South as he had planned
Lincoln would have been able to prevent the Radical Republicans in Congress from
imposing martial law in the South
Factors other than the imposition of martial law in the South affected the history of regional
conflicts in 20th century America
129 During 1985, advertising expensing expenditure on canned food products increased by 20
percent, while canned food consumption rose by 25 percent. Each of the following, if true,
could help explain the increase in food consumption except
130 Farmers in the North have observed that heavy frost is usually preceded by a full moon.
They are convinced that the full moon somehow generates the frost. Which of the following,
if true, would weaken the farmers convection?
The temperature must fall below 10 degrees Celsius (50 degrees Fahrenheit) for frost to
occur.
Directions:- For each of these questions, select the best of the answer choices given.
The local race track is a square with four turns. In order to measure a racer`s
performance, four timers - Aaron, Bill, Chad, Derek - are positioned around the track as
follows :
Each timer is positioned between two turns.
131 If one of the timers nearest Chad is Derek, which of the following cannot be true ?
Directions:- In each of the following questions are given some statements followed by conclusions
that can be drawn from them choose the conclusion which appeals to you to be the
most correct
132 Ravi is the younger than sachin sachin is younger than tarun therefore ravi is the youngest
among them
True
False
cannot say
probably true
Mathematical Problems
1 – ay
Ay
ay + 1
ay – 1
134 On the number line shown, which point corresponds to the number 2.27?
135 Exactly three years before the year in which Anna was born, the year was 1980-x. In terms
of x, on Anna`s twentieth birthday, the year will be
1977 + x
1997 + x
2003 - x
2003 + x
136 Tickets for a particular concert cost Rs.5 each if purchased in advance and Rs.7 each if
bought at the box office on the day of the concert. For this particular concert, 1,200 tickets
were sold and the receipts were Rs.6,700. How many tickets were bought at the box office
on the day of the concert?
500
350
700
600
137 A sum of money amounts to Rs. 826 in 3 years. If the rate of interest be raised by 50 per
cent it amounts to Rs. 889 in the same time. Find the sum.
700
650
800
750
138 Ashok bought a T.V. with 20% discount on the labeled price. He made a profit of Rs.800 by
selling it at Rs. 16800. What was the labeled price?
Rs. 18000
Rs. 20800
Rs. 24000
Rs. 20000
139 A person makes a journey of 72 kms. He rides a cycle at 12kms/hr. After going a certain
distance, the cycle is punctured and he walks the remaining distance at 4 1/2 kms/hr. Find
when the cycle is punctured if the total time for the journey is 8 1/2 hrs.
50 kms
52 kms
54 kms
56 kms
140 A tap can fill a cistern in 8 hrs and another can empty it in 16 hrs. If both the taps are open
simultaneously, the time (in hrs) to fill the tank is
10
16
24
141 A tap can fill a cistern in 8 hrs and another can empty it in 16 hrs. If both the taps are open
simultaneously, the time (in hrs) to fill the tank is
10
16
24
142 If the ratio of the areas of two circles is 4 : 9, the ratio of their circumferences is
2:3
3:2
4:9
9:4
143 1/6 of a stick is cut off and then 1/4 of what remain is cut. If the length of the remaining stick
is 2.5 metres the length of the original stick was:
6 mtrs
4 mtrs
3 mtrs
8 mtrs
1. m is odd
2. m is even
3. k is divisible by 3
1 only
2 only
2 and 3 only
1 and 2 only
145 If a man travels at 30 km/hr, then he reaches his destination late by 10 minutes, but if he
travels at 42 km/hr, then he reaches 10 minutes earlier. Therefore, the distance traveled by
him is
36 km
35 km
40 km
45 km
146 One wall being made entirely of bricks is 40% built. If we need 1,200 more bricks to
complete the wall, how many bricks will the wall have ?
1,500
1,800
2,000
2,400
147 Harvey paid $400 for a used car that travels 28 miles per gallon on the highway and 20 miles
per gallon in the city. If he drove twice as many highway miles as city miles last month while
using 34 gallons of gasoline, how many miles did he drive altogether?
840
400
340
280
148 If a certain chemical costs Rs.50 for 30 gallons, then how many gallons of the chemical can
be purchased for Rs.625?
12.5
24
325
375
149 The price of jute has been reduced by 20%. If the reduced price is Rs. 800 per quintal, the
original price per quintal was
960
1000
980
640
150 A piece of wood weighing 10 ounces is found to have a weight of 8 ounces after drying. The
moisture content was
20%
25%
33%
40%