Sharing is Caring
Computer Notes for Class 10 Chapter
Computer Notes for Class 10 Chapter 2

User Interface:

If you are searching for a topic about Computer Notes for Class 10 Chapter 2 (New Syllabus) then, you are on right place because we are offering here a good opportunity for class 10computer notes 2021. the students who study in Metric classes are searching the topic related to 10th class computer new book 2021 notes. Computer Science is an interesting subject for metric classes. 10th class students who study this learnt the C-Language programming here in this class. by Gaining a good practice of C-Language computer science notes for class 10, any student get a grip on basic techniques of programming.

Computer Notes for Class 10 Chapter 2

Lets discuss the all about 10th class computer notes here as:

MCQs questions for class 10 computer with answers:

here are Computer Science MCQs with Solution pdf format and free download is available. Online practice for MCQs is also available here. MCQs from Text Book Exercise and others included in this Practice panel. By practicing again and again, Student can get good practice on this topic “Networks” i.e. 9th Class Computer Science MCQs Chapter-03. Best of Luck.

 

0%
1 votes, 4 avg
27

Welcome to our Online Test

Time is over

Thanks for taking Quiz, Click Finish Button to see your Result


Computer Ch#02, 10th Class

Here MCQs for your Revision

For Good Revision & Grip on Concept, You Should take the MCQs and Revise it again and again

Good Luck. . . .  (:

Welcome

Please provide information & fill-up this form

1 / 89

Which of the following operators works with two operands?

2 / 89

The value of the C expression result = 18 /2 *3 + 7 % 3 + (5*4); is ___________

3 / 89

Which of the following format specifiers is used for integer data type?

4 / 89

Which of the following is a valid character?

5 / 89

Which of the following relational operators represents NOT EQUAL TO in C language?

6 / 89

Which of the following relation operators represents EQUAL TO in C language?

7 / 89

Printf is used to print _______ type of data.

8 / 89

Which of the following format specifiers is used for character data type?

9 / 89

Which operator in C performs the product of two numbers?

10 / 89

When a relational expression is true, it has the value _______

11 / 89

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

12 / 89

Scanf is a ______ in C programming Language.

13 / 89

The statement

float result = 3/2;

will return the value __________

14 / 89

Which operator has highest precedence among the following:

15 / 89

The expression 0%4 has a value equal to _________

16 / 89

All of the following are logical operators EXCEPT___________

17 / 89

getch() function is used to take _________ as input form user

18 / 89

Precedence determines which operator ______

19 / 89

Which operator has the highest order of precedence when computing an expression?

20 / 89

Which of the following symbols is used for AND operator?

21 / 89

The addition and subtraction in an arithmetic expression are performed from ________

22 / 89

The expression 10%3 has a value equal to ___________

23 / 89

__________ function is used to read a character from user.

24 / 89

The value of the C expression 5 / 9 * 2 is ________

25 / 89

Which of the following is not a valid escape character?

26 / 89

Which operator is used to get the remainder of an integer after division?

27 / 89

What is the output of the following code segment?

printf(” %d ”, 5>7);

28 / 89

Which of the following operators has the lowest priority?

29 / 89

The statement

int remaining = 14 % 3;

will return the value _______

30 / 89

The symbol + is a type of operator.

31 / 89

Which of the following operators is used to increase the value of a variable?

32 / 89

Which of the following operators reverses the result of a relational expression?

33 / 89

The number of relational operators in C language is ________

34 / 89

Which of the following operators is used to decrease the value of a variable?

35 / 89

Format specifier is started with the symbol ______

36 / 89

Which of the following is a valid line of code.

37 / 89

The relational operators give result in the form of ____________

38 / 89

Precedence of division operator is greater than multiplication operator.

39 / 89

When we use %f to display float value, it displays _________ digits after the decimal point.

40 / 89

Which of the following operators is used to assign a value to a variable?

41 / 89

Which of the following is unary operator in C?

42 / 89

getch() stands for _________

43 / 89

The value of the C expression result = 9 * 3 + 7 % 3 + 20 is ________

44 / 89

Escape sequence ___________ specifies the movement of cursor to start of the next line.

45 / 89

Which of the following symbols is used for NOT operator?

46 / 89

Let the following part of code, what will be the value of a after execuation:
int a=4;
float b=2.2;
a=a*b;

47 / 89

scanf () is an example of ________ function.

48 / 89

Which of the following is not a type of operator:

49 / 89

An escape sequence is a combination of two characters always starting with _________

50 / 89

The operator % is used to calculate __________

51 / 89

The operator that operates on single operand is called ________

52 / 89

Scanf is used for output operations.

53 / 89

Which escape sequence can be used to insert a Tab in the output?

54 / 89

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

55 / 89

Which of the following is used to specify the type of value a variable can hold?

56 / 89

What is the output of the following code segment?

printf(”%d”, 5 ==5);

57 / 89

Which of the following symbols is used before the name of each variable in scanf() function?

58 / 89

Which of the following is a relational operator in C language?

59 / 89

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

60 / 89

Which of the following functions is used to display output on the screen?

61 / 89

Which of the following format specifiers is used for float data type?

62 / 89

Which of the following symbols is used for OR operator?

63 / 89

What is the output of a logical OR (||) operation if one of the Inputs/operands is false?

64 / 89

Which of the following symbols is used to terminate a C statement?

65 / 89

The statement:
float result = 3.0/2;
will return the value _______

66 / 89

Which is true about C Language?

67 / 89

The operator that operates on three operands is called ________

68 / 89

The value of the C expression 9 / 5 * 2 is _________

69 / 89

______________ sign is used as assignment operator in C.

70 / 89

What is the output of a logical AND (&&)  operation  If  one  of  the inputs/operands is false?

71 / 89

The value of the C expression result = 27 + 7 % 3 + 20 is ______________

72 / 89

Which of the following returns True if A = 25 and B = 35:

73 / 89

The relational operators can be used to __________ numbers.

74 / 89

The operator “%” in C language is called  __________ operator.

75 / 89

_____ operators can be used to evaluate more than one relational expressions.

76 / 89

Which of the following operators has the highest precedence?

77 / 89

The statement i++; is equivalent to _________

78 / 89

The expression 3%5 has a value equal to _______

79 / 89

Modulus operator (%) works on __________ data type.

80 / 89

The logical NOT operator, denoted by ( ! ) , is a ______

81 / 89

__________ header file must be included in the program to use getch() function.

82 / 89

Format specifiers begin with a % sign.

83 / 89

The value of the C expression 13 + 21 % 4 - 2 is ________

84 / 89

Which of the following is not a Boolean expression?

85 / 89

Which of the following is not arithmetic operator?

86 / 89

How many variables can be used in one printf() function?

87 / 89

When a relational expression is false, it has the value ________

88 / 89

Which of the following is not a binary operator in C?

89 / 89

All of the following are binary operators except _________

Your score is

Share  your Result with friends:

LinkedIn Facebook
0%

Can u write your Feelings

How You Feel this

If you find any mistake in MCQs, please inform us by Commenting or by Contact us menu to improve the Quality of this free content.

Let’s see, How Students Solve this . . . . . . . Results  . . .

User NameStartScore
abdulmuqeet17:45:17 Feb 09, 202564%
abdulmuqeet15:10:57 Feb 09, 20254%
fizza20:15:18 Jan 24, 202458%
ABCD15:03:37 Jan 05, 20240%
suleman14:19:28 Dec 25, 20230%
suleman14:19:16 Dec 25, 20230%
hassan17:33:07 Mar 02, 202353%
Asad13:41:46 Jan 08, 202378%
burhan01:40:14 Oct 04, 202282%
M Burhan01:22:14 Oct 04, 202262%
Saad20:29:19 Sep 27, 202240%
Mudasar17:06:19 Sep 22, 202279%
aert00:36:21 Sep 10, 202269%
syeda shaher bano20:28:34 Aug 27, 202231%
mayra17:40:45 Aug 25, 202226%
oiokk11:28:30 Aug 11, 202222%
Sultan Asad16:37:33 May 17, 202249%
Mateeba Shahid11:59:33 May 17, 202241%
dua13:50:27 May 16, 20223%
dua13:26:39 May 16, 20222%
Shariq12:26:50 May 16, 202239%
Mteeba16:11:51 May 15, 202243%
Izza10:32:55 May 15, 202246%
fatima arif22:25:10 May 14, 202247%
hamza12:30:01 Apr 21, 202282%
faizan ali13:32:50 Apr 11, 202226%
syed01:53:59 Apr 06, 202233%

 

MCQs Chap # 02 – Computer Science 10th

 (Open/ Download)

. .


.

Computer science Short Questions/ Long Questions – 10th Class:

Short Questions and Long Questions related to 10th Class Computer science notes new Syllabus are available here. The Students who are searching the study material (Short questions / Long Questions) for Punjab boards, along with KPK boards and Karachi boards, here is a good chance to avail the chance from this opportunity.

Long / Short Questions Chap # 02 – Computer Science 10th

 (Open/ Download)

.


.

Solved Exercise – Computer Science Notes 10th Class:

This book of Computer Notes for Class 10 Chapter 2 is new Syllabus and New problems are not solved according to 100% correction. But here we are providing the solution of this problem and Solved Exercise of Computer Science Notes 10th Class is available here for pdf format and for download.

Solved Exercise Chap # 02 – Computer Science 10th

 (Open/ Download)

.


.

Coding problems – Computer Science New Syllabus 10th Class:

In 10th Class Computer science Notes, important part is Coding of C-Language. Here are a lot of Coding problem solutions of Examples, Coding problem solution of exercise and Extra examples of Coding in C-Language is available on our website eStudent.pk.

10th Class Computer Science Notes:

Our mostly students are searching the topic related Category, for example: Computer Notes for Class 10, 10th Class Computer Science Notes, 10th Class computer notes 2021, 10th class computer science notes chapter wise, unique notes for 10th class computer science, 10th class computer science notes in English medium, 10th class computer science notes chapter wise in urdu, , 10th class computer science notes pdf, computer science notes for class 10 federal board pdf, class 10 computer notes pdf download, , class 10 computer notes for class 10th Punjab board, class 10 computer notes chapter 2 & adamjee notes class 10 Computer 2022, adamjee notes for class 10 Computer, adamjee notes for class 10, adamjee notes, then this page and website can help regarding your problem.

Class 10 Computer Science Chapter Wise Notes

Chapter 01 – Introduction to Programming

Chapter 02 – User Interface

Chapter 03 – Conditional Logic

Chapter 04 – Data and Repetition

Chapter 05 – Functions

adamjee notes for class 10:

if you are searching for adamjee notes for class 10 English or adamjee notes for class 10 Urdu either adamjee notes for class 10 Biology, then this post will help you for the topic of computer notes for class 10. 

Leave a Reply

Your email address will not be published. Required fields are marked *

Explore More

Computer Notes for Class 10 Chapter 4

Data and Repetition: (New Syllabus) If you are searching for a topic about Computer Notes for Class 10 Chapter 4 (New Syllabus) then, you are on right place because we

Computer Notes for Class 10 Chapter 1

Introduction to Programming: If you are searching for a topic about Computer Notes for Class 10 Chapter 1 (New Syllabus) then, you are on right place because we are offering

Computer Notes for Class 10 Chapter 3

Conditional Logic: If you are searching for a topic about Computer Notes for Class 10 Chapter 3 (New Syllabus) then, you are on right place because we are offering here