Powered By Blogger
Computer instructor लेबलों वाले संदेश दिखाए जा रहे हैं. सभी संदेश दिखाएं
Computer instructor लेबलों वाले संदेश दिखाए जा रहे हैं. सभी संदेश दिखाएं

गुरुवार, 18 नवंबर 2021

This set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “Algorithms”.

 This set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “Algorithms”.

Q. 1. The word ____________comes from the name of a Persian mathematician Abu Ja’far Mohammed ibn-i Musa al Khowarizmi.

   (1) Flowchart

   (2) Flow

   (3) Algorithm

   (4) Syntax

----

Answer: (3)

Explanation: The word algorithm comes from the name of a Persian mathematician Abu Ja’far Mohammed ibn-i Musa al Khowarizmi. 

Q. 2. In computer science, algorithm refers to a special method useable by a computer for solution of a problem.

   (1) True

   (2) False

----

Answer: (1)

Explanation: The statement is true. This word algorithm refers to a special method useable by a computer for solution of a problem. The statement of the problem specifies in general terms the desired input/output relationship.

Q. 3. This characteristic often draws the line between what is feasible and what is impossible.

   (1) Performance

   (2) System Evaluation

   (3) Modularity

   (4) Reliability

----

Answer: (1)

Explanation: Algorithms help us to understand scalability. Performance often draws the line between what is feasible and what is impossible.

Q. 4. The time that depends on the input: an already sorted sequence that is easier to sort.

   (1) Process

   (2) Evaluation

   (3) Running

   (4) Input

----

Answer: (3)

Explanation: The running time depends on the input: an already sorted sequence is easier to sort. The running time is given by the size of the input, since short sequences are easier to sort than the longer ones. Generally, we seek upper bounds on the running time, because it is reliable.

Q. 5. Which of the following is incorrect?

Algorithms can be represented:

   (1) as pseudo codes

   (2) as syntax

   (3) as programs

   (4) as flowcharts

----

Answer: (2)

Explanation: Representation of algorithms:

-As programs

-As flowcharts

-As pseudo codes.

Q. 6. When an algorithm is written in the form of a programming language, it becomes a _________

   (1) Flowchart

   (2) Program

   (3) Pseudo code

   (4) Syntax

----

Answer: (2)

Explanation: An algorithm becomes a program when it is written in the form of a programming language. Thus, any program is an algorithm.

Q. 7. Any algorithm is a program.

   (1) True

   (2) False

Answer: (2)

Explanation: The statement is false. An algorithm when represented in the form of a programming language is called a program. Any program is an algorithm but the reverse is not true.

Q. 8. A system wherein items are added from one and removed from the other end.

   (1) Stack

   (2) Queue

   (3) Linked List

   (4) Array

----

Answer: (2)

Explanation: In a queue, the items are inserted from the rear end and deleted from the front end.

Q. 9. Another name for 1-D arrays.

   (1) Linear arrays

   (2) Lists

   (3) Horizontal array

   (4) Vertical array

----

Answer: (1)

Explanation: Linear arrays are the 1-Dimensional arrays wherein only one row is present and the items are inserted.

Q. 10. A data structure that follows the FIFO principle.

   (1) Queue

   (2) LL

   (3) Stack

   (4) Union

----

Answer: (3)

Explanation: The answer is Stack. A stack follows the FIFO principle. FIFO stands for First In First Out.

मंगलवार, 16 नवंबर 2021

This set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “System Software’s”.

 This set of Computer Fundamentals Multiple Choice Questions & Answers (MCQs) focuses on “System Software’s”.

Q. 1. The physical devices of a computer:

   (1) Software

   (2) Package

   (3) Hardware

   (4) System Software

----

Answer: (3)

Explanation: Hardware refers to the physical devices of a computer system. Software refers to a collection of programs. A program is a sequence of instructions.

Q. 2. Software Package is a group of programs that solve a multiple problems.

   (1) True

   (2) False

----

Answer: (2)

Explanation: The statement is false. Software package is a group of programs that solve a specific problem or perform a specific type of job.

Q. 3. ____________ refer to renewing or changing components like increasing the main memory, or hard disk capacities, or adding speakers, or modems, etc.

   (1) Grades

   (2) Prosody

   (3) Synthesis

   (4) Upgrades

----

Answer: (4)

Explanation: Upgrades is the right term to be used. Upgrades are installed to renew or implement a new feature. Except for upgrades, hardware is normally one-time expense.

Q. 4. Which of the following is designed to control the operations of a computer?

   (1) Application Software

   (2) System Software

   (3) Utility Software

   (4) User

----

Answer: (2)

Explanation: Software is basically classified into two :System and application. System Software is designed to control the operations and extend the processing capability of a computer system.

Q. 5. Which of the following is not an example of system software?

   (1) Language Translator

   (2) Utility Software

   (3) Communication Software

   (4) Word Processors

----

Answer: (4)

Explanation: A system software is responsible for controlling the operations of a computer system. Word Processor is an application software since it is specific to its purpose.


Q. 6. A person who designs the programs in a software package is called :

   (1) User

   (2) Software Manager

   (3) System Developer

   (4) System Programmer

----

Answer: (4)

Explanation: The programs included in a system software package are called system programs. The programmers who design them and prepare them are called system programmers.

Q. 7. ___________________ is designed to solve a specific problem or to do a specific task.

   (1) Application Software

   (2) System Software

   (3) Utility Software

   (4) User

Answer: (1)

Explanation: An application software is specific to solving a specific problem. System software is designed for controlling the operations of a computer system.

Q. 8. Assembler is used as a translator for?

   (1) Low level language

   (2) High Level Language

   (3) COBOL

   (4) C

----

Answer: (1)

Explanation: Assembler is used in case of low level languages.It is generally used to make the binary code into an understandable format. Interpreter is used with the high level languages similarly.

Q. 9. What do you call a program in execution?

   (1) Command

   (2) Process

   (3) Task

   (4) Instruction

----

Answer: (2)

Explanation: Option Process is correct. A program is a set of instructions. A program in execution is called a process.

Q. 10. Which of the following is not a process state?

   (1) Terminated

   (2) Running

   (3) Blocked

   (4) Execution

----

Answer: (3)

Explanation: There is no blocked state in a process model. The different states are ready, running, executing, waiting and terminated.

इनपुट यूनिट पर केंद्रित प्रश्न