Computer Notes for Class 10 Chapter 2

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
25

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 escape sequence can be used to insert a Tab in the output?

2 / 89

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

3 / 89

Which operator in C performs the product of two numbers?

4 / 89

Precedence determines which operator ______

5 / 89

The relational operators can be used to __________ numbers.

6 / 89

Which of the following is a valid line of code.

7 / 89

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

8 / 89

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

9 / 89

The operator that operates on three operands is called ________

10 / 89

The number of relational operators in C language is ________

11 / 89

scanf () is an example of ________ function.

12 / 89

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

13 / 89

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

14 / 89

Which of the following symbols is used for OR operator?

15 / 89

Format specifier is started with the symbol ______

16 / 89

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

17 / 89

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

18 / 89

Scanf is used for output operations.

19 / 89

The statement

float result = 3/2;

will return the value __________

20 / 89

What is the output of the following code segment?

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

21 / 89

Which operator has highest precedence among the following:

22 / 89

Which of the following is not a valid escape character?

23 / 89

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

24 / 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;

25 / 89

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

26 / 89

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

27 / 89

The expression 3%5 has a value equal to _______

28 / 89

Precedence of division operator is greater than multiplication operator.

29 / 89

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

30 / 89

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

31 / 89

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

32 / 89

Format specifiers begin with a % sign.

33 / 89

Which of the following is not a Boolean expression?

34 / 89

The statement

int remaining = 14 % 3;

will return the value _______

35 / 89

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

36 / 89

getch() stands for _________

37 / 89

The operator % is used to calculate __________

38 / 89

Which of the following operators has the lowest priority?

39 / 89

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

40 / 89

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

41 / 89

The expression 0%4 has a value equal to _________

42 / 89

Which is true about C Language?

43 / 89

Which of the following symbols is used for NOT operator?

44 / 89

All of the following are binary operators except _________

45 / 89

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

46 / 89

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

47 / 89

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

48 / 89

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

49 / 89

All of the following are logical operators EXCEPT___________

50 / 89

The expression 10%3 has a value equal to ___________

51 / 89

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

52 / 89

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

53 / 89

Which of the following symbols is used for AND operator?

54 / 89

Which of the following operators works with two operands?

55 / 89

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

56 / 89

Printf is used to print _______ type of data.

57 / 89

The statement i++; is equivalent to _________

58 / 89

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

59 / 89

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

60 / 89

__________ function is used to read a character from user.

61 / 89

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

62 / 89

What is the output of the following code segment?

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

63 / 89

Which of the following is unary operator in C?

64 / 89

Scanf is a ______ in C programming Language.

65 / 89

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

66 / 89

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

67 / 89

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

68 / 89

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

69 / 89

Which of the following is not a type of operator:

70 / 89

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

71 / 89

______________ sign is used as assignment operator in C.

72 / 89

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

73 / 89

Which of the following is not arithmetic operator?

74 / 89

The relational operators give result in the form of ____________

75 / 89

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

76 / 89

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

77 / 89

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

78 / 89

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

79 / 89

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

80 / 89

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

81 / 89

The symbol + is a type of operator.

82 / 89

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

83 / 89

Which of the following is a valid character?

84 / 89

Modulus operator (%) works on __________ data type.

85 / 89

The operator that operates on single operand is called ________

86 / 89

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

87 / 89

Which of the following operators has the highest precedence?

88 / 89

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

89 / 89

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

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
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