Computrer_studies_revision_gseb_10th
Computrer_studies_revision_gseb_10th
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
8. Which of the following element can be used to create multiple links with clickable
location within a single image?
Image map
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
14. Which of the following tag can be used to push the coming text into next line?
<br>
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
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
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>
36. Which of the following is used to divide browser window into multiple parts?
Frameset
38. Which of the following refers to a singular tags that do not require content?
Empty
41. How many arguments one can use with a Calc function?
Depends on the function
43. A function in Calc can start with which of the following options?
'=' sign
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
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
84. Input in a program can be possible using which of the following device?
Keyboard
86. _______ identifies the type of value that can be stored in an identifier.
Datatype
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
90. The _______ statement skips the subsequent statements of the loop and
continues the next iteration of the loop
Continue
96. To find the average of five numbers which of the following operator can be
used?
Arithmetic
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
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
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
119. Which tag pairs are used to create a description list in HTML ?
<dl> … </dl>
124. Which key is pressed to see the result after entering formula in Calc ?
Enter key
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”>
124. The three expressions in for loop are separated using ____.
; (semicolon)