Technical Questions: Calypso
Technical Questions: Calypso
Technical Questions: Calypso
Technical Questions
1. A 2MB PCM(pulse code modulation) has
a) 32 channels
b) 30 voice channels & 1 signalling channel.
c) 31 voice channels & 1 signalling channel.
d) 32 channels out of which 30 voice channels, 1 signalling channel, & 1
Synchronizatio channel.
Ans: (c)
a) 1/2 second
b) 1 seconds
c) 4 seconds
d) 2 seconds
Ans: (a)
a) only one
b) more han one
c) two hops
d) four hops
Ans: (c)
a) 128
b) 256
c) 255
d) 512
Ans: (c)
a) register
b) accumulator
c) flag register
d) flag register part of PSW(Program Status Word)
Ans: (d)
1
calypso
a) 4 Khz
b) 8 Khz
c) 16 Khz
d) 64 Khz
Ans: (a)
7. Line of Sight is
a) Straight Line
b) Parabolic
c) Tx & Rx should be visible to each other
d) none
Ans: (c)
Ans: (b)
a) Processor serves the interrupt request after completing the execution of the
current instruction.
b) Processor serves the interupt request after completing the current task.
c) Processor serves the interupt request immediately.
d) Processor serving the interrupt request depends upon the priority of the
current task under execution.
Ans: (a)
a) task
b) process
c) not defined.
d) none of the above.
Ans: (b)
2
calypso
Ans: (c)
Ans: (a)
13 When a 'C' function call is made, the order in which parameters passed to the
function are pushed into the stack is
a) left to right
b) right to left
c) bigger variables are moved first than the smaller variales.
d) smaller variables are moved first than the bigger ones.
e) none of the above.
Ans: (b)
a) inband
b) common channel signalling
c) any of the above
d) none of the above.
Ans: (a)
15 Buffering is
a) the process of temporarily storing the data to allow for small variation in
device speeds
b) a method to reduce cross talks
c) storage of data within transmitting medium until the receiver is ready to
receive.
d) a method to reduce routing overhead.
Ans: (a)
3
calypso
a) allocated in RAM.
b) allocated in ROM.
c) allocated on stack.
d) assigned to registers.
Ans: (c)
a) terminal adapter
b) bulletin board
c) modem
d) terminal emulation
Ans: (d)
int *p,*q;
p=(int *)1000;
q=(int *)2000;
printf("%d",(q-p));
Ans: 500
4
calypso
Ans: (b)
Ans. 110100
Ans. 72A
28.EDI useful in
30. Hard disk time for R/W head to move to correct sector
5
calypso
31. The percentage of times a page number bound in associate register is called
Ans. Interrelated
(a) Multiuser
(b) n tasks
(c) Both
(d) None
Ans. (a)
38.A thread is
6
calypso
48.What is a semaphore
49.What is the precedence order from high to low ,of the symbols ( ) ++ /
Ans.( ) , ++, /
7
calypso
50.Preorder of A*(B+C)/D-G
Ans.*+ABC/-DG
54.In binary search tree which traversal is used for getting ascending order
values--Inorder ,post order,preorder
Ans.Inorder
Ans.inode block
8
calypso
Ans: (a)
Ans: (b)
(a)11
(b)16
(c)22
(d) 24
Ans. (b)
(a) synchronization
(b) dead-lock avoidence
(c) box
(d) none
Ans. (a)
Ans. (a)
9
calypso
(a) macro
(b) conditional compliclation
(c) in type checking
(d) including load file
Ans. (c)
a) Flow control
b) Sequence
c) Acknowledgement
d) retransmition
Ans. (c)
a) buddy system
b) swapping
c) monitors
d) paging
Ans : c
68. There was a circuit given using three nand gates with two inputs and one output.
Find the output.
a) OR
b) AND
c) XOR
d) NOT
Ans. (a)
Ans. The client computes the ICV and then compares it with the senders value.
70. When applets are downloaded from web sites , a byte verifier performs _________?
10
calypso
71. An IP/IPX packet received by a computer using... having IP/IPX both how the packet is handled.
Ans. Read the, field in the packet header with to send IP or IPX protocol.
Ans. (b)
Ans. Is a data structure that defines all specifications of a file like the file size,
number of lines to a file, permissions etc.
74. The very first process created by the kernal that runs till the kernal process is
halts is
a) init
b) getty
c) both (a) and (b)
d) none of these
Ans. (a)
75. In the process table entry for the kernel process, the process id value is
(a) 0
(b) 1
(c) 2
(d) 255
(e) it does not have a process table entry
Ans. (a)
a) ShowWindow
b) EnableWindow
c) MoveWindow
d) SetWindowPlacement
e) None of the above
Ans. (a)
11
calypso
77. Which function is the entry point for a DLL in MS Windows 3.1
a) Main
b) Winmain
c) Dllmain
d) Libmain
e) None
Ans. (b)
78. The standard source for standard input, standard output and standard error is
a) the terminal
b) /dev/null
c) /usr/you/input, /usr/you/output/, /usr/you/error respectively
d) None
Ans. (a)
Ans. (b)
a) prints lines containing the words first, second or third from the file
/usr/you/myfile
b) searches for lines containing the pattern first in the files
second, third, and /usr/you/myfile and prints them
c) searches the files /usr/you/myfiel and third for lines containing the words first
or second and prints them
d) replaces the word first with the word second in the files third and
/usr/you/myfile
e) None of the above
Ans. (b)
81. You are creating a Index on EMPNO column in the EMPLOYEE table. Which
statement will you use?
a) CREATE INdEX emp_empno_idx ON employee, empno;
b) CREATE INdEX emp_empno_idx FOR employee, empno;
c) CREATE INdEX emp_empno_idx ON employee(empno);
d) CREATE emp_empno_idx INdEX ON employee(empno);
Ans. c
12
calypso
Ans. b
83. Which Statement would you use to remove the EMPLOYEE_Id_PK PRIMARY
KEY constraint and all depending constraints fromthe EMPLOYEE table?
a) ALTER TABLE employee dROP PRIMARY KEY CASCAdE;
b) ALTER TABLE employee dELETE PRIMARY KEY CASCAdE;
c) MOdIFY TABLE employee dROP CONSTRAINT employee_id_pk CASCAdE;
d) ALTER TABLE employee dROP PRIMARY KEY employee_id_pk CASCAdE;
e) MOdIFY TABLE employee dELETE PRIMARY KEY employee_id_pk CASCAdE;
Ans. a
Ans. a ,b ,f
Ans.d
86. What was the first name given to Java Programming Language.
a) Oak - Java
b) Small Talk
c) Oak
d) None
Ans.a
13
calypso
87.When a bicycle is in motion,the force of friction exerted by the ground on the two
wheels is such that it acts
(a) In the backward direction on the front wheel and in the forward direction on the
rear wheel.
(b) In the forward direction on the front wheel and in the backward direction on the
rear wheel.
(c) In the backward direction on both the front and rear wheels.
(d) In the backward direction on both the front and rear wheels.
Ans. (d)
(a) 29%
(b) 15%
(c) 10%
(d) 45%
Ans. (a)
Ans. (b)
Ans. (b)
14
calypso
91. If the sum of the roots of the equation ax2 + bx + c=0 is equal to the sum of the
squares of their reciprocals
then a/c, b/a, c/b are in
(a) AP
(b) GP
(c) HP
(d) None of these
Ans. (c)
(a) 3/8
(b) 5/8
(c) 3/4
(d) None of the above
Ans. (a)
Ans. (a)
(a) (-1,-4)
(b) (-1,4)
(c) (2,-4)
(d) (-2,-4)
Ans. (a)
15
calypso
Ans. (c)
Ans. (c)
(a) The two interfering waves must be propagated in almost the same direction or
the two interfering waves must intersect at a very small angle
(b) The waves must have the same time period and wavelength
(c) Amplitude of the two waves should be the same
(d) The interfering beams of light must originate from the same source
Ans. (c)
Ans. (c)
16
calypso
Ans. (b)
(a) 1
(b) 2
(c) 0
(d) 4
Ans. (d)
17