0

Computer Awareness

Description: This test covers topics related to computer aptitute important for MCA Entrance prepration.
Number of Questions: 15
Created by:
Tags: MCA Entrance Boolean Algebra Boolean Algebra and Its Application Programming Fundamentals of Computer Programming Basic Fundamentals Hardware and Software General Awareness and Computer Applications Computer Applications (New)
Attempted 0/15 Correct 0 Score 0

The '+' sign in Boolean algebra is used for representing which logical operation?

  1. AND

  2. OR

  3. NOT

  4. NOR

  5. NAND


Correct Option: B
Explanation:

The '+' sign is used for representing OR operation.

What is the 1's complement of 110110?

  1. 001001

  2. 001000

  3. 101001

  4. 001011

  5. 011001


Correct Option: A
Explanation:

The 1's complement of a number is obtained by changing all the ones to zeros and vice versa.

What of the following can be referred to as a lightweight process(LWP)?

  1. Socket

  2. Operating system

  3. Thread

  4. Kernel

  5. Inter-process communication


Correct Option: C
Explanation:

A thread of execution is the smallest sequence of programmed instructions that can be managed independently by an operating system. It is sometimes called a lightweight process. It is a basic unit of CPU utilization.

The address of a variable 'num', which is of type float is denoted by the variable _____________.

  1. *num

  2. &num

  3. float& num

  4. float num&

  5. *& num


Correct Option: B
Explanation:

&num gives the address of the variable num.

Which of the following provides a path for the signals to travel in the form of light?

  1. Microwave transmission

  2. Bluetooth technology

  3. Coaxial cable

  4. Infrared rays

  5. Optical fiber


Correct Option: E
Explanation:

An optical fiber is a very thin fiber made of glass that functions as a waveguide for light. It transmits signals in the form of light i.e. the visible part of the spectrum.

Which of these is not a characteristic of a computer?

  1. Speed

  2. Diligence

  3. Decision making

  4. Versatility

  5. Accuracy


Correct Option: C
Explanation:

Computer can only perform tasks that it has been programmed to do. Computer cannot do any work without instructions from the user. It executes instructions as specified by the user and does not take its own decisions.

Which of the following best describes 'paging'?

  1. Memory management scheme

  2. Disk scheme

  3. CPU utilization scheme

  4. Printer utilization scheme

  5. A scanner utilization scheme


Correct Option: A
Explanation:

Paging is a memory-management scheme that permits the physical-address space of a process to be non-contiguous.

Which of these is a measure of a computer's performance?

  1. Bandwidth

  2. FLOPS

  3. Baud rate

  4. Hertz

  5. Faraday


Correct Option: B
Explanation:

FLOPS (for FLoating-point Operations Per Second) is a measure of computer performance. It is especially used in fields of scientific calculations.

Which of these is the central component of an operating system?

  1. File System Management

  2. Device Drivers

  3. CPU

  4. Kernel

  5. System Utilities


Correct Option: D
Explanation:

A kernel is a central component of an operating system. It acts as an interface between the user applications and the hardware. The sole aim of the kernel is to manage the communication between the software (user level applications) and the hardware (CPU, disk memory etc.)

In which data structure can the insertion and deletion of elements be done only from one end?

  1. Array

  2. Queue

  3. Stack

  4. Tree

  5. Graph


Correct Option: C
Explanation:

A stack is a last in first out type of data structure. Here, the insertion and deletion of elements can be done only from one end.

Which of the following is a set of data holding places that are part of a computer processor?

  1. RAM

  2. Cache memory

  3. Register

  4. ROM

  5. Flash memory


Correct Option: C
Explanation:

A register is one of a small sets of data holding places that are part of a computer processor.

Which of these is false regarding static storage classes?

  1. Their scope may be local.

  2. Lifetime of a static variable is equal to the lifetime of the program.

  3. They retain their value even during multiple calls to a function.

  4. Static variables are stored in RAM.

  5. The default value of static variables is zero.


Correct Option: E
Explanation:

The default value of static variables is garbage.

What is the operation of arranging the records in some logical order called?

  1. Traversing

  2. Searching

  3. Merging

  4. Sorting

  5. Inserting


Correct Option: D
Explanation:

Arranging the records in some logical order is referred to as sorting.

Which of the following statements is false?

  1. 'If' block should always be associated with an 'else' block

  2. The default scope of the 'if' statement is only the next statement.

  3. '!' is a unary operator.

  4. Switch statement can be used for decision making.

  5. '&' and '&&' have different meanings.


Correct Option: A
Explanation:

If block need not always be associated with an else block. However, an else block is always associated with an if block.

What is the C++ concept of forming a new class from an existing class or base class called?

  1. Data abstraction

  2. Data encapsulation

  3. Inheritance

  4. Polymorphism

  5. Message passing


Correct Option: C
Explanation:

Inheritance is the process of forming a new class from an existing class or base class.The base class is also known as parent class or super class, the new class that is formed is called derived class.Derived class is also known as a child class or sub class. Inheritance helps in reducing the overall code size of the program, which is an important concept in object-oriented programming.

- Hide questions