Computer Awareness
This test covers topics related to computer aptitute important for MCA Entrance prepration.
Questions
The '+' sign in Boolean algebra is used for representing which logical operation?
- AND
- OR
- NOT
- NOR
- NAND
What is the 1's complement of 110110?
- 001001
- 001000
- 101001
- 001011
- 011001
What of the following can be referred to as a lightweight process(LWP)?
- Socket
- Operating system
- Thread
- Kernel
- Inter-process communication
The address of a variable 'num', which is of type float is denoted by the variable _____________.
- *num
- &num
- float& num
- float num&
- *& num
Which of the following provides a path for the signals to travel in the form of light?
- Microwave transmission
- Bluetooth technology
- Coaxial cable
- Infrared rays
- Optical fiber
Which of these is not a characteristic of a computer?
- Speed
- Diligence
- Decision making
- Versatility
- Accuracy
Which of the following best describes 'paging'?
- Memory management scheme
- Disk scheme
- CPU utilization scheme
- Printer utilization scheme
- A scanner utilization scheme
Which of these is a measure of a computer's performance?
- Bandwidth
- FLOPS
- Baud rate
- Hertz
- Faraday
Which of these is the central component of an operating system?
- File System Management
- Device Drivers
- CPU
- Kernel
- System Utilities
In which data structure can the insertion and deletion of elements be done only from one end?
- Array
- Queue
- Stack
- Tree
- Graph
Which of the following is a set of data holding places that are part of a computer processor?
- RAM
- Cache memory
- Register
- ROM
- Flash memory
Which of these is false regarding static storage classes?
- Their scope may be local.
- Lifetime of a static variable is equal to the lifetime of the program.
- They retain their value even during multiple calls to a function.
- Static variables are stored in RAM.
- The default value of static variables is zero.
What is the operation of arranging the records in some logical order called?
- Traversing
- Searching
- Merging
- Sorting
- Inserting
Which of the following statements is false?
- 'If' block should always be associated with an 'else' block
- The default scope of the 'if' statement is only the next statement.
- '!' is a unary operator.
- Switch statement can be used for decision making.
- '&' and '&&' have different meanings.
What is the C++ concept of forming a new class from an existing class or base class called?
- Data abstraction
- Data encapsulation
- Inheritance
- Polymorphism
- Message passing