Exam Details

Subject
Paper
Exam / Course
Department
Organization Kerala Public Service Commission
Position laboratory technical assistant
Exam Date 06, May, 2015
City, State kerala,


Question Paper

106/2015

Maximum: 100 marks Time 1 hour and 15 minutes
1. Processed data is called:

Value Information


Summary Program


2. Scanner is a

pnmary memory output


.input secondary memory


3. Difference between compiler and interpreter is

Compiler checks the code as a whole and interpreter checks line by line of the code


Interpreter checks the code as a whole and compiler checks line by line of the code


Compiler used to find syntax errors while interpreter used to find run t.i,lne error


Interpreter used to find syntax errors while compiler used to find run time error


4. Example of operating system:

Microsoft XP Microsoft office


Adobe reader Adobe page maker


5. volatile memory.

Hard disk DVD


CD RAM


6. Mouse was invented by

Charles Babbage Douglas Engelbart


Alan Turing John McCarthy


7. Input device used to read cheques in banks:

MICR OCR


OMR barcode reader


[P.T.O.]
8. CD is
Combined Disk Casual Disk CD) Cosmetic Disk Compact Disk
9. Example of output device:


Microphone Plotter


Joy stick CD) Light pen


10. LCD is:

Liquid Crystal Display Liberal Circuit Display


Light Crystal Display CD) Light Circuit Display


11. Example for secondary memory

RAM ROM


CD CD) All the above


12. is a system software.

Operating system Microsoft word


PROM DRAM


13. Debugging is the process of

finding errors


converting source code to machine code


writing code in a language
CD) Converting source code to assembly language



14. Example for machine language:

Assembly language


LOTUS


15. Example for application software:

Linux


Assembler


16. In hexadecimal number system, stands for:
5
2 106/2015 4
CD) Binary language BASIC
CD) Interpreter Microsoft excel
CD) 14 15 A


17. The last number in octal number system is

(D)10
18. The base of the number system is

The number of digits in the number system


The last number of number system


The first number of number system


The sum of digits of number system


19. DTP is:

Digital Text Printing Display Text Printing


Desktop Publishing Display Text Publishing


20. Define latency time:

Time required to find track Time required to find sector


Total time required to find the data None of the above


2l. The binary number corresponding to 5

101 05


100 01001


22. a number in number system:

binary octal


decimal hexadecimal


23. In sign magnitude form, sign of the number is represented on:

MSB LSB


MDN LDN


24. One's compliment of 1001 is

1001 1000


0101 0110


25. complement is calculated by

Adding 1 to one's complement Adding 2 to one's complement


Adding 1 to it's binary equivalent Adding 2 to it's binary equivalent


A 5 106/2015 [P.T.O.]
26. Find the decimal equivalent of 1010101

75 85


1010101 101010


27. The symbol used for input/output operations in flow chart:

Rectangle Parallelogram


Rhombus Oval shape


28. What is topology in computer network?

Arrangement of system in network Number of system in network


Position of server in network Area covered by the network


29. Define nodes in network:

Server Systems


Type of protocol Type of connection


30. Expansion of TCPIIP is:

Transport Control Protocol/Internet Protocol


Transmission Control Protocol/Internet Protocol


Transport Control Protocol/Intranet Protocol


Transmission Control Protocol/Intranet Protocol


31. Booting is the process of

Detecting hardware connected to PC Loading OS on the PC


Scanning the system for VIRUS Installing new software in the system


32. Example for a basic gate:

OR XOR


NOR NAND


33. How can we make a NAND gate?

Using AND, OR NOT Using AND NOT


UsingNOR&AND Using NOR, AND OR


34. Truth table of OR will give:

True value for all possible inputs



True value when both the.inputs are true


True value when anyone of the inputs are true


True value when both the inputs are false


35. Which one of the following cannot be used as an identifier in

name name123


break break_123


.36. How many bytes of memory is needed to save a float variable?
W 8 4

37. If you have to execute different lines of code for different choices of a particular variable. Which one of the following control statements will you use?

for while


do....while switch


38. Which one of the following is exit controlled loop?

for while


do....while switch


39. for

cout«

What will be the output of the program?

54321 5432


12345 Syntax error


40. int i
k
cout «k«i«j;
What will be the output of the above mentioned code?

1276 1376


1367 1266


41. Which one of the following is unary operator?

All the above
42. By default class variables are

Private Public


Protected All the above


43. Class type variables are called as

Member variable Private variable


Object Constructor


44. Specialty of constructor

Its name is same as class name It will not have a return type


It can be overloaded All the above


45. Collection of variables of same datatype is

array structure


object loop


46. Free store operators in are:

new delete


I array structure


47. Why we use scope resolution operator?

To define a structure inside a class To define a function outside the class


To define an array inside the class To define a class outside the class


48. Which operator will you use to access members of structure using structure variable?

dot operator arrow operator


underscore hyphen


49. Syntax of declaring an object of a class in

class_name object_name;



class_name object_name=new class_name;


class_name object_name= new class_name


class_name object_name=class_name


50. A constructor is called when:

we call the constructor using object of the class


the object of the class is created


a member function is called


we define the constructor



106/2015 8 A
51. Encapsulation is implemented in using:

structure class


array function


52. Which symbol is used for commenting in

Both and
53. Define function overloading:

same signature with different function name


same function name with same parameter list


same return type with different function name


same function name with different signature


54. Which one of the following is multiple inheritance?

A child class derived from another child of a parent class


A parent with more than one child


A child with more than one parent


More than one type of inheritance is included


55. ink If p is having the value 100. What will be the output of the following code Cout«**p;
5

100


The value saved at the memory location 5


The value saved at the memory location 100


56. Java

Compiled Interpreted


Both and None of the above


57. E"llansion of JVM

Java Virtual Machine Java Vigilant Mechanism


Java Virtual Mechanism Java Vigilant Machine


58. Specialty of main function in java is

Public Static


Void All the above


59. If we declare 4 objects of a class. How many copies of static variable can be produced:

3 2


1 4


60. How runtime error in Java is handled?

Using new and delete operator



Using constructor and destructor method


Using try catch method


Using JVM



61. Which datatype is used to declare a variable for saving single alphabet in

string letter


char word


62. Which keyword is used to include packages in Java?

include initiate


implements import


63. How multiple inheritance is introduced in Java?

Using packages Using class


Using utilities Using interfaces


64. Which one of the following is used to find remainder in VB?

1 Mod
65. Difference between applet and simple java program is

Applet program is not compiled


Applets are not written java



In applet program packages cannot be used


Applet program will not have a main function


106/2015 10 A
66. How integer variables are declared in VB?

int declare a as integer


dim a as Integer a is integer


67. In VB which window will help you in viewing the position of the form in the main window?

Properties window Position window


Project Window Layout window


68. The keyword used to declare constant value is

Constant Cons


Con Const


69. In a string constant always ends with:


70. mode helps to open file in input mode.

file input open input


lOS III mode:: in


71. A function calling itself is called function.

Recalling Reusing


Redundancy Recursive


72. Which one of the following is not a DML command?

Delete from Insert into


Alter Update


73. Expansion of SDLC

System Demonstration in Last Cycle Series Demonstration in Last Cycle


Series Development Life Cycle System Development Life Cycle


74. Which query will you use to remove a table from db?

delete from truncate


drop remove


75. What is tuple in dbms?

Number of tables Number of columns


Number ofrows Number of database


76. Foreign key is

Primary key of another table


Primary key of the same table



Any column other than primary key of another table


Any column other than primary key of same table


77. The command used to add a column in a table:

Insert into Update


Alter Add


78. In SQL, which command 1S used to make permanent changes made by statements ill transaction?
SAVE EXIT
DONE COMMIT
79. The PROJECT command will create new table that has:

The selected rows of the parent table


The selected columns of parent table



The selected datatype of the parent table


The selected size of the columns



80. In a a parent record type can be linked to one or more "child" record types, but a child record type can have only one parent:

Network database Relational database


Distributed database Hierarchical database


81. 'The schenduruney wildlife sanctuary' is in

Ezhimala Thenmala


Aralam Thekkadi


82. The Indian origin mathematician who won prestigious global prize 'Fields medal' known as Nobel Prize in mathematics':

Manjul Bhargava Viswanath Chopra


Kishore Varma Anandha Moorthy



106/2015 12 A

83. The Asian country which host the FIFA world cup of 2022

Saudi Arabia Qatar


Italy Australia


84. A scheme started by the :Central Government to provide food to senior citizens who cannot care for themselves:

Annadan Operation food supply


Operation oldman Annapurna


85. Among the names of four nationalists given below, the one who born in Maharastra

Gopala Krishna Gokhale Annie Beasant


Nehru Lala Lajpath Rai


86. The footballer who scored maximum number of goals in the world cups:

Lionel messi Diego Maradona


Microslave Kloose Yorgan Klinsman


87. 'Sarvodaya movement' is related with:

Justice Ranade Archarya Vinobabava


Jayaprakash Narayanan A.K. Antony


88. The mountain ranges that separate south India from North India:

Western Ghatt Vindya -Satpura


Himalaya Sabarimala


89. The 20th Common Wealth games held in 'Glasco' recently. Where is it? CA) Scottland England
Holland Spain
90. The third oldest football tournament in the world is in India:

Federation cup Nehru Trophy


Durant cup Swaraj Trophy


91. The period of 12th Five Year Plan in India:

1982-1987 2007-2012


2002-2007 2012-2017


A 13 106/2015 [P.T.O.)
92. 'Chotta Nagpur plateau' in India is on the:

North West


South East


93. Among the following the name of Mannath Padmanabhan is related with:

Yokashema Sabha Nair Service Society


Atmiya Sabha Sree Narayana Yogam


94. Gandhiji's autobiography experiments with truth' first published in

Gujarati Bengali


Malayalam Marati


95. Nagaland produced a brave heroine during the Civil Disobedience movement called:

Rani Lakshmi Bai Ishom Sharma


Captain Lakshmi Rani Gaidiliu


96. The propounder of the theory that 'Ananda' [happiness] should be the touch stone of any human activity

Kumara Guru Swami Sradhanandha


Brahman and Swami Siva Yogi Sankaracharya


97. The place 'Chembazhanthi' is connected with the reformer:

Kumaranasan Sree Narayana Guru


Ayyankali Ramaswami Naikar


98. U.N.O. observes October 2nd as

U.N. Day. International Service Day


Gandhi's Birthday International Non-Violence Day


99. The Great Yogi, who was the Guru of Sri Narayana Guru, Chattampi Swamikal and Ayyankali

Thycaud Ayya Swamikal Vagbadananda


Jyothirao Phule Periyar Swamikal


100. The autobiography of former foreign minister Natwar Singh which attained popular attention recently:

Vulgarness of politics The Broken Wings


One Life is Not Enough My struggles


Other Question Papers

Subjects

  • accounts and auditing
  • arab culture and islamic studies
  • arabic
  • automobile engineering
  • biomedical engineering
  • chemical engineering
  • chemistry
  • commerce
  • economics
  • electrical
  • electrical and electronics engineering
  • electronics and communication engineering
  • electronics and instrumentation
  • english
  • food science
  • geography
  • hindi
  • history
  • homescience
  • information technology
  • islamic history
  • kannada
  • language
  • machanical engineering
  • malayalam
  • mathematics
  • mechanical and production engineering
  • mechanical engineering
  • music
  • philosophy
  • physical education
  • physics
  • political science
  • psychology
  • public administration
  • rural economics
  • sanskrit
  • sewing
  • social education
  • sociology
  • statistics
  • tamil
  • technician
  • tool and die engineering
  • travel and tourism
  • urdu
  • women police constable
  • women sub inspector of police
  • work assistant
  • work superintendent
  • zoology