Top Banner
Quiz Basics of computers FOR MORE QUIZ QUESTIONS AND ANSWERS, VISIT http://www.theperceptionworld.com/
61

Technical Quiz (Basic concepts of computers)

Feb 09, 2017

Download

Technology

Manpreet Kaur
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript

ROUND 1

QuizBasics of computersFOR MORE QUIZ QUESTIONS AND ANSWERS, VISIT http://www.theperceptionworld.com/

The ISO standard for computer graphics is?Graphics Kernel SystemGraphics Standard SystemComputer Graphics StandardNone of the Above

RIGHT ANSWER???

A. Graphics Kernel SystemTHE RIGHT ANSWER IS..

Which of the following is not a web server?ApacheIISJigsawZaob

RIGHT ANSWER??

D. ZaobTHE RIGHT ANSWER IS

IRQ 6 is commonly assigned to:Sound CardCOM 1Floppy Drive ControllerLPT 1

RIGHT ANSWER??

C. Floppy Drive ControllerTHE RIGHT ANSWER IS

Gray Scale is used in:Monitor that has color capabilityMonitor that has no color capabilityRandom DisplayNone of the Above

RIGHT ANSWER???

B. Monitor that has no color capabilityTHE RIGHT ANSWER IS..

Which of the following statements is correct?A. Base class pointer cannot point to derived class. B. Derived class pointer cannot point to base class.C. Pointer to derived class cannot be created.D. Pointer to base class cannot be created.

RIGHT ANSWER???

B. Derived class pointer cannot point to base class.THE RIGHT ANSWER IS

Which of the following cannot be a friend?FunctionClassObjectOperator Function

RIGHT ANSWER??

C. ObjectTHE RIGHT ANSWER IS

Which of the following is used to make an abstract class?A. Declaring it abstract using static keyword.B. Declaring it abstract using virtual keyword.C. Making at least one member function as virtual function.D. Making at least one member function as pure virtual function.

RIGHT ANSWER???

D. Making at least one member function as pure virtual function. THE RIGHT ANSWER IS

How to store the large objects in C++ if it extends its allocated memory?Memory HeapStackQueueNone of the Above

RIGHT ANSWER???

A. Memory HeapTHE RIGHT ANSWER IS

In C, if you pass an array as an argument to a function, what actually gets passed?A. Value of elements in arrayB. First element of the arrayC. Base address of the arrayD. Address of the last element of array

RIGHT ANSWER???

C. Base Address of arrayTHE RIGHT ANSWER IS

Which function in C++ will take large objects?A) StringB) ClassC) VectorD) None of the above

RIGHT ANSWER

C. VectorBecause vector is mainly used to store large objects for gameprogramming and other operations etc. THE RIGHT ANSWER IS..

Where does the allocator get implemented?A. Template libraryB. Standard libraryC. C++ code libraryD. None of the mentioned

RIGHT ANSWER???

B. Standard LibraryExplanation: Allocators are implemented in C++ standard library but it is used for C++ template library. THE RIGHT ANSWER IS

Which header file is used to manipulate the allocator?Allocator memory object None of the mentioned

RIGHT ANSWER???

B. Memory Because all the memory allocation and de-allocation libraries are declared in . THE RIGHT ANSWER IS

What is the correct syntax for declaring an allocator?Template < class T > class allocator Template < class T > classTemplate class allocator None of the mentioned

RIGHT ANSWER???

A. Template < class T > class allocatorTHE RIGHT ANSWER IS

Which mathematics library is used for vector manipulation in C++?cli++vec++blitz++None of the mentioned

RIGHT ANSWER???

C. blitz++THE RIGHT ANSWER IS

.INI refers to which kind of file?A. System FileB. Image FileC. Hypertext Related FileD. Image Color Matching Profile File

RIGHT ANSWER??

A. SYSTEM FILETHE RIGHT ANSWER IS

Who among the following is not a product of Microsoft?Visual Studio IDESQL Server DatabasePhotoshopWindows Operating System

RIGHT ANSWER??

C. PHOTOSHOPTHE RIGHT ANSWER IS.

Which was an early Mainframe Computer?FUNTRIAENIACBRAINIAUNIC

RIGHT ANSWER??

B. ENIACTHE RIGHT ANSWER IS

Out of the following which is not the property of static data member of a class?It is initialised zero and and only once when the first object if its class is created. Only one copy of that member is created for the entire class and is shared by all the object of class It accessible only within the class but its lifetime is the entire program When we create object of class, separate copy of static data member are created for every object.

RIGHT ANSWER ???

D. When we create object of class, separate copy of static data member are created for every objectTHE RIGHT ANSWER IS

Which of these is the earliest word processing products?Lotus NotesWord PerfectMS WordWordStar

RIGHT ANSWER??

D. WordStarTHE RIGHT ANSWER IS

How many streams are automatically created when executing a program?1 234

RIGHT ANSWER???

C. 3There are streams that are automatically created when executing a program. They are stdin, stdout and stderr.THE RIGHT ANSWER IS..