0% found this document useful (0 votes)
25 views28 pages

IBPS SO IT Officer Mains Exam - English-9

Uploaded by

Sathish Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views28 pages

IBPS SO IT Officer Mains Exam - English-9

Uploaded by

Sathish Kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 28

Toppersexam.

com

IBPS SO IT Officer Mains Exam -


English-9

Toppersexam.com
Toppersexam.com

IBPS SO IT Officer Mains Exam - English-9


Paper Questions

SUBJECT: IT Officer

Question 1 : A string of eight 0s and 1s is called a

(A) Megabyte

(B) byte

(C) kilobyte

(D) gigabyte

(E) None of these

Question 2 : A _________-- is approximately one billion bytes

(A) kilobyte

(B) bit

(C) gigabyte

(D) megabyte

(E) None of these

Question 3 : A ____________-- is approximately a million bytes

(A) gigabyte

(B) kilo byte

Toppersexam.com
Toppersexam.com

(C) megabyte

(D) tera byte

(E) None of these

Question 4 : ________________ is any part of the computer that you can physically touch

(A) hardware

(B) a device

(C) a peripheral

(D) an application

(E) None of these

Question 5 : The components that process data are located in the

(A) input device

(B) output device

(C) system unit

(D) storage component

(E) None of these

Question 6 : All of the following are examples of input devices EXCEPT a

(A) scanner

Toppersexam.com
Toppersexam.com

(B) mouse

(C) keyboard

(D) printer

(E) None of these

Question 7 : Which among the following was the first operational packet switching network, and the
predecessor of the Internet ?

(A) TELNET

(B) ARPANET

(C) USENET

(D) ALOHAnet

Question 8 : All of hte following are example of storage devices EXCEPT

(A) hard disk drive

(B) printer

(C) floppy disk drives

(D) CD drives

(E) None of these

Question 9 : The _______________--. Also called the aeoebrainsae of the computer, is responsible
for processing data

Toppersexam.com
Toppersexam.com

(A) mother board

(B) memory

(C) RAM

(D) central processing unit

(E) None of these

Question 10 : The CPU and memory are located on the

(A) expansion board

(B) mother board

(C) storage device

(D) output device

(E) None of these

Question 11 : Word processing, spreadsheet, and photo-editing are example of

(A) application software

(B) system software

(C) operating system software

(D) platform software

(E) None of these

Toppersexam.com
Toppersexam.com

Question 12 : __________________ is a set of computer programs used on a computer to help


perform tasks

(A) an instruction

(B) software

(C) memory

(D) a processor

(E) None of these

Question 13 : System software is the set of programs that enables your computer hardware devices
and _____________ software to work together

(A) Management

(B) processing

(C) utility

(D) application

(E) None of these

Question 14 : The PC and the Apple macintosh are examples of two different

(A) platforms

(B) application

(C) programs

(D) storage devices

(E) None of these

Toppersexam.com
Toppersexam.com

Question 15 : Apple macintoshes and PCs use different ______________ to process data and
different operating systems

(A) languages

(B) methods

(C) CPUs

(D) storage devices

(E) None of these

Question 16 : Services are computers that provide resources to other computers connected to a

(A) network

(B) mainframe

(C) supercomputer

(D) client

(E) None of these

Question 17 : Smaller and less expensive PC-based servers are replacing_____________-- in many
businesses

(A) supercomputers

(B) clients

(C) laptops

Toppersexam.com
Toppersexam.com

(D) mainframes

(E) None of these

Question 18 : _______________ are specially designed computers that perform complex calculations
extremely rapidly

(A) servers

(B) supercomputers

(C) Laptops

(D) mainframes

(E) None of these

Question 19 : DSL is an example of a(n) _________ connection

(A) network

(B) wireless

(C) slow

(D) broadband

(E) None of these

Question 20 : The difference between people with access to computers and the internet and those
without this access is known as the

(A) digital divide

Toppersexam.com
Toppersexam.com

(B) internet divide

(C) web divide

(D) broadband divide

(E) None of these

Question 21 : What is a segment of code that executes repeatedly based on a certain condition ?

(A) Function

(B) Array

(C) Loop

(D) None of the above

Question 22 : What is defined as a set of code used to carry out specific tasks ?

(A) Function

(B) Class

(C) Loop

(D) None of the above

Question 23 : What is used for a real world object that is to be used in a program ?

(A) Program

(B) Template

Toppersexam.com
Toppersexam.com

(C) Car Class

(D) None of the above

Question 24 : Standard ANSIC recognizes ______ number of keywords ?

(A) 30

(B) 32

(C) 24

(D) 36

Question 25 : Which one of the following is not a reserved keyword for C ?

(A) auto

(B) case

(C) main

(D) default

Question 26 : A C variable cannot start with

(A) A number

(B) A special symbol other thatn underscore

(C) Both of the above

(D) An alphabet

Toppersexam.com
Toppersexam.com

Question 27 : What does STL stand for ?

(A) Simple Template Library

(B) Standard Template Library

(C) Static Type Library

(D) Single Type-based Library

Question 28 : What is the difference between overloaded functions and overridden functions ?

(A) Overloading is a dynamic or run-time and Overriding is static or compile-time binding

(B) Redefining a function in a friend class is called function overriding while redefininig a function in
a derived class is called a overloaded function.

(C) Overloading is a static or compile time binding and Overriding is dynamic or run-time binding

(D) Redefining a function in a friend class is called function overloading while Redefining a function
in a derived class is called as overridden function.

Question 29 : Given the following class definitions and declaration statements, which one of these as
signments is legal at compile time ?
//Definitions:
interface A { }
class B { }
class C extends B implements A { }
class D implements A { }
//Declaration statements:
//[ ....]
B b = new B ();
C c = newC ( );

Toppersexam.com
Toppersexam.com

D d = new D();
//[ ....]
Select the one correct answer:

(A) c = d;

(B) d = c;

(C) Aa = d;

(D) d = (D) c;

Question 30 : Given the following class defintions and the reference declarations, what can be said
about the statement y = (Sub) x ?
//Class definitions:
class Super [ ] class
Sub extends Super { }
//Reference declarations
//.....
Super x;
Sub y;
//...
Select the one correct answer.

(A) Illegal at compile time.

(B) legal at compile time, but might be illegal at runtime.

(C) Definitely legal at runtime, but the (Sub) cast is not strictly needed.

(D) Definitely legal at runtime, and the (Sub) cast is needed.

Question 31 : What will be the output of the following Python code -


i=1
While True:
if i %2==0:
break
print(i)

Toppersexam.com
Toppersexam.com

it=2

(A) 1

(B) 13 5 7 ........0

(C) 1234

(D) none of the mentioned

Question 32 : What will be the output of the following Python code -


True=False
While True:
print(True)
break

(A) True

(B) False

(C) None

(D) None of the mentioned

Question 33 : What will be the output of the following Python code -


for i inrange(10):
if i ==5:
break
else:
print(i)
else
Print("Here")

(A) 1 2 3 4 Here

(B) 0 1 2 3 4 5 Here

(C) 01234

Toppersexam.com
Toppersexam.com

(D) 1 2 3 4 5

Question 34 : Smart card is

(A) special purpose cards

(B) microprocess cards

(C) processing unit contains memory for storing data

(D) Processing unit for software handling

Question 35 : A world wide web contains web pages

(A) residing in many computers

(B) created using HTML

(C) with links to other web pages

(D) residing in many computers linked together using HTML

Question 36 : When a real time telephone call between people is made over the Internet using
computers, it is called.

(A) a chat session

(B) an E-mail

(C) an instant message

(D) Internet telephony

Toppersexam.com
Toppersexam.com

Question 37 : The process of trading goods over the Internet is known as

(A) E-selling-n- buying

(B) E-trading

(C) E-finance

(D) E- salesmanship

Question 38 : What is the total number of quantification available in artificial intelligence ?

(A) 4

(B) 3

(C) 1

(D) 2

Question 39 : What does AI system use to recieve the input and act on the environement ?

(A) Actuator

(B) Capacitor

(C) Sensor

(D) Both acutator and sensor

Toppersexam.com
Toppersexam.com

Question 40 : Which one of the following is not the type of the Queue ?

(A) Linear Queue

(B) Circular Queue

(C) Double ended Queue

(D) Single ended Queue

Question 41 : The time complexity of enqueue operation in Queue is______

(A) O (1)

(B) O (n)

(C) O(logn)

(D) O (nlogn)

Question 42 : Which of the following that determines the need for the circular Queue ?

(A) Avoid wastage of memory

(B) Access the Queue using priority

(C) Follows the FIFO principle

(D) None of the above

Question 43 : _______ was the first spread sheet on a micro computer ?

(A) SpreadPRO

Toppersexam.com
Toppersexam.com

(B) Visi Calc

(C) Lotus 1-2-3

(D) Excel

(E) Star Calc

Question 44 : Forms that are used to organise business data into rows and columns are called ?

(A) transaction sheet

(B) sheet - spreads

(C) registers

(D) business - forms

(E) spread sheets

Question 45 : ______ returns the least common multiple

(A) RTLCM ( )

(B) TLCM ( )

(C) LCM ( )

(D) LCCM ( )

(E) None of these

Question 46 : Which of the following language uses the classes but not the polymorphism concept ?

Toppersexam.com
Toppersexam.com

(A) Procedure Oriented language

(B) Object-based language

(C) Class-based language

(D) If classes are used, then the polymorphism concept will always be used in the programming
languages

Question 47 : Which of the following OOP concept is not true for the C++ programming language ?

(A) A class must have member functions

(B) C++ Program can be easily written without the use of classes

(C) At least one instance should be declared within the C++ program

(D) C++ Program must contain at least one class

Question 48 : Calculate the average waiting time of the system using SJF scheduling :
Process ID Arrival Time Burst Time (ms)
P1 0 5
P2 0 3
​P3 0 8

(A) ​3.66 ms

(B) 4.33 ms

(C) 3.33 ms

(D) 4.00 ms

Toppersexam.com
Toppersexam.com

Question 49 : What is Ostrich algorithm associated with ?

(A) Deadlock Prevention

(B) Deadlock Avoidance

(C) Deadlock Ignorance

(D) Deadlock Recovery

Question 50 : What is the full form of RAID ?

(A) Redundant Array of Indpendent Disks

(B) Redundant Array of Important Disks

(C) Random Access of Independent Disks

(D) Random Access of Important Disks

Question 51 : What do you mean by broadcasting in Networking ?

(A) It means addressing a packet to all machine

(B) It means addressing a packet to some machine

(C) It means addressing a packet to a particular machine

(D) It means addressing a packet to except a particular machine

Question 52 : What is the size of Source and Destination IP address in IP header ?

(A) 4 bits

Toppersexam.com
Toppersexam.com

(B) 8 bits

(C) 16 bits

(D) 32 bits

Question 53 : What is typical range of Emphemeral ports ?

(A) 1 to 80

(B) 1 to 1024

(C) 80 to 8080

(D) 1024 to 65535

Question 54 : The OSI model sonsists of _________ layers

(A) nine

(B) eight

(C) seven

(D) five

(E) eleven

Question 55 : Which of the following is also known as LAN card ?

(A) Network connector

(B) modem

Toppersexam.com
Toppersexam.com

(C) NIC

(D) Internet card

(E) none of these

Question 56 : The layer is the layer closest to transmission medium

(A) transport

(B) network

(C) data link

(D) physical

(E) none of these

Question 57 : Repeaters operate in which layer of OSI model ?

(A) Application layer

(B) Presentation layer

(C) Physical layer

(D) Transport layer

(E) Data link layer

Question 58 : _______command makes the updates performed by the transaction permanent in the
database ?

Toppersexam.com
Toppersexam.com

(A) ROLLBACK

(B) COMMIT

(C) TRUNCATE

(D) DELETE

Question 59 : How can you change "Thomas" into "michel" in the "LastName" column in the Users
table ?

(A) UPDATE User SET LastName = 'Thomas' INTO LastName = 'Michael'

(B) MODIFY Users SET LastName = 'Michel' WHERE LastName='Thomas'

(C) MODIFY Users SET LastName = 'Thomas' INTO Last Name = 'Michael'

(D) UPDATE Users SET LastName = 'Michel' WHERE LastName = 'Thomas'

Question 60 : On an Excel sheet, the active cell is indicated by

(A) a dark wide border

(B) a dotted border

(C) a blinking border

(D) None of the above

Solutions & Answers

Question 1 :

Correct Answer:B

Toppersexam.com
Toppersexam.com

Question 2 :

Correct Answer:C

Question 3 :

Correct Answer:C

Question 4 :

Correct Answer:A

Question 5 :

Correct Answer:C

Question 6 :

Correct Answer:D

Question 7 :

Correct Answer:B

Question 8 :

Correct Answer:B

Question 9 :

Correct Answer:D

Question 10 :

Correct Answer:B

Question 11 :

Correct Answer:A

Question 12 :

Toppersexam.com
Toppersexam.com

Correct Answer:B

Question 13 :

Correct Answer:D

Question 14 :

Correct Answer:A

Question 15 :

Correct Answer:C

Question 16 :

Correct Answer:A

Question 17 :

Correct Answer:D

Question 18 :

Correct Answer:B

Question 19 :

Correct Answer:D

Question 20 :

Correct Answer:A

Question 21 :

Correct Answer:C

Question 22 :

Correct Answer:A

Toppersexam.com
Toppersexam.com

Question 23 :

Correct Answer:B

Question 24 :

Correct Answer:B

Question 25 :

Correct Answer:C

Question 26 :

Correct Answer:C

Question 27 :

Correct Answer:A

Question 28 :

Correct Answer:B

Question 29 :

Correct Answer:C

Question 30 :

Correct Answer:B

Question 31 :

Correct Answer:D

Question 32 :

Correct Answer:D

Question 33 :

Toppersexam.com
Toppersexam.com

Correct Answer:C

Question 34 :

Correct Answer:B

Question 35 :

Correct Answer:D

Question 36 :

Correct Answer:D

Question 37 :

Correct Answer:D

Question 38 :

Correct Answer:D

Question 39 :

Correct Answer:D

Question 40 :

Correct Answer:D

Question 41 :

Correct Answer:A

Question 42 :

Correct Answer:A

Question 43 :

Correct Answer:B

Toppersexam.com
Toppersexam.com

Question 44 :

Correct Answer:E

Question 45 :

Correct Answer:C

Question 46 :

Correct Answer:B

Question 47 :

Correct Answer:D

Question 48 :

Correct Answer:A

Question 49 :

Correct Answer:C

Question 50 :

Correct Answer:A

Question 51 :

Correct Answer:A

Question 52 :

Correct Answer:D

Question 53 :

Correct Answer:D

Question 54 :

Toppersexam.com
Toppersexam.com

Correct Answer:C

Question 55 :

Correct Answer:C

Question 56 :

Correct Answer:D

Question 57 :

Correct Answer:C

Question 58 :

Correct Answer:B

Question 59 :

Correct Answer:D

Question 60 :

Correct Answer:A

Toppersexam.com

You might also like