gseb std 10 computer exa, revision
gseb std 10 computer exa, revision
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
MAX
13. Which of the following is category of function in C language?
a) System defined b) user defined c) Both a and bd) none of
these
14. Which of the following tag can be used to push the coming text into
next line?
a) <br> b) <hr> c) <pre> d) <tt>
13. In calc a row is identified by ________
a) Alphabets b) numbers c) letters d) none of
these
15. Which of the following form basic two sections of an HTML code?
(a) Head and body (b) Physical and logical
(c) Code and browser (d) Meta-tags and body
16. Which of the following can be used to specify additional formatting
along with an HTML element?
a) Numbers b) Attributes c) Comments d)
Contents
17. ________ helps avoid repetition of programming for similar tasks.
(a) Function (b) Array (c) switch (d) none of these
18. A combination of opening tag and closing tag along with some
content between two tags are forms as an _______.
a) Element b) attribute c) align d) empty tag
24. Which of the following element can be used to create multiple links
with clickable location within a single image?
a) Image map b) hyperlink (c) image d) All of these
25. Which of the following tag pairs are used to define a header row of a
table?
a) <tr> and </tr> b) <td> and </td>
c) <col> and </col> d) <th> and </th>
26. Which of the following is specified by <ul> in HTML?
a) Simple list b) Ordered list c) Unordered list d)
Simple table
35. Which of the following list contains items along with numbers or
alphabets instead of bullets ?
a) Simple list b) Ordered list c) Unordered list d)
Simple table
36. Which of the following is used to divide browser window into multiple
parts?
(a) Frameset (b) Layout (c) Elements (d) Design
38. Which of the following refers to a singular tags that do not require
content?
a) Compete b) Empty c) Null d) Void
39. What is the name of mechanism to allow only valid data?
a) Sorting b) Searching c) Filtering d)
Validating
43. A function in Calc can start with which of the following options?
a) '=' sign b) Alphabets c) Numbers d) Any
of these
47. Which of the following tag pairs are used to define a column of a
table?
a) <tr> and </tr> b) <td> and </td>
c) <col> and </col> d) <row> and </row>
48. We can replace multiple occurrences of a word using which of the
following facility of Calc ?
(a) Find and replace (b) By replace only
(c) By copy command (d) By preview command
49. Which of the following about a web page is described when a meta-
tag is used in HTML page?
(a) Author, purpose and keywords (b) Layout
(c) Style (d) Size
53. Which of the following refers to the core part of any solution ?
(a) Input (b) Output (c) Process (d) Algorithm
54. Which of the following function is used to display formatted output on
screen?
a) printf( ) b) scanf( ) c) puts( ) d) putchar( )
55. What can be a function argument ?
(a) Value (b) Text (c) Other function (d) All of these
56. Which of the following are the two basic types of decision structure
statements provided by C language?
a) for and while b) if and switch c) do and goto d) case and
default
70. which of the following loop used when we want to execute block of
statements fixed numbers of times?
a) For b) while c) do….while d) none of
these
86. _______ identifies the type of value that can be stored in an identifier.
(a) Format (b) Operator (c) Datatype (d) None of
these
87. What will be the size of following given array?
Marks[5] ={50 , 60, 65, 35, 70}
a) 4 b) 5 c) 50 d) 3
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?
(a) AVERAGE (b) SUM (c) MAX (d) MIN
90. The _______ statement skips the subsequent statements of the loop
and continues the next iteration of the loop
a) Continue b) break c) default d) switch
96. To find the average of five numbers which of the following operator
can be used?
(a) Relational (b) Arithmetic (c) relational (d) Bitwise
102. which of the following loop used when we want to execute block of
statements fixd numbers of times ?
(a) for (b) while (c) do….while (d) none of
these
103. What will be the output of following program segment?
int marks[5] = {60,20,35,70,80}
printf(“%d” , num[2] );
(a)2 (b) 60 (c) 80 (d) 35