Matric Notes Computer 10th Matric Computer 10th, Book Exercise Questions, Long Questions, Multiple Choice Questions (MCQs), Quizzes, Programs

Matric Notes Computer 10th

Matric Computer 10th, Book Exercise Questions, Long Questions, Multiple Choice Questions (MCQs), Quizzes, Programs, Code Errors, Code Output, Programming Exercise

Chapter Name MCQs Ex SQs, Code Errors & Output, Programming Ex
Ch 1 Introduction to Programming MCQs Ex SQs
Ch 2 User Interaction MCQs Ex SQs
Ch 3 Conditional Logic MCQs Ex SQs
Ch 4 Data and Repetition MCQs Ex SQs
Ch 5 Functions MCQs Ex SQs

All MCQs of Computer 10th are given below. If you want to review questions you can do so by clicking the above links.

Computer 10th Ch 1 Introduction to Programming Ex MCQs / Quiz

TCA Notes Computer 10th Ch 1 Introduction to Programming Ex MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 15

Software that facilitates programmers in writing computer programs is known as __:

2 / 15

__ is responsible for the conversion of program files to machine understandable and executable code:

3 / 15

Every programming language has some primitive building blocks and follows some grammar rules known as its __:

4 / 15

A list of words that are predefined and must not be used by the programmer to name his own variables are know as:

5 / 15

Includes statements are written in __ section:

6 / 15

__ are added in the source code to further explain the techniques and algorithms used by the programmer:

7 / 15

__ are the values that do not change during the whole execution of program:

8 / 15

A float uses __ bytes of memory:

9 / 15

For initializing a variable, we use __ operator:

10 / 15

__ can be thought of as a container to store constants:

11 / 15

An IDE combines text editors, libraries, compilers and debuggers in a single interface.

12 / 15

Computers require the conversion of the code written in program file to machine language in order to execute it.

13 / 15

Column is a reserved word in C programming language.

14 / 15

* Comment goes here* is a valid comment.

15 / 15

float can store a real number up to six digits or precision.

Your score is

The average score is 0%

0%

Computer 10th Ch 2 User Interaction Ex MCQs / Quiz

TCA Notes Computer 10th Ch 2 User Interaction Ex MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 15

printf is to used print __ type of data:

2 / 15

scanf is a __ in C programming language:

3 / 15

getch() is used to take __ as input from user:

4 / 15

Let the following part of code, what will be the value of variable an after execution:

int a = 4;

float b = 2.2;

a = a * b;

5 / 15

Which of the following is a valid line of code?

6 / 15

Which operator has the highest precedence among the following?

7 / 15

Which of the following is not  type of operator?

8 / 15

The operator % is used to calculate __:

9 / 15

Which of the following is a valid character?

10 / 15

What is true about C language?

11 / 15

Maximum value that can be stored by an integer is 32000.

12 / 15

Format specifiers begin with a % sign.

13 / 15

Precedence of division operator is greater than multiplication operator.

14 / 15

getch is used to take all types of data input from user.

15 / 15

scanf is used for output operators.

Your score is

The average score is 0%

0%

Computer 10th Ch 3 Conditional Logic Ex MCQs / Quiz

TCA Notes Computer 10th Ch 3 Conditional Logic Ex MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 8

Conditional logic helps in, __:

2 / 8

__ statements describe the sequence in which statements of the program should be executed:

3 / 8

In if statement, what happens if condition is false?

4 / 8

int a=5;

if (a<10)

a++;

else

if (a>4)

a--;

Which of the following statements will execute?

5 / 8

Which of the following is the condition to check a is a factor of c?

6 / 8

A condition can be any __ expression:

7 / 8

An if statement inside another statement is called __ structure:

8 / 8

A set of multiple instructions enclosed in braces is called a __:

Your score is

The average score is 0%

0%

Computer 10th Ch 4 Data and Repetition Ex MCQs / Quiz

TCA Notes Computer 10th Ch 4 Data and Repetition Ex MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 10

An array is a __ structure:

2 / 10

Array elements are stored at __ memory locations:

3 / 10

If the size of an array is 100, the range of indexes will be __:

4 / 10

__ structure allows repetition of a set of instructions:

5 / 10

__ is the unique identifier, used to refer to the array:

6 / 10

Array can be initialized __ declaration:

7 / 10

Using loops inside loops is called __ loops:

8 / 10

__ part of for loop is executed first:

9 / 10

__ make it easier to read and write values in array:

10 / 10

To initialize the array in a single statement, initialize it __ declaration:

Your score is

The average score is 0%

0%

Computer 10th Ch 5 Functions Ex MCQs / Quiz

TCA Notes Computer 10th Ch 5 Functions Ex MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 8

Functions could be built-in or __:

2 / 8

The functions which are available in C Standard Library are called:

3 / 8

The values passed to a function are called:

4 / 8

char cd() {return 'a'}. In this function "char" is __:

5 / 8

The advantages of using functions are:

6 / 8

If there are three return statements in the function body, __ of them will be executed:

7 / 8

Readability helps to __ the code:

8 / 8

__ means to transfer the control to another function:

Your score is

The average score is 0%

0%

Computer 10th Ch 1 Introduction to Programming Additional MCQs / Quiz

TCA Notes Computer 10th Ch 1 Introduction to Programming Additional MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 48

Set of instructions given to the computer to perform a specific task is known as:

2 / 48

The person who known how to write a computer program correctly is known as:

3 / 48

In main function everything enclosed in:

4 / 48

Statements that are ignored by the compiler and do not get executed:

5 / 48

Which are the values that do not change?

6 / 48

Which of the following detect syntax error?

7 / 48

Which of the following are types of constant?

8 / 48

What is the name given to a memory location as the data is physically stored inside the computer memory?

9 / 48

Which from the following describes the type of constant that can be stored in variable?

10 / 48

A __ must be declared before its use:

11 / 48

__ includes specifying variable's data type and giving it a valid name:

12 / 48

Assigning value to a variable for the first time is called:

13 / 48

Which of the following is an example of IDEs for C language?

14 / 48

Which of the following language is understood by computer?

15 / 48

Which of the following is used to convert high level programming language into machine language?

16 / 48

Which error occurs while programming, if proper syntax or rules of the programming language are not followed?

17 / 48

Which header file includes file that contain information related to input and output functions?

18 / 48

Which header file contains all predefined mathematical functions?

19 / 48

Which is the starting point of the execution of the program?

20 / 48

C language is:

21 / 48

Each statement in a C program ends with:

22 / 48

How many types of comments are in C language:

23 / 48

Single-line comments start with:

24 / 48

Multi-line comments start will

25 / 48

If the value is not proceeded by a sign, it is considered:

26 / 48

How many bytes of memory is used by integer data type?1

27 / 48

Which keyword is used for integer data type?

28 / 48

By default, type int is considered as:

29 / 48

Which data type is used to store a real number?

30 / 48

Floating point numbers store numbers up to:

31 / 48

How many bytes are used by float type variable?

32 / 48

To declare character type variables in C, we use keyword:

33 / 48

How many character can be stored in a char type variable?

34 / 48

Which name must begin with a letter or an underscore, it cannot begin with a digit?

35 / 48

A __ cannot be used as a variable name:

36 / 48

Which of the following is not a valid variable name?

37 / 48

Multiple variables of same data type may also be declared in __ line:

38 / 48

Which language was developed by Dennis Ritchie?

39 / 48

C language was developed in:

40 / 48

GUI stands for:

41 / 48

How many Reserved words are in C language?

42 / 48

Header files have extension:

43 / 48

The process of converting program file into binary file is called:

44 / 48

The process of running a program is called:

45 / 48

Which extension is used to save C language program?

46 / 48

A program written in high level language is called:

47 / 48

Output of compiler is called:

48 / 48

Which of the following detect syntax error?

Your score is

The average score is 0%

0%

Computer 10th Ch 2 User Interaction Additional MCQs / Quiz

TCA Notes Computer 10th Ch 2 User Interaction Additional MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 37

Which is a built-in function in C programming language to show output on screen?

2 / 37

Which is used to display data in specific format?

3 / 37

Which format specifier is used for integer data type?

4 / 37

Which format specifier is used for float data type?

5 / 37

Which format specifier is used for character data type?

6 / 37

Which is a built-in function in C language that takes input from user into the variables?

7 / 37

Format specifier is always preceded by:

8 / 37

Which function used to read a character from user?

9 / 37

In which function character entered by user does not get displayed on screen?

10 / 37

Which function is generally used to hold the execution of program because the program does not continue further until the user presses a key?

11 / 37

Which library file include in header section of program when using getch() function?

12 / 37

Which is identifier for compiler to identify the end of a line or known as statement terminator:

13 / 37

Escape sequences are used in printf function inside the:

14 / 37

Which escape sequence moves cursor to start of next line?

15 / 37

Which escape sequence specifies the I/O function of moving to the next tab stop horizontally?

16 / 37

A tab stop is collection of __ spaces:

17 / 37

Which operator is used to assign a value to a variable?

18 / 37

Which of the following is used as an assignment operator in C language?

19 / 37

Which operator is used to divide the value of left side by the value on right side?

20 / 37

Which operator is used to multiply two values?

21 / 37

Which operator is used to subtract the value on right side from the value on left side?

22 / 37

Which operator performs division of left operand by the right operand and returns the remainder value after division?

23 / 37

Which operators compare two values to determine the relationship between values?

24 / 37

In C language which operator is used to check equality of two expressions?

25 / 37

Which operator assigns the result of expression on right side to the variable of left side?

26 / 37

Which operators perform operations on Boolean expressions and produce a Boolean expression as a result?

27 / 37

Which symbol is used to represent the AND operator?

28 / 37

Which symbol is used to represent the OR operator?

29 / 37

Which symbol is used to represent the NOT operator?

30 / 37

Which operator takes two Boolean expressions as operands and produces the result true if both of its operands are true?

31 / 37

Which operator accepts two Boolean expressions as operands and return true if at least one of the operands is true?

32 / 37

Which operator negates or reverses the value of Boolean expression?

33 / 37

Which operands are applied over one operand only?

34 / 37

Which is unary operator?

35 / 37

Which operators require two operands to perform the operation?

36 / 37

Which operator returns remainder?

37 / 37

How many types of logical operators?

Your score is

The average score is 0%

0%

Computer 10th Ch 3 Conditional Logic Additional MCQs / Quiz

TCA Notes Computer 10th Ch 3 Conditional Logic Additional MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 15

How many types of control statements are available in C language?

2 / 15

Which of the following is not a type of control statement in C language?

3 / 15

Which of the following is the default control structure in C language?

4 / 15

In which control all the statements are executed in the given sequence:

5 / 15

The statements which helps us to decide which statements should be executed next, on the basis of conditions, are called:

6 / 15

How many types of selection structure?

7 / 15

In which statement we specify a condition, and associate a code to it:

8 / 15

If we want to associate more than one statements to an if statement, then they need to be enclosed inside a:

9 / 15

Which statement is used to execute one set of instructions if a particular condition is true and another set of instructions if the condition is false?

10 / 15

A set of multiple instructions enclosed in braces is called a block or:

11 / 15

A __ could be any valid expression including arithmetic expressions, relational expressions, logical expressions:

12 / 15

__ statements executes the set of statements under if statement if the condition is true and executes the set of statements under else otherwise:

13 / 15

Selection statements within selection statements are called:

14 / 15

Which of the following is a decision making statement?

15 / 15

If statement is used within another if statement is called:

Your score is

The average score is 0%

0%

Computer 10th Ch 4 Data and Repetition Additional MCQs / Quiz

TCA Notes Computer 10th Ch 4 Data and Repetition Additional MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 11

Which is a container to store collection of data items in a specific layout?

2 / 11

An __ is a data structure that can hold multiple values of same data type at consecutive locations inside the computer memory:

3 / 11

Assigning values to an array for the first time is called:

4 / 11

Each element of an array has an __ that can be used with the array name as array_name:

5 / 11

In array first element has the index:

6 / 11

If we need to repeat one or more statements, then we use:

7 / 11

How many types of loop are in C language?

8 / 11

Each run of a loop is called an:

9 / 11

Which structure is used to repeat a set of statements?

10 / 11

When we use a loop inside another loop, it is called __ loop structure:

11 / 11

Which makes it easier to read and write values in arrays?

Your score is

The average score is 0%

0%

Computer 10th Ch 5 Functions Additional MCQs / Quiz

TCA Notes Computer 10th Ch 5 Functions Additional MCQs / Quiz

You can prepare these MCQs/Quiz below before attempting.

1 / 17

Which is a block of statements that performs a particular task?

2 / 17

The functions which are defined by a programmer are called:

3 / 17

Which describe input and output of the function?

4 / 17

The __ of the function is the data type of the value returned by function:

5 / 17

Which are variables of different data types that are used to receive the values passed to the function as input?

6 / 17

The set of statements which are executed in the function to fulfill the specified task:

7 / 17

Which means to transfer the control to that particular location?

8 / 17

During the function call, the values passed to the function are called:

9 / 17

In which of the following problem is decomposed into sub problem?

10 / 17

Which function is to display anything on computer screen?

11 / 17

Which function is used to take input from the user?

12 / 17

How many types of function?

13 / 17

The functions which are available in C Standard Library are called:

14 / 17

printf and scanf are example of __ functions:

15 / 17

A function can have multiple parameters, but it cannot return more than __ values:

16 / 17

Which is wrong return statement?

17 / 17

The values passed to the function are called:

Your score is

The average score is 0%

0%

Matric Notes Computer 10th Matric Computer 10th, Book Exercise Questions, Long Questions, Multiple Choice Questions (MCQs), Quizzes, Programs