Showing posts with label Multiple Choice. Show all posts
Showing posts with label Multiple Choice. Show all posts

Monday, February 22, 2010

IT Fundamental-V

1. One type of system software, the operating system __________.
a. contains instructions that coordinate a computer's activities
b. is only important when a computer processes information
c. is not loaded into memory when a computer is first turned on
d. is loaded into memory from a floppy disk each time a computer is turned on

2. Application software can be used __________.
a. as a productivity/business tool and to facilitate communications
b. to assist with graphics and multimedia projects
c. to support household activities, for personal business, or for education
d. all of the above

3. A(n) __________ is a graphical element (usually rectangular or circular in shape) that can be clicked to cause a specific action to take place.
a. button
b. icon
c. menu
d. window

4. An application can be started by __________.
a. dragging its icon over the Start button
b. pointing at a command followed by an arrow
c. clicking its program name on a menu or submenu
d. all of the above

5. __________ involves developing a word processing document by entering text or numbers, inserting graphical images, and performing other tasks using an input device.
a. Creating
b. Editing
c. Formatting
d. Printing

6. To cut involves removing a portion of a document and electronically storing it in a temporary storage location called the __________.
a. Warehouse
b. Cupboard
c. Desktop
d. Clipboard

7.__________ involves changing the appearance of a word processing document.
a. Creating
b. Editing
c. Formatting
d. Printing

8. A __________ is a special window displayed by a program to provide information, present available options, or request a response.
a. menu
b. dialog box
c. title bar
d. submenu

9. Wizards are __________.
a. answers to questions that people frequently ask about an application
b. the electronic equivalent of a user manual, usually integrated into an application software package
c. step-by-step instructions using real examples to show how to use an application
d. automated assistants that help complete a task by asking questions and performing actions based on the answers

10. The __________ entered in a spreadsheet cell identifies the data and helps organize the worksheet.
a. label
b. value
c. formula
d. function

Thursday, January 28, 2010

IT Fundamental-IV

1. A group of interrelated or interacting elements forming a unified whole can be best defined as:
a. Communication technologies.
b. An information system.
c. A company network.
d. Interorganizational system.

2. The majority of organizations today would be classified as:
a. Open nonadaptive systems.
b. Closed nonadaptive systems.
c. Open adaptive systems.
d. Closed adaptive systems.

3. Which one of the following would NOT be considered a good example of information?
a. The company's forklift operator's social security number is 456-38-1276.
b. The retail price of blue widgets is $28.99.
c. The company owes $3,847 to vendor number 10782.
d. The numbers 12367892, 436897458, and 837621984.

4. In the internetworked e-business enterprise, an extranet refers to:
a. A network inside the enterprise.
b. A network between an enterprise and its trading partners.
c. A local area network within the enterprise.
d. A wide area network within the enterprise.

5. A manager needs to have summary sales information by product line available to her on a timely basis when purchasing decisions need to be made. The type of information system most likely to provide this information is a:
a. Management information system.
b. Decision support system.
c. Transaction processing system.
d. Process control system.

6. A physician wants an information system that can help in the diagnosis of rare diseases by suggesting diagnostic procedures and help in interpreting the symptoms that are found. This type of information system is called a(n):
a. End user information system.
b. Integrated information system.
c. Executive information system.
d. Expert system.

7. Developing new products and services that are fundamentally different from the way business has been conducted in an industry would be considered a(n):
a. Cost leadership strategy.
b. Innovation strategy.
c. Product differentiation strategy.
d. Strategic dominance strategy.

8. Establishing new business linkages and alliances with customers, suppliers, and competitors is an example of a(n):
a. Alliance strategy.
b. Differentiation strategy.
c. Innovation strategy.
d. Gowth strategy.

9. Charles Schwab & Company's use of online discount stock trading is an example of the way in which a firm can use strategic information system technology. Their primary competitive strategy was to:
a. Establish cost leadership.
b. Improve operational efficiency.
c. Promote business innovation.
d. Build strategic information resources.

10. The value chain views a series, chain, or network of basic activities that add value to products and services. One of the primary activities in a firm's "value chain" typically includes:
a. Outbound logistics.
b. Procurement of resources.
c. Human resource management.
d. Technology development.

Monday, January 11, 2010

Java Fundmental-II

1. The Java language is:
a. Interpreted at run time.
b. Compiled to obtain executable target files.
c. Designed for recursive string processing.
d. Designed for matrix algorithm processing.

2. The Java language is designed to:
a. Run on a simulated Java machine.
b. Run directly on Intel microprocessors.
c. Designed for RISC computing architectures.
d. Designed for CISC computing architectures.

3. The Java language will run:
a. On any computer where the Java simulated machine is installed.
b. On any computer attached to the Internet.
c. On any computer with a Web browser installed.
d. On any computer which will also run C++.

4. The Java language provides the programmer with:
a. No ability to access or manipulate memory.
b. Protected access to machine memory.
c. Dynamically created data structures linked with pointers.
d. Access to the memory of a local machine through a network.

5. The Java language is:
a. An object oriented programming language.
b. A structured programming language.
c. A procedural programming language.
d. A stack oriented programming language.

6. The Java language was designed:
a. To create event driven programs with graphical interfaces.
b. To unify all different approaches to object orientation.
c. To provide a learning tool for beginning programmers.
d. To force programmers to implement all needed program elements themselves.

7. The Java language has most in common with the following language:
a. C#.                      b. C.                  c. C++.                 d. Basic.
8. The basis for object oriented programming can be found in which of the following?
a. All of the items listed.
b. It is an outgrowth of the availability of powerful hardware.
c. It is useful in the development of graphical user interfaces.
d. It solved some of the problems associated with structured programming.

9. That unit of code in Java that contains the specifications for objects is:
a. A class.          b. A method.         c. An instance variable.      d. A constructor.

10. Which of the following is true?
a. An object receives copies of all instance variables, but shares method code.
b. An object receives copies of all instance variables and all methods.
c. An object receives copies of all methods, but shares instance variables.
d. An object shares both instance variables and methods with other objects.

11. Encapsulation refers to the idea that:
a. Instance variables can only be accessed by means of methods.
b. Methods can only be accessed by means of instance variables.
c. All other methods must be defined within the main() method.
d. Instance variables can only be declared within methods.

12. In order to use objects of a given class the programmer needs to:
a. Know what the methods do, but not how they do it.
b. Know all of the instance variables of the class.
c. Know how the method algorithms were implemented.
d. Know the types of all of the instance variables of the class.

13. Java programs have to be saved with the following extension:
a. .java               b. .txt           c. .doc             d. .xls

14. In Java programs, the name of the class has to:
a. Be the same as the name of the file it is saved in.
b. Be different from the name of the file it is saved in.
c. Be all capital letters.
d. Be all small letters.

Friday, November 06, 2009

Computer Fundamental-IX

>
1. Which of the following is a web browser?
a. Paint
b. Power point
c. Firefox
d. Word

2. Most of the commonly used personal computers/laptops do not have a command key known as-
a. Turnover
b. Shift
c. Alter
d. Delete

3. What is the full form of USB as used in computer related activities?
a. Universal security Block
b. Ultra serial block
c. United service block
d. Universal serial bus

Sunday, November 01, 2009

Computer Fundamental-VIII


1. To indent the first paragraph of your report, you should use this key
a. Space bar
b. Return key
c. Tab key
d. Shift key

2. _______ are distinct items that don’t have much meaning to you in a given context.
a. Fields
b. Data
c. Queries
d. Properties

3. A website address is a unique name that identifies a specific _______ on the web.
a. Web browser
b. PDA
c. Website
d. Link

4. An example of a telecommunications device is a
a. Keyboard
b. Modem
c. Mouse
d. Printer

5. Which is the best definition of a software package?
a. An add-on for your computer such as additional memory
b. A set of computer programs used for a certain function such as word processing
c. A protection you can buy for a computer
d. The box, manual and license agreement that accompany commercial software

Computer Fundamental-VII


1. Special effect used to introduce slides in a presentation are called
a. Effect
b. Custom animation
c. Transition
d. Animation

2. Computers send and receive data in the form of ____________ signals.
a. Analog
b. Digital
c. Modulated
d. All of the above

3. Most World Wide Web pages contain commands in the language.
a. NIH
b. URL
c. HTML
d. IRC

4. _____________ are graphical objects used to represent commonly used application.
a. GUI
b. Drivers
c. Windows
d. Icons

5. Which of the following operating systems is not owned and licensed by a company?
a. Unix
b. Linux
c. Windows 2000
d. Mac

6. In any window, the maximize button, the minimize button and the close button appears on
a. the title bar
b. menu bar
c. status bar
d. tool bar

7. Which is the slowest internet connection service?
a. Digital subscriber line
b. T1
c. Dial up service
d. Cable modem

8. Every component of your computer is either
a. Software of CPU/RAM
b. Hardware or software
c. Application software or system software
d. Input devices or output devices

9. Checking that a pin code number is valid before it is entered into the system in an example of
a. Error connection
b. Backup and recovery
c. Data preparation
d. Data validation

10. A compiler translates higher-level programs into a machine language program, which is called
a. Source code
b. Object code
c. Compiled code
d. Beta code

11. A field that uniquely identifies which person, thing or event the recode describes is a
a. File
b. Data
c. Field
d. Key

12. The ability to find an individual item in a file immediately
a. Sequential access
b. File allocation table
c. Direct access
d. Directory

13. Computers connected to a LAN can
a. Run faster
b. Go on line
c. Email
d. Share information and/or share devices

14. A CD-RW disk
a. Has a faster access than an internal disk
b. Is a form of optical disk, so it an only be written once
c. Holds less data than a floppy disk
d. Can be erased and rewritten

15. The two major categories of software include
a. Operating system and utility
b. Personal productivity and system
c. System and application
d. System and utility

16. Windows 95, windows 98 and windows NT are known as
a. Processors
b. Domain names
c. Modems
d. Operating system

17. Information on a computer is stored as
a. Analog data
b. Digital data
c. Modem data
d. Watts data

18. To take information from one source and bring it to your computer is referred to as
a. Upload
b. Download
c. Transfer
d. De-link

19. A program that works like a calculator for keeping track of money and making budgets
a. Calculator
b. Keyboard
c. Spreadsheets
d. Scholastic

20. Each box in a spreadsheet is called
a. Cell
b. Empty space
c. Record
d. Field
__________________________________________________________________________________

Tuesday, October 13, 2009

Computer Fundamental-VI


1. What type of program controls the various computer parts and allows the user to interact with the computer?
a. Utility software
b. Operating system
c. Word processing software
d. Database program

2. What is the term for unsolicited email?
a. Spam
b. Usenet
c. Backbone
d. Flaming

3. What is backup?
a. Adding more components to your network
b. Protecting data by copying it from the original source to a different destination
c. Filtering old data from the new data
d. Accessing data on tape

Thursday, October 08, 2009

Computer Fundamental-V


1. How many options does a binary choice offer?
a. One
b. Two
c. It depends on the amount of memory in the computer
d. It depends on the speed of the computer’s processor

Computer Fundamental-IV


1. The component is required to process data into information and consists of integrated circuits-
a. Hard disk
b. RAM
c. ROM
d. CPU

Monday, October 05, 2009

Computer System & Architecture

1. Fetch and decode are associated with the
a. I-Cycle
b. E-Cycle
c. Expansion slot
d. Expansion card

Saturday, October 03, 2009

Computer Fundamental-III


1. ____________ is when the more power-hungry components, such as the monitor and the hard drive, are put in idle.
a. Hibernation
b. Power down
c. Standby mode
d. The shutdown procedure

Computer Fundamental-II


1. What menu is selected to cut, copy and paste?
a. File
b. Tools
c. Special
d. Edit

Computer Fundamental-I


1. What menu is selected to print?
a. Edit
b. Special
c. File
d. Tools

Thursday, September 24, 2009

Linux Fundamentals - III

1. Which one is the heart of the Operating system:
a. Kernel
b. Hard disk
c. RAM
d. Shell

Linux Fundamentals - II

1. What is the most important difference between shells:
a. They are of different environment
b. They are different command language
c. They are different positional parameters
d. They are of different shell variables

Friday, September 11, 2009

Monday, August 24, 2009

Technical Aptitude

1. A 2MB PCM (pulse code modulation) has
a) 32 channels
b) 30 voice channels & 1 signaling channel.
c) 31 voice channels & 1 signaling channel.
d) 32 channels out of which 30 voice channels, 1 signaling channel, & 1 Synchronization channel.
Ans: (c)

2. Time taken for 1 satellite hop in voice communication is
a) 1/2 second b) 1 seconds c) 4 seconds d) 2 seconds
Ans: (a)

3. Max number of satellite hops allowed in voice communication is:
a) only one b) more than one c) two hops d) four hops
Ans: (c)

4. What is the maximum Decimal number that can be accommodated in a byte?
a) 128 b) 256 c) 255 d) 512
Ans: (c)

5. Conditional results after execution of an instruction in a micro processor is stored in
a) register b) accumulator c) flag register d) Program Status Word
Ans: (d)

6. Frequency at which VOICE is sampled is
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)

8. Purpose of PC (Program Counter) in a Microprocessor is
a) To store address of TOS (Top Of Stack)
b) To store address of next instruction to be executed.
c) Count the number of instructions.
d) To store base address of the stack.
Ans: (b)

9. What action is taken when the processor under execution is interrupted by a non-maskable interrupt?
a) Processor serves the interrupt request after completing the execution of the current instruction.
b) Processor serves the interrupt request after completing the current task.
c) Processor serves the interrupt request immediately.
d) Processor serving the interrupt request depends upon the priority of the current task under execution.
Ans: (a)

10. The status of the Kernel is
a) task b) process c) not defined. d) None of the above.
Ans: (b)

11. To send a data packet using datagram , connection will be established
a) before data transmission.
b) connection is not established before data transmission
c) no connection is required.
d) none of the above.
Ans: (c)

12. Word alignment is
a) Aligning the address to the next word boundary of the machine.
b) Aligning to even boundary.
c) Aligning to word boundary.
d) None of the above.
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 variables.
d) smaller variables are moved first than the bigger ones. e) none of the above.
Ans: (b)

14 What is the type of signaling used between two exchanges?
a) inband
b) common channel signaling
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)

16. Memory allocation of variables declared in a program is
a) allocated in RAM.
b) allocated in ROM.
c) allocated on stack.
d) assigned to registers.
Ans: (c)

17. A software that allows a personal computer to pretend as a computer terminal is
a) terminal adapter
b) bulletin board
c) modem
d) terminal emulation
Ans: (d)

18. Find the output of the following program
int *p,*q;
p=(int *)1000;
q=(int *)2000;
printf("%d",(q-p));
Ans: 500

19. Which addressing mode is used in the following statements?
(a) MVI B, 55
(b) MOV B, A
(c) MOV M, A
Ans. (a) Immediate addressing mode.
(b) Register Addressing Mode
(c) Direct addressing mode

20. RS-232C standard is used in _____________.
Ans. Serial I/O

21. Memory. Management in Operating Systems is done by
a) Memory Management Unit
b) Memory management software of the Operating System
c) Kernel
Ans: (b)

22. What is done for a Push opertion?
Ans: SP is decremented and then the value is stored.

23. Binary equivalent of 52
Ans. 110100

24. Hexadecimal equivalent of 3452
Ans. D7C

25. Explain Just In Time Concept ?
Ans. Elimination of waste by purchasing manufacturing exactly when needed

26. A good way of unit testing s/w program is
Ans. User test

27. OOT uses
Ans. Encapsulated of detect methods

28.EDI useful in
Ans. Electronic Transmission

29. MRPII different from MRP
Ans. Modular version of man redundant initials

30. Hard disk time for R/W head to move to correct sector
Ans. Latency Time

31. The percentage of times a page number bound in associate register is called
Ans. Bit ratio

32. Expand MODEM
Ans. Modulator and Demodulator

33. RDBMS file system can be defined as
Ans. Interrelated

34. Super Key is
Ans. Primary key and Attribute

35. Windows 95 supports
(a) Multiuser (b) n tasks (c) Both (d) None
Ans. (a)

36.In the command scanf, h is used for
Ans. Short int

37.A process is defined as
Ans. Program in execution

38.A thread is
Ans. Detachable unit of executable code)

39.What is the advantage of Win NT over Win 95
Ans. Robust and secure

40.How is memory management done in Win95
Ans. Through paging and segmentation

41.What is meant by polymorphism
Ans. Redefinition of a base class method in a derived class

42.What is the essential feature of inheritance
Ans. All properties of existing class are derived

43.What does the protocol FTP do
Ans. Transfer a file b/w stations with user authentication

44.In the transport layer ,TCP is what type of protocol
Ans. Connection oriented

45.Why is a gateway used
Ans. To connect incompatible networks

46.How is linked list implemented
Ans. By referential structures

47.What method is used in Win95 in multitasking
Ans. Non preemptive check

48.What is a semaphore
Ans. A method synchronization of multiple processes

49.What is the precedence order from high to low, of the symbols ( ) ++ /
Ans.( ) , ++, /

50.Preorder of A*(B+C)/D-G
Ans.*+ABC/-DG

51.What is the efficiency of merge sort
Ans. O(n log n)

52.In which layer are routers used
Ans. In network layer

53.Which of the following sorting algorithm has average sorting behavior -- Bubble sort, merge sort, heap sort, exchange sort
Ans. Heap sort

54.In binary search tree which traversal is used for getting ascending order values--Inorder , post order, preorder
Ans. Inorder

55.What are device drivers used for
Ans.To provide software for enabling the hardware

56.What is fork command in unix
Ans. System call used to create process

57.What is make command in unix
Ans. Used for creation of more than one file

58.In unix .profile contains
Ans. Start up program

59.In unix 'ls 'stores contents in
Ans.inode block

60. Which of the following involves context switch,
(a) system call
(b) priviliged instruction
(c) floating poitnt exception
(d) all the above
(e) none of the above
Ans: (a)

61. In OST, terminal emulation is done in
(a) sessions layer
(b) application layer
(c) presentation layer
(d) transport layer
Ans: (b)

62. For 1 MB memory, the number of address lines required,
(a)11 (b)16 (c)22 (d) 24
Ans. (b)

63. Semaphore is used for
(a) synchronization (b) dead-lock avoidance (c) box (d) none
Ans. (a)

64. Which holds true for the following statement
class c: public A, public B
a) 2 member in class A, B should not have same name
b) 2 member in class A, C should not have same name
c) both
d) none
Ans. (a)

65.Preproconia.. does not do which one of the following
(a) macro
(b) conditional compliclation
(c) in type checking
(d) including load file
Ans. (c)

66. Piggy backing is a technique for
a) Flow control
b) Sequence
c) Acknowledgement
d) retransmition
Ans. (c)

67. Which is not a memory management scheme?
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)

69. Integrated check value (ICV) are used as:
Ans. The client computes the ICV and then compares it with the sender’s value.

70. When applets are downloaded from web sites, a byte verifier performs _________?
Ans. Status check.

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.

72. The UNIX shell....
a) does not come with the rest of the system
b) forms the interface between the user and the kernal
c) does not give any scope for programming
d) does not allow calling one program from with in another
e) all of the above
Ans. (b)

73. In UNIX a files i-node......?
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 kernel that runs till the kernel 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)

76. Which of the following API is used to hide a window
a) ShowWindow
b) EnableWindow c) MoveWindow
d) SetWindowPlacement
e) None of the above
Ans. (a)

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)

79. The redirection operators > and >>
a) do the same function
b) differ : > overwrites, while >> appends
c) differ : > is used for input while >> is used for output
d) differ : > write to any file while >> write only to standard output e) None of these
Ans. (b)

80. The command grep first second third /usr/you/myfile
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

82. Which program construct must return a value?
a) Package
b) Function
c) Anonymous block
d) Stored Procedure
e) Application Procedure
Ans. B

83. Which Statement would you use to remove the EMPLOYEE_Id_PK PRIMARY KEY constraint and all depending constraints from the 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

84. Which three commands cause a transaction to end? (Choose three)
a) ALTER b) GRANT c) DELETE d) INSERT e) UPDATE f) ROLLBACK
Ans. a ,b ,f

85. Under which circumstance should you create an index on a table?
a) The table is small.
b) The table is updated frequently.
c) A columns values are static and contain a narrow range of values
d) Two columns are consistently used in the WHERE clause join condition of SELECT statements.
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

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)

88. A certain radioactive element A, has a half life = t seconds. In (t/2) seconds the fraction of the initial quantity of the element so far decayed is nearly
(a) 29% (b) 15% (c) 10% (d) 45%
Ans. (a)

89. Which of the following plots would be a straight line?
(a) Logarithm of decay rate against logarithm of time
(b) Logarithm of decay rate against logarithm of number of decaying nuclei
(c) Decay rate against time
(d) Number of decaying nuclei against time
Ans. (b)

90. A radioactive element x has an atomic number of 100. It decays directly into an element y which decays directly into element z. In both processes a charged particle is emitted. Which of the following statements would be true?
(a) y has an atomic number of 102
(b) y has an atomic number of 101
(c) z has an atomic number of 100
(d) z has an atomic number of 101
Ans. (b)

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)

92. A man speaks the truth 3 out of 4 times. He throws a die and reports it to be a 6. What is the probability of it being a 6?
(a) 3/8 (b) 5/8 (c) ¾ (d) None of the above
Ans. (a)

93. If cos2A + cos2B + cos2C = 1 then ABC is a
(a) Right angle triangle
(b) Equilateral triangle
(c) All the angles are acute
(d) None of these
Ans. (a)

94. Image of point (3, 8) in the line x + 3y = 7 is
(a) (-1,-4) (b) (-1,4) (c) (2,-4) (d) (-2,-4)
Ans. (a)

95. The mass number of a nucleus is
(a) Always less than its atomic number (b) Always more than its atomic number
(c) Sometimes more than and sometimes equals to its atomic number
(d) None of the above
Ans. (c)

96. The maximum KE of the photoelectron emitted from a surface is dependent on
(a) The intensity of incident radiation
(b) The potential of the collector electrode
(c) The frequency of incident radiation
(d) The angle of incidence of radiation of the surface
Ans. (c)

97. Which of the following is not an essential condition for interference?
(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)

98. When X-Ray photons collide with electrons
(a) They slow down
(b) Their mass increases
(c) Their wave length increases
(d) Their energy decreases
Ans. (c)

99. An electron emits energy
(a) Because its in orbit
(b) When it jumps from one energy level to another
(c) Electrons are attracted towards the nucleus
(d) The electrostatic force is insufficient to hold the electrons in orbits
Ans. (b)

100. How many bonds are present in CO2 molecule?
(a) 1 (b) 2 (c) 0 (d) 4
Ans. (d)
_____________________________________________________________________________________________

Sunday, August 23, 2009

Microprocessor - II

1. Access time is faster for
a) ROM b) SRAM c) DRAM

2. In 8279 Strobed input mode, the control line goes low. The data on return lines is strobed in the ____.
a) FIFO byte by byte b) FILO byte by byte c) LIFO byte by byte
d) LILO byte by byte.

3. ___ bit in ICW1 indicates whether the 8259A is cascade mode or not?
a) LTIM=0 b) LTIM=1 c) SNGL=0 d) SNGL=1

4. In 8255, under the I/O mode of operation we have __ modes. Under which mode
will have the following features
i) A 5 bit control port is available.
ii) Three I/O lines are available at Port C.
a) 3, Mode2 b) 2, Mode 2 c) 4, Mode 3 d) 3, Mode 2

5. In ADC 0808 if _______ pin high enables output.
a) EOC b) I/P0-I/P7 c) SOC d) OE

6. In 8279, a scanned sensor matrix mode, if a sensor changes its state, the ___ line goes ____ to interrupt the CPU.
a) CS, high b) A0, high c) IRQ, high d) STB, high

7. In 8279 Status Word, data is read when ________ pins are low, and write to the
display RAM with ____________ are low.

a) A0, CS, RD & A0, WR, CS. b) CS, WR, A0 & A0, CS, RD
c) A0, RD & WR, CS d) CS, RD & A0, CS.

8. In 8279, the keyboard entries are debounced and stored in an _________, that is
further accessed by the CPU to read the key codes.
a) 8-bit FIFO b) 8-byte FIFO c) 16 byte FIFO d) 16 bit FIFO

9. The 8279 normally provides a maximum of _____ seven segment display
interface with CPU.
a) 8 b) 16 c) 32 d) 18

10. For the most Static RAM the write pulse width should be at least
a) 10ns b) 60ns c) 300ns d) 1µs
11. BURST refresh in DRAM is also called as
a) Concentrated refresh b) distributed refresh c) Hidden refresh d) none

12. For the most Static RAM the maximum access time is about
a) 1ns b) 10ns c) 100ns d) 1µs

13. Which of the following statements on DRAM are correct?
i) Page mode read operation is faster than RAS read.
ii) RAS input remains active during column address strobe.
iii) The row and column addresses are strobed into the internal buffers using RAS
and CAS inputs respectively.
a) i & iii b) i & ii c) all d) iii

14. 8086 microprocessor is interfaced to 8253 a programmable interval timer. The
maximum number by which the clock frequency on one of the timers is divided by
a) 216 b) 28 c) 210 d) 220

15. 8086 is interfaced to two 8259s (Programmable interrupt controllers). If 8259s
are in master slave configuration the number of interrupts available to the 8086
microprocessor is
a) 8 b) 16 c) 15 d) 64

Microprocessor

1. Which interrupt has the highest priority?
a) INTR b) TRAP c) RST6.5

2. In 8085 name the 16 bit registers?
a) Stack pointer b) Program counter c) a & b

3. Which of the following is hardware interrupts?
a) RST5.5, RST6.5, RST7.5 b) INTR, TRAP c) a & b

4. What is the RST for the TRAP?
a) RST5.5 b) RST4.5 c) RST4

5. What are level Triggering interrupts?
a) INTR&TRAP b)RST6.5&RST5.5 c)RST7.5&RST6.5

6. Which interrupt is not level sensitive in 8085?
a) RST6.5 is a raising edge-trigging interrupt.
b) RST7.5 is a raising edge-trigging interrupt.
c) a & b.

7. What are software interrupts?
a) RST 0 - 7 b) RST 5.5 - 7.5 c) INTR, TRAP

8. Which stack is used in 8085?
a) FIFO b) LIFO c) FILO

9. Why 8085 processor is called an 8 bit processor?
a) Because 8085 processor has 8 bit ALU.
b) Because 8085 processor has 8 bit data bus.
c) a & b.

10. What is SIM?
a) Select Interrupt Mask b) Sorting Interrupt Mask c) Set Interrupt Mask.

11. RIM is used to check whether, ______
a) The write operation is done or not
b) The interrupt is Masked or not
c) a & b

12. What is meant by Maskable interrupts?
a) An interrupt which can never be turned off.
b) An interrupt that can be turned off by the programmer.
c) none

13. In 8086, Example for Non maskable interrupts are
a) Trap b) RST6.5 c) INTR

14. What does microprocessor speed depends on?
a) Clock b) Data bus width c) Address bus width

15. Can ROM be used as stack?
a) Yes b) No c) sometimes yes, sometimes no

16. Which processor structure is pipelined?
a) all x80 processors b) all x85 processors c) all x86 processors

17. Address line for RST3 is?
a) 0020H b) 0028H c) 0018H

18. In 8086 the overflow flag is set when
a) The sum is more than 16 bits
b) Signed numbers go out of their range after an arithmetic operation
c) Carry and sign flags are set
d) During subtraction

19. The advantage of memory mapped I/O over I/O mapped I/O is,
a) Faster
b) Many instructions supporting memory mapped I/O
c) Require a bigger address decoder
d) All the above

20. BHE of 8086 microprocessor signal is used to interface the
a) Even bank memory
b) Odd bank memory
c) I/O
d) DMA

21. In 8086 microprocessor the following has the highest priority among all type
interrupts.
a) NMI
b) DIV 0
c) TYPE 255
d) OVER FLOW

22. In 8086 microprocessor one of the following statements is not true.
a) Coprocessor is interfaced in MAX mode
b) Coprocessor is interfaced in MIN mode
c) I/O can be interfaced in MAX / MIN mode
d) Supports pipelining

23. 8088 microprocessor differs with 8086 microprocessor in
a) Data width on the output
b) Address capability
c) Support of coprocessor
d) Support of MAX / MIN mode

24. Address line for TRAP is?
a) 0023H b) 0024H c) 0033H

Sunday, August 09, 2009

IT Fundamentals - III

1. Which layers of the OSI model are included in the lower layers?
A. Application, Session, Presentation
B. Physical, Transport, Data Link
C. Data Link, Physical, Network
D. Session, Data Link, Physical
E. None of these

2. From smallest to largest, rank the following logical pieces of the database : data block, table space, extent, segment
A. table space, segment, extent, data block
B. data block, segment, extent, table space
C. Segment, extent, data block, table space
D. data block, extent, segment, table space
E. None of these

3. Where are cookies stored?
A. On the server
B. In web.xml
C. On the client
D. In HTML
E. None of these

4. How is power supplied to a low-power USB device?
A. Through a power cable
B. From an external power supply
C. Directly from the computer's power supply
D. Through the USB cable
E. None of these

5. When you are selecting a mouse for a particular computer system, what is the most important consideration?
A. The type of drivers that come with the mouse
B. The length of the mouse cord
C. The type of connector the mouse is equipped with
D. The number of buttons the mouse has
E. None of these

6. Programme that automatically submit your search request to several search engines simultaneously are called..................
A. Metasearch engines
B. Webcrawlers
C. Spiders
D. Hits
E. None of these

7. You are planning on using a single network that support 208 users. Which IP address class would you choose to be the most effect?
A. Class A
B. Class B
C. Class C
D. Class D
E. Class E

8. Which of the following options is not a JSP implicit object?
A. Out
B. In
C. Response
D. Page
E. None of these

9. In Oracle, which statement is true about segments?
A. Each table has its own segment
B. A segment is created every time an extent is created, extended, or altered
C. An index segment is created every time a table is created
D. A segment is deleted whenever a table is truncated
E. None of these

10. All of the following are basic principles of networks, except ...............
A. each computer must have a network card
B. there must be communications media connecting the network hardware devices
C. there must be at least one connecting device
D. each computer must have software that supports the movement of information
E. None of these

11. Which of the following could be a legitimate Media Access Control address?
A. 192.168.254.3
B. 3FA2.4756.F9A3
C. A5514
D. C1.3A.77.5B
E. None of these

12. The term, hypertext means .................
A. Non-sequential writing
B. Hypermedia
C. Blinking text
D. Text with heavy formatting
E. None of these

13. You receive an e-mail message that forms you that a terrible virus has been unleashed on the Internet and that you should warn all the people in your Address Book. Which of the following have you most likely encountered?
A. A virus hoax
B. A filter
C. A spam
D. A virus
E. A worm

14. If 20 people need to communicate using symmetric-key cryptography, .................symmetric keys are needed
A. 190
B. 200
C. 20
D. 19
E. 210

15. What should you do as soon as you have successfully created the data base and the data dictionary?
A. Open the data base for users to start adding data
B. Start adding a bunch of table space to allow users to use
C. Leave it running for a few days to make sure that nothing bad is going to happen
D. Shut it down and take a cold back up
E. None of these

16. Which of the following is the default mask of a class A IP address?
A. 255.0.0.255
B. 255.255.0.0
C. 255.0.0.0
D. 255.255.255.0
E. None of these

17. What is Internet 2?
A. A new type of cabling system for Wide Area Networks
B. A second local area network that can connect with another online LAN to share access
C. A new standard for Internet browsers
D. An association to develop advanced Internet technology
E. None of these

18. Which of the following objects is passed to a Java Bean when one of its properties is set via at JSP action?
A. Servlet Request
B. Http Servlet Request
C. Servlet Response
D. Http Servlet Response
E. None of these

19. If you wanted to locate the hardware address to a local device, which protocol would you use?
A. ARP
B. RARP
C. ICMP
D. PING
E. PONG

20. In oracle, which table space is the minimum required when creating a new data base?
A. Undo table space
B. Temporary table space
C. System table space
D. Users table space
E. None of these

21. Data space red sign is not terribly difficult if the .........................
A. data base is structured
B. data base is well- designed
C. data space has no data
D. data base is relatively small
E. data base is relatively large

22. Which of the following are normally used to initialize a computer system's hard ware?
A. Bootstrap memory
B. Volatile memory
C. External mass memory
D. Static memory
E. Random access memory

23. Which of the following is not true about two-tier client-server data base architecture?
A. SQL statements are processed on the server
B. SQL statements may be processed on some of the clients
C. Business logic is mostly processed on clients
D. Business logic may be processed on the server
E. None of these

24. The process by which the structure of the data base is modified to eliminate hidden dependencies and repeating groups is .............
A. enforcing data integrity
B. enforcing referential integrity
C. indexing
D. normalization
E. None of these

25. Which of the following functions is not performed by TCP?
A. Flow control
B. Sequencing
C. Error checking
D. Sub netting
E. None of these

26. In oracle, who owns the data dictionary?
A. Oracle
B. SYS
C. The DBA
D. SYSTEM
E. None of these

27. The reason the data outputs of most ROM ICs are tri-state outputs is to .........
A. allow for three separate data input lines
B. allow the bi-directional flow of data between the bus lines and the ROM registers
C. permit the connection of many ROM chips to a common data bus
D. isolate the registers from the data bus during read operations
E. None of these

28. To drop a column that is used as a foreign key, first......................
A. drop the primary key
B. drop the table
C. drop the foreign key constraint
D. All of these
E. None of these

29. In the straight CGI approach to data-base connectivity on the Internet.....................
A. the external program is located between the client and the web server
B. the external program is located between the data base server and the data base
C. the external program is located between the web server and the data base server
D. there is no external program

30. What is the name of protocol used to eliminate loops?
A. Switching
B. ISL
C. Frame Tagging
D. Spanning Tree Protocol
E. Scanning

31. The effect of the ROLLBACK command in a transaction is the following.............................
A. undo all changes to the data base resulting from the execution of the transaction
B. undo the effects of the last UPDATE command
C. restore the content of the data base to its state at the end of the previous day
D. make sure that all changes to the data base are in effect
E. None of these

32. In Oracle, what is the default number of transactions that MAXTRANS is set to if not specified?
A. 512
B. 10
C. 40
D. 1
E. 255

33. To which pin on the RAM chip does the address decoder connect in order to signal which memory chip is being accessed?
A. The address input
B. The output enable
C. The chip enable
D. The data input
E. The data output

34. Which of the following switching methods provides the greatest frame through out?
A. Store-and-forward switching
B. Frame-tag switching
C. Cut-through switching
D. ISL switching
E. Store-and-backward switching

35. Which kind of lock includes a keypad that can be used to control access into areas?
A. Cipher
B. Warded
C. Device
D. Tumbler.
E. Typelock

36. A gateway is .............................
A. a device that enables users to send information simultaneously over a network without slowing down transmission
B. an electronic device that connects several computing devices to a network
C. a point in one network that is an entrance point to another network
D. a device that links two or more segments of a network and helps direct traffic
E. None of these

37. Which of the following is considered a vulnerability of SNMP?
A. Clear text community strings
B. Its use of TCP
C. The fact that it is on by default in Windows 2000 server
D. The fact that it is on by default in Windows XP Professional
E. None of these

38. Network routing information distributed among routers is stored in which of the following?
A. Flash memory
B. Route table
C. Metric table
D. NVRAM
E. Router memory

39. If the destination did not receive a segment, how will the TCP host know to resend the information?
A. The ACK received will not include the segment number that was not received
B. The ACK received will include the segment number that was not received
C. The sending host will send a PACK to verify segment receipt
D. The destination host will send a YACK message back to the sending host
E. None of these

40. What are the effects of mixing RAM modules with different speed ratings?
A. The system runs at the speed of the slowest RAM stick
B. The system runs normally
C. The system runs at the speed of the memory bus
D. The system may not run, or it crashes periodically
E. None of these

41. What kind of scheme is the HTTP protocol?
A. Get/ put
B. Store/ forward
C. Queuing
D. Search/ return
E. Request/ response'

42. What type of error does a memory parity error create?
A. A fatal exception error
B. An NMI error
C. A corrupt windows operating system file
D. A GPF error
E. A GPA error

43. Which is not a part of the Oracle data base base block?
A. Header
B. Row directory
C. Data
D. Freelists
E. None of these

44. Which of the following cannot be used as the scope when using a Java Bean with JSP?
A. Page
B. Request
C. Session
D. Application
E. Response

45. Which of the following is used for integrity?
A. DES
B. Diffie-Hellman
C. SED
D. AES
E. MD5

46. What is ISL used for?
A. To allow an Ethernet interface to understand frame tags
B. To make two Ethernet interfaces appear as one
C. To connect an Ethernet switch with a high-speed core switch such as ATM
D. To allow simultaneous routing and switching
E. None of these

47. Which of the following describes programs that can run independently, travel from system and disrupt computer communications?
A. Trojans
B. Viruses
C. Idlers
D. Droppers
E. Worms

48. You need to configure a switch from a remote subnet. Which of the following must be configured on the switch?
A. Console port
B. IP
C. Hostname
D. SNMP
E. Default gateway

49. In Oracle, which is more appropriate to store a small list of values in a single column in each row in your address table?
A. ORACARRAY
B. Nested table
C. Index organised table
D. Index
E. VARRAY

50. While searching a website, you have been unable to find information that was on the site several months ago. What might you do to attempt to locate that information?
A. Visit Google's cached page to view the older copy
B. Forget about it, as there is no way to find this information
C. Visit a partner site of the organisation to see if it is there
D. Use the way back machine
E. None of these
____________________________________________________________________________________________________

Search Aptipedia