Custom Search

WHATSAPP GROUP QUESTIONFORALL

HELLO FRIENDS, FOR JOINING THE WHATSAPP GROUP OF QUESTIONFORALL JUST SEND YOUR DETAILS TO questionforall@gmail.com

Friday 17 April 2009

SOLVED PAPER OF SYSTEM MANAGER/EDP MANAGER IN KERALA PUBLIC SERVICE COMMISSION




SOLVED PAPER OF SYSTEM MANAGER/EDP MANAGER IN KERALA PUBLIC SERVICE COMMISSION

Category Number 161/2009 held in 03-04-2009

1. In a memory, the minimum time delay between the initiation of successive memory operations is:

cycle time

2. The first Operating System used in Microprocessor based system was:

CP/M

3. The Boolean expression A(B+C)+AB+AC is independent of the Boolean variable:
B

4. A byte addressable computer has memory capacity of 4096 KB and can perform 64 operations. An instruction involving 3 memory operands and one operator needs:
72 bits

5. Which addressing mode used in an instruction of the form ADD X, Y?
Absolute

6. The addressing mode used in the stack related instruction PUSH B is:
Register indirect

7. Parallel printers use:
Centronics interface

8. An assembler that runs on one machine, but generating code for another machine is called:
Cross assembler

9. A computer with a 32 bit wide data bus implements its memory using 8 K x 8 static RAM chips. The smallest memory that this computer can have is:
32 KB

10. To construct a binary Mod-N counter, the number of flip-flops needs is:
Log2N

11. The total number of possible ordered trees using 3 nodes A,B,C is :
12

12. The binary search algorithm is of order:
log n

13. The minimum number of edges in a connected cyclic graph on N vertices is :
N

14. The execution time of a recursive algorithm is given as:
T(n)=c+T(n-1), if n>1
=d, if n≤1
The order of the algorithm is :
n



15. Assuming 2 sorted lists of sizes ‘S1 ’ and ‘S2’, the worst case number of comparisons needed by the merge sort algorithm is :

S1+S2 -1

16. If an M x N matrix is stored in column major form, the index calculation required to access the (i, j)th entry is :

M .(j-1)+i

17. Four different algorithms L1, L2, L3 and L4 with orders of log(n), log{log(n)}, n log(n) and n/log(n) respectively have been proposed to solve a specified problem. Which of these is the best one?

L2



18. The principle of locality of reference is cited to justify the usage of :

Cache memory

19. On a particular system, using Quick sort, if it takes 100 msec to sort 1000 records, time taken to sort 100 records will be :

6.7msec



20. In traversing a tree using Breadth First Search, the data structure used is :

Queue



21. In a data base, the column of a table is referred to as the :

Attribute

22. The part of a program which accesses a shared resource and which should be executed indivisibly is called :

Critical section.

23. In a database design, if every non-key attribute is functionally dependent on the primary key, then the relation will be in :

Third normal form

 24. An attribute of one table matching the primary key of another table is known as :

Foreign Key

25. Given the functional dependencies X →Y; Y→Z; X →W and Z →AB, which of the following does not hold good ?
W → Z

26. SQL stands for --------------Query Language.

Structured

27. In SQL databases, the memory area used for internal processing is called?

Cursor

28. The number of relationships in which an entity can appear in an E-R diagram is called its:

Cardinality

29. The process of analyzing, archived data to obtain tactical and strategic information is often called?

Data mining

30. If a relation is in Boyce-Codd normal form, then it is also in?

3rd Normal form

31. RAID is a standard used in the design of?

Disk Memory

32. In an OS, the process of buffering data intended for a peripheral device, onto a disk area, for later bulk transfer is known as :

Spooling

33. Kernel in Operating System is :

A set of primitive functions upon which OS functions are built.

34. Which of the following scheduling policy is most suited for a time sharing OS?

Round Robin

35. For real time OS, which of the following is the most suitable scheduling scheme ?

Preemptive



36. In a paged memory, access times of primary and secondary memories are 10ns and 100ns respectively. If the average access time is 23.5 nsec, hit ratio is :

.85

37. The size of the virtual memory depends on the size of :

Address bus

38. Three processes A, B, C have peak time demands of 3, 4, 6 resource units respectively of a particular type. What is the minimum number of resources to be provided to ensure that deadlock never occurs?

11

39. A computer has 8 MB in main memory, 128 KB cache with block size of 4KB. If direct mapping scheme is used, how many different main memory blocks can map into a given physical cache block?

64

40. The technique that allows only one user to work with a file at a particular time is called :

Locking

41. The UNIX operating system was first installed in :

PDP/7



42. MS-DOS makes use of a hardware ROM containing device drivers called :

BIOS

43. In UNIX, which of the following system calls transform an executable binary file into a process?

Exec



44. Berkeley UNIX is popularly known as?

BSD Unix

45. In UNIX, ‘grep’ program is used for implementing :

Filters

46. TSR software refers to:

Terminate and Stay Resident

47. Unix and MS-DOS file system differ in the following feature:

Mounted file systems

48. In DOS, file allocation is carried out using?

FAT

49. In UNIX ‘link’ refers to :

New directory entry pointing to an existing file

50. For implementing recursion in a programming language, its compiler uses the following data structure extensively:

Stack

51. In a hypothetical language, assume that all arithmetic operators have equal precedence and associate to the left. The expression 6x3-2-1x2 evaluates to :

30

52. Which of the following instructions is redundant (can be implemented by other conventional ones) ?

Clear x

53. BNF is a meta language for :

Specifying a context free grammar

54. In JAVA language, what will be result of evaluating the expression 25 & 13?

9

55. In JAVA , after execution of the following statements, the values of x, m, and n will be :

int x, m, n;

m=10; n=15;

x=++m +n++;

x=26, m=11,n=16

56. What will be the output of the following JAVA code?

byte x=64, y;

y=(byte)(x<<2 br=""> system.out.println(y);


 0

57. Hot Java is a:
Web browser

58. Which of the following typecasts result in loss of information?
float to int

59. JAVA toolkit package containing classes that implement platform independent GUI is :
AWT

60. The JAVA language was originally called:
OAK

61. A program Graph has ‘start’ and ‘end’ nodes. The total number of paths from start to end is equivalent to the -----------set of test data required to test the software.
minimum

62. In a Program Graph, ‘X’ is an if-then-else node. If the number of paths from start node to X is ‘p’ number of paths from if part to end node is ‘q’ and from else part to end node is ’r’, the total number of possible paths through X is :
P(q+r)

63. The quality of a software which causes it to continue to operate despite application of invalid input is called:
Robustness

64. A program P calls 2 subprograms P1 and P2. If P1 can fail 50% of the times and P2, 40% of the times, P can fail -----------of the times.
70%

65. Consider a Program Graph (PG) with statements as nodes and control as edges. Which of the following is not true for any PG?
Always acyclic

66. In program design, if the number of conditions in a decision table is ‘n’, the maximum number of rules(columns) possible is :
2n

67. In Data Flow Diagrams(DFD), the procedure of expanding a process in the DFD into a set of equivalent smaller processes is called:
levelling

68. In programming languages, literal means:
String Constant

69. In Object Oriented Software Design, which of the following is not true?
An object can belong to 2 classes

70. Consider the program segment comprising of 3 statements:
y=x+y;
x=y-x
y=y-x where x and y are integers. Execution of these 3 statements do the following ?
Swap the contents of x and y

71. What will be the output of execution of the following statements in C?
for (i=3;i<15 br="" i=""> {printf(“% d”, i);
++i;
}
3 7 11

72. In C, puts (arg V[0]; prints the :
File name of executable code file

73. Who is credited with the creation of WWW?
Tim Berners-Lee

74. Which of the following is not a web browser?
(a)Lynx (b)Mosaic (c)Netscape Navigator (d)HTML
HTML

75. MIME is associated with the following :
E mail

76. The mode of communication in which transmission can be bidirectional. But in only one direction at a time is called:
Half Duplex

77. Error detection at the data link layer is achieved using?
CRC codes

78. In Serial communication, start and stop bits are used for ?
Synchronization


79. In a transmitter, the unmodulated signal is known as?
Baseband signal

80. In a computer network, routing issues are handled in?
Network Layer

81. In a computer network, functions of dialog management and synchronization are taken care of in the :
Session’s layer

82. Which of the following topologies has the highest reliability?
(a)Star (b)Bus (c)Ring (d)Mesh
Mesh

83. In data communications, bauds signify ---------- rate?
Signaling

84. ADSL is abbreviation for :
Asymmetric Digital Subscriber Line

85. The topmost layer in the ISO model that needs to be implemented in an intermediate node is the -----------layer.
Network

86. VPN denotes a :
Virtual Private Network

87. Data rate of a ring network is 20Mbps and signal propagates at 200m/µsec. The number of bits that can be placed on the channel of length 200km is :
20000bits

88. The frequency range over which coaxial cables are typically used is :
106 to 108 Hz

89. In internet, the well known port 21 refers to the application?
FTP

90. The maximum data rate possible through a noise free 4 kHz binary channel is :
8000 bps

91. The transparency provided in a distributed system where users cannot tell how many copies of a resource exist is termed as :
Replication transparency

92. Which of the following configurations can be said to be tightly coupled?
(a)Multicomputers (b) Workstations on a LAN
(c)Hypercubes (d) Shared memory multiprocessors
Shared memory multiprocessors

93. In distributed systems, RPC stands for?
Remote Procedure Call

94. Assume there are 4 file servers each with a 0.95 chance of being up at any instant. Probability of at least one being available is :
1-(.05)4

95. Which of the following category of classification of multiple computer systems is not generally used in practice?
(a)MISD (b)SISD (c)MIMD (d)SIMD
MISD

96. In a distributed system, to ensure that concurrent transactions do not interfere with each other, the transactions must have the following specific property:
Serializability

97. Translation Lookaside Buffer(TLB) is also called :
Associative Memory

98. In Internet Standards Terminology, RFC refers to:
Request For Comments

99. Which of the following denotes a network management protocol in an internet?
(a)SNMP (b)SMTP (c)ICMP (d)TCP

100. IEEE 802.11 is an IEEE standard for?
Wireless LAN

Tuesday 7 April 2009

CURRENT AFFAIRS-QUESTIONS & ANSWERS -MARCH-2009

CURRENT AFFAIRS QUESTIONS AND ANSWERS-MARCH-2009


1. Women’s Cricket World Cup -2009 won by?

England. They beat New Zealand in the Final by 4 wickets Nicki Shaw was named player of the match and Claire Taylor is the player of the tournament.
The first tournament was held in England in 1973 which also won by England. India never won the World Cup

2. Women’s Cricket World Cup -2009 is held in ?

Australia.

Next world cup is in 2013 which will be held in India.

3. Who won the Man of the Match award in the first Test between India and New Zealand at Hamilton, New Zealand?

Sachin Tendulkar

4. Name the Hungarian Prime Minister resigned after facing mounting criticism over his government's handling of the country's economic crash.



Ferenc Gyurcsany
5. Who is reinstated as chief justice of Pakistani Supreme Court after a series of protests and political turmoil

Iftikhar Mohammed Chaudhry

6. First elected female state premier in its history of Australia after a vote in Queensland. ?

Anna Bligh

7. Name the Sudanese opposition leader who has been released from prison, having been detained for two months for calling on Omar al-Bashir, Sudan's president, to hand himself over to the International Criminal Court (ICC).?




Hassan al-Turabi

8. Central Intelligence Agency (CIA) Chief who recently visited India to discuss the security situation in South Asia.?
Leon Penetta

9. Former Indian captain who equalled Mark Waugh's world record of 181 Test catches in opening day of the first Test against New Zealand at Seddon Park in Hamilton?
Rahul Dravid

10. Which country will host the second version of IPL, i.e. IPL-2009?

South Africa

11. Who has been selected for the 18th Aravindan Award instituted by the Chalachithra Film Society?

Marathi film-maker Paresh Mokashi

12. British reality TV star died at the age of 27 with cervical cancer, who became famous after appearing on the UK’s Big Brother reality Show?

Jade Gudi

13. Who won World Boxing Association (WBA) International and World Boxing Organisation (WBO) Inter-Continental lightweight titles in this year?



British boxer Amir Khan

14. Who became Madagascar's acting president after the army ended a months-long power struggle and swept him to power?



Andry Rajoelina, he is only 34-year-old.


15. Who is appointed as the new chief of the Indian Air Force?

Air Marshal PV Naik

16. Name the computer institute of Kerala which has made an entry into the Limca Book of Records for the largest number of students in a single centre?

Sree Sankaracharya Computer Centre (SSCT), in Kannur district

17. Who has been appointed as the next Ambassador of India to the United States of America?

Meera Shankar

18. Name the Indian-American who last week was appointed Federal Chief Technology Officer by President Barack Obama



Vivek Kundra,

He was reinstated to his job by Barack Obama at the White House, five days after he went on leave following Federal Bureau of Investigation's raids at his previous office, in a corruption case related to employees working there. He returned to the job after it became clear that he was not the 'target of investigations.

19. Name the Indian-American who is appointed as Assistant Secretary for Legislative Affairs Washington by U.S.President Barack Obama?



Richard Verma

20. Name the Monster like father who held his Daughter as Sex-Slave Prisoner in Cellar for 24 years and gave birth to 7 children?



Joseph Fritzl

21. Country which has been suspended by The African Union from the continental body, saying the replacement of the island nation's president by an army-backed politician constitutes a coup.

Madagascar


22. Who was unanimously re-elected to North Korea's rubber-stamp parliament recently?

Kim Jong Il

23. The Russian Mobile Company which launched its CDMA-based mobile services in Kerala circle after Tamil Nadu and Rajasthan?

MTS, (Mobile Tele Systems)
MTS brand is under Sistema Shyam TeleServices Limited which is a joint venture company between Sistema (LSE: SSA) of Russia and Shyam Group of India

24. Which Tennis Player has won WTA Player of the Year award-2009?

Serena Williams. This is her Second WTA Player of the Year award. She won the same in 2002.

25. The first person to be certified as a survivor of both US atomic bombings at the end of the Second World War?


Photograph Jemal Countess/ WireImage

Tsutomu Yamaguchi, a 93-year-old Japanese man who was in Hiroshima on a business trip on 6 August 1945 when a US B-29 dropped an atomic bomb on the city.



26. Which Indian will replace football star David Beckham, who has been endorsing Motorola as its global brand ambassador?



A.R.Rahman.
It is learnt that Rahman has been paid a whopping Rs.28 Crore for this particular endorsement deal. This makes him the highest paid Indian celebrity for any such product.

27. Who won the 20-20 Cricket series between South Africa and Australia in
South Africa ?

South Africa
(They beat Australia by 2-0).

28. Who is appointed as the Second Deputy Prime Minister of Saudi Arabia?

Prince Naif Bin Abdul Aziz

29. Who are the winners of Indian Open Badminton Title in 2009 ?

Men’s Single Title- Taufik Hidayat (Indonesia)
Women’s Single Title- Pi Hongyan ( France)


30. First national female judge of Dubai?
Judge Ibtisam Rashid Badwawi

31. New Prime Minister of Israel ?

Benjamin Netanyahu of Israel's Likud party

32. Who is appointed as Administrator of the United Nationals Development Programme(UNDP)?



Helen Clark

33. Who is named to the “Order of Companions of O R Tambo in Gold”, one of the highest state honours of South Africa?



Cuban President Fidel Castro
34. Who is the new Prime Minister of Malaysia ?
Datuk Seri Najib Tun Razak

35. The US billionaire who roared into space aboard a Russian rocket, making history as the first tourist to make the epic journey twice?



Charles Simonyi

36. The country which re-enters NATO's (North Atlantic Treaty Organisation) military command after more than 40 years?

France
37. Who has been appointed as the new Captain of Sri Lankan Cricket Team?

Kumar Sangakkara

38. Who wins Commonwealth Writers' Prize Best Book Award for Europe and South Asia region ?

Jhumpa Lahiri for her book 'Unaccustomed Earth'

39. Who purchased Mahatma Gandhi’s personal belongings which include Gandhiji’s iconic round-rimmed spectacles, a pocket watch, a pair of sandals, a plate and bowl and letters of authenticity for USD 1.8 million at an auction in New York from the owner, James Otis?

Vijay Mallya.

40. Palestinian Prime Minister who submitted his resignation in a move that could help usher in a power-sharing deal between Western-backed President Mahmoud Abbas and his rivals in the militant group Hamas?

Salam Fayyad

41. Home Secretary of India?

Gopala Krishna Pillai. He would assume charge after Madhukar Gupta, the present Home Secretary, retires on March 31. At present G.K. Pillai is the Commerce Secretary.

42. The president of Guinea-Bissau, who was assassinated by the military in a retaliatory attack for the killing of the army chief of the volatile and drug-corrupted west African state?.

Jo Bernardo Vieira

43. Fast bowler who has announced his retirement from international cricket after eight years of service for South Africa?

Andre Nel

44. The son of the poets Ted Hughes and Sylvia Plath , 46 years after his mother gassed herself while he slept?
Nicholas Hughes



Sylvia Plath with her son Nicholas Hughe. He was only a baby when she committed suicide.



Please send ur valuable suggestions and previous question papers of various exams to questionforall@gmail.com.
Custom Search