0% found this document useful (0 votes)
4 views

Computrer_studies_revision_gseb_10th

The document contains a series of questions and answers related to programming, HTML, and spreadsheet functions. It covers topics such as data types in C, HTML tags, Excel functions, and flowchart symbols. The content is structured in a quiz format, providing correct outputs and explanations for various programming scenarios.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

Computrer_studies_revision_gseb_10th

The document contains a series of questions and answers related to programming, HTML, and spreadsheet functions. It covers topics such as data types in C, HTML tags, Excel functions, and flowchart symbols. The content is structured in a quiz format, providing correct outputs and explanations for various programming scenarios.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 16

1. Who prepared Standardized General Markup Language (SGML) ?

 ISO
2. How many pre-defined heading tags are there in HTML?
 6
3. What will be the output of following program segment?
int num[3] = {1,2,3}a
printf(“%d”, num[0]);
 1
4. What will be the output of following program segment?
int num[3] = {1,2,3}
printf(“%d”, num[1]);
 2
5. What is the output of following program segment?
int num[5] = {4,2,5,76,80}
printf(“%d”, num[3]);
 76

6. Which of the following form basic two sections of an HTML code?


 Head and body

7. Arrangement of data in particular order is known as __________.


 Sorting

8. Which of the following element can be used to create multiple links with clickable
location within a single image?
 Image map

9. Which of the following can be used to make webpage attractive by using


background colour?
 bgcolor

10. Who first thought of web ?


 Tim Burner’s Lee

11. Which of the following can be used to make webpage attractive by using
background colour?
 bgcolor

12. You are provided with a list of students' marks in a spreadsheet. If you want to
find the student with the highest marks, which excel function should you use?
 MAX

13. Which of the following is category of function in C language?


 Both a and b

14. Which of the following tag can be used to push the coming text into next line?
 <br>

13. In calc a row is identified by ________


 numbers

15. Which of the following form basic two sections of an HTML code?
 Head and body

16. Which of the following can be used to specify additional formatting along with an
HTML element?
 Attributes

17. ________ helps avoid repetition of programming for similar tasks.


 Function

18. A combination of opening tag and closing tag along with some content between
two tags are forms as an _______.
 Element
19. Which of the followiong datatype refers to decimal numbers in C language?
 float

20. What is the output of following program segment?


int main( ){
int i;
for (i=0; i<10; i++)
{
printf(“%d”,i);
}
 0123456789

21. What is the output of following program segment?


int main( ){
int x;
for (x=0; x<5; x++)
{
printf(“%d”,x);
}
 01234

22. What is the output of following program segment?


int main( ){
int y;
for (y=0; y<3; y++)
{
printf(“%d”,y);
}
 012
23. Which of the following concept is used to display whole image as a link?
 Image as hot spot

24. Which of the following element can be used to create multiple links with
clickable location within a single image?
 Image map

25. Which of the following tag pairs are used to define a header row of a table?
 <th> and </th>

26. Which of the following is specified by <ul> in HTML?


 Unordered list

27. Which of the following refers to an HTML element ?


 An opening tag, content and a closing tag

28. A _______ is a technique in which we use pictorial representation of every action


that we perform within the machine process that solves a problem.
 Flowchart

29.______ allows programmers to execute statement multiple times.


 Loop

31._________ shows name of the current spreadsheet.


 Title bar

32. To which of the entity can a Calc chart be linked?


a) To an existing document b) To a new document
c) Web page d) All of these

33. Which of the following is the extension of a worksheet created in Calc?


 .ods

34. Which of the following symbol represents a Process?


 Rectangle
35. Which of the following list contains items along with numbers or alphabets
instead of bullets ?
 Ordered list

36. Which of the following is used to divide browser window into multiple parts?
 Frameset

37. Which of the following symbol is used to test conditions in a flowchart?


 Diamond

38. Which of the following refers to a singular tags that do not require content?
 Empty

39. What is the name of mechanism to allow only valid data?


 Validating

40. What will be the output of the code printf("hello world!"); ?


 hello world!

41. How many arguments one can use with a Calc function?
 Depends on the function

42. The = symbol is used for which of the following operations in C?


 Assignment

43. A function in Calc can start with which of the following options?
 '=' sign

44. Which of the following tag is used to add images to a webpage?


 <img>

45.What is one challenge of drawing a flowchart for a large and complex problem
 It is time-consuming and laborious..
46. ________ is a collection of elements having same data type.
 Array

47. Which of the following tag pairs are used to define a column of a table?
 <td> and </td>
48. We can replace multiple occurrences of a word using which of the following
facility of Calc ?
 Find and replace
49. Which of the following about a web page is described when a meta-tag is used
in HTML page?
 Author, purpose and keywords

50. What is the name of mechanism to filter out unnecessary data ?


 Filtering
51. Which of the following keywords refer to integer data type?
 int
52. Which of the following is used to specify a colour in HTML code?
 Colour code in hexadecimal
53. Which of the following refers to the core part of any solution ?
 Process
54. Which of the following function is used to display formatted output on screen?
 printf( )
55. Which of the following can be changed in an ordered list in HTML?
(a) Order of the items (b) Number style
(c) Start number (d) All of these
56. Which of the following are the two basic types of decision structure statements
provided by C language?
 if and switch
57. Which of the following datatype refers to whole numbers in C language?
 Integer
58. Which of the following is an extension of C program file?
 .c
59. Which of the following refer to the meaning of value++ in C?
 Post Increment
60. For reading a integer _____is used.
 %d
61. Datatype integer uses how many bytes of memory space ?
 2
62. Which of the following is an editor to edit an HTML document ?
 SciTE
63. What will be the output when following program segment is executed?
int choice= 1;
Switch (choice)
{
Case 1 : print(“Jan”); break;
Case 2 : print (“Feb”); break ;
Case 3 : print (“Mar”); break;
}
 Jan

64. What will be the output when following program segment is executed?
int day= 2;
Switch (day)
{
Case 1 : print(“Sunday”); break;
Case 2 : print (“Monday”); break ;
Case 3 : print (“Tuesday”); break;
}
 Monday

65. What will be the output when following program segment is executed?
Char chr=’A’
Switch (chr)
{
Case ‘A’ : print(“A”); break;
Case ‘B’ : print (“B”); break ;
Case ‘C’ : print (“C”); break;
}
 A

66. Which of the following is specified by <ul> in HTML?


 Unordered list
67. Which of the following is The extension of header file?
 .h
68. Which function will convert "School" to "SCHOOL" in Calc?
 UPPER
69. Which of the following option is used to print a chart?
 Insert Chart
70. which of the following loop used when we want to execute block of statements
fixed numbers of times?
 For
71. An __________is a symbol that identifies the operation that can be performed on
operands.
 Operator
72. Which one of the following is a valid image file format ?
 Png
73. The symbol * belong to which of the following operator types in C?
 Arithmetic
74. __________consists of group of variables having same property.
 Array

75. Arrangement of data in particular order is known as __________.


 Sorting
77. Which of the following refers to a list of instructions in a proper order to solve a
problem called ?
 Algorithm
78. Which of the following C character categories does the symbol = belong?
 Special Character
79. What can be a function argument ?
(a) Value (b) Text (c) Other function (d) All of these
80. What will be the output of the below given code ?
int x= 10;
int y= 20;
printf(“%d”,x);
 10
81. <a href=”temple.html” > <img src=“temple.jpg” > </a> - is an example of
________.
 Image as hotspot

82. Which of the following is an extension of C program file ?


 .c

83. _________ allows us to input data into particular data format.


 Scanf( )

84. Input in a program can be possible using which of the following device?
 Keyboard

85.Which function will convert "WELCOME" to "Welcome" in Calc?


 PROPER

86. _______ identifies the type of value that can be stored in an identifier.
 Datatype

87. What will be the size of following given array?


Marks[5] ={50 , 60, 65, 35, 70}
 5

87. What will be the size of following given array?


Runs[6] ={2,0,4 ,1 ,4,0}
 6

88. you are provided with a list of bike’s price in a spreadsheet. If you want to find
the bike with the lowest price, which Excel function should you use?
 MIN

89. For reading a decimal _____is used.


 %f

90. The _______ statement skips the subsequent statements of the loop and
continues the next iteration of the loop
 Continue

91. The = symbol is used for which of the following operations in C?


 Assignment

92. Which of the following shows us the preview of the chart ?


 Page preview

93. . Which chart is circular ?


 Pie

94. Which of the following option is used to prit a chart ?


 File ➔ Print
95. The _____ statement stops execution of program
 break

96. To find the average of five numbers which of the following operator can be
used?
 Arithmetic

97. Which of the following is used to provide a link to the chart ?


 Hyperlink

98. Which of the following is used to enter 3D text in Calc?


 Fontwork

99. The _____ statement stops execution of program.


 Break

100. How can one calculate total of values entered in a worksheet in a Calc
document ?
(a) By manual entry (b)By formula (c)By autosum (d) All of these

101. Which header file must be included in the program to use mathematical
function?
 math.h

102. which of the following loop used when we want to execute block of statements
fixed numbers of times ?
 for

103. What will be the output of following program segment?


int marks[5] = {60,20,35,70,80}
printf(“%d” , num[2] );
 35

104. pow( ) function is _____ ?


 System defined

105. what will be the output when following program segment is executed?
int balance = 5000;
if (balance < 3000){
printf(“payment successful”);
}
else {
printf(“insufficient balance”);
}
 insufficient balance

106. what will be the output when following program segment is executed?
int marks = 82;
if (marks > 33){
printf(“pass”);
}
else {
printf(“fail”);
}
 pass

107. Which bracket is used in HTML code?


 <>

108. What is placed after closing tag in HTML ?


 Reverse slash ( / )
109. Which of the following tag is used for heading ?
 <h1>

110. What is the extension to store HTML file ?


 .htm or .html

111. Which tag is used to show letters in bold ?


 <b>

112. Which is the middle part of the constitution of a tag ?


 Content

112. Which of the following words are used by search engine ?


 Key words

113. Which attribute determines color in HTML ?


 Bgcolor

114. To arranged text in to paragraph, which tag can be used ?


 <p>

115. Which of the following tag draws a line at the bottom of the text ?
 <u>

116. Which of the following tag is used to insert a video file into an HTML
document?
 href

117. Which of the following is the extension for movie file ?


 .mp4
118. Which of the following is the extension for audio file ?
 .mp3

119. Which tag pairs are used to create a description list in HTML ?
 <dl> … </dl>

120. What is the full form of <li> tag ?


 List Item

121. Which symbol is used for multiplication in Calc ?


 *

123. Which symbol is necessary to write at the starting of formula ?


 =

124. Which key is pressed to see the result after entering formula in Calc ?

 Enter key

125. Which function is used to do sum in Calc ?


 Sum

126. Which of the following is the first step to create a chart ?


 Preparing data

127. Which method is used to change the location of the chart ?


 Drag

116. Which attribute is used in <img> element to insert image in HTML document
?
 src
117. Which tag is used to show a unfilled circle as a bullet in unordered list?
 <ul type = “circle”>

118.How many type of function in C language?


 2

119. ____means standard input-output header file.


 stdio.h

120.Which of the following tag pairs identifies items of lists?


 <li> and </li>

121.The meta-tags in an HTML document are written in which of the following


section?
 Head

122. _______is a technique in which we use pictorial representation of every action


that, we perform within the machine process that solves a problem.
 Flow chart

123. The ___ sign in C is address of an operator.


 &

124. The three expressions in for loop are separated using ____.
 ; (semicolon)

125. An array is a collection of ____.


 same data types
126.Which of the following function key is used to check spelling in Calc?
 F7

127. What will be the output of =round(-96.4598,2)?


 -96.46

128. Translation software are known as _____


 Compiler

129. What does tag <a> mean?


 Anchor

130.Which shape is used to represent a connector?


 circle

You might also like