CLASS- XI IT (SCIENCE) CHAPTER- IMPRESSIVE WEB DESIGNING ASSIGNMENT NO-01
Q. FILL IN THE BLANKS
1. _________ is a collection of interlinked web pages containing text,
images, audio and videos.
2. _______________ is an address of a web page on the internet.
3. HTML is used for developing and creating interactive webpages,
introduced by ____________.
4. An ____________ defines a property for an element, consist of an
attribute/value.
5. ____________have a beginning tag and closing tag.
6. All the heading levels have attribute align with values __________,
__________ and __________.
7. To specify the description of the image ____________ attribute of
<img> tag is used.
8. <caption> tag specifies table heading which can have ______ or
__________as its values.
9. To insert your photograph in a webpage the required tag is
____________
10.A ____________ by default appears blue in colour with an underline.
[Link] ____________ attribute is used to specify address of the file.
12. The ____________ attribute specifies the path where the form is to
be submitted.
13. A ____________ is a collection of different elements also called as
controls like textbox, radio button, checkbox etc.
14. The default method of submitting form data is ____________.
15. ____________tag is used to create a textbox with multiple lines.
16. ____________specifies a short hint that describes the expected
value of a textarea.
17. _________attribute is used to specify the number of visible values.
18. ____________ was created to “make webpages alive” so that user
can implement any logic.
19. ___________are used to generate dynamic webpages on the Web.
20. ____________tag is used to accept user’s entry.
21. The ____________ is a basic unit of storage in a Javascript Program.
22. ____________ name in javascript is declared with keyword var.
23. __________ data type can hold positive as well as negative values.
24. _________ must be inside of either single quotes or double quotes.
25. All relational, conditional and logical operators produce
____________.
1
CLASS- XI IT (SCIENCE) CHAPTER- IMPRESSIVE WEB DESIGNING ASSIGNMENT NO-01
26. In Javascript ____________ is just a value which means “nothing”,
“empty”, “unknown”.
27. Javascript returns ____________ when variable which is declared
but not assigned.
28. Operators that require one operand is called as _______________.
29. _______________is used to display or write content on a web page.
30. In ________________value of variable is incremented after it is
used in expression.
31. In Javascript, for string concatenation _______________is used.
32. The content within _______________tag is displayed in a title bar.
33. ____________tag is used to display content in blood format and can
be replaced with <td>.
34. In ________________value of variable is decremented after it is
used in expression.
35. The expression a+b=c+d; in Javascript ________________.
36. In _________________value of variable is decremented before it is
used in expression.
37. Result for the following expression 20+”40” will be ____________.
38. In ____________value of variable is incremented before it is used in
expression.
39. _______________________are used to check conditions or
comparison of operands.
40. __________________ is used to increment value of variable by one.
41. When you want input from user at the time of program execution
then ____________is used.
42. __________________is used to decrement value of variable by one.
43. ____________unary operator is used to invert the Boolean
Expression.
44. ____________is a property of string object used to calculate length
of string.
45. ____________operator evaluates to ‘True’ when any one of the
operand is ‘True’.
46. ____________ are used to provide information or explanation
about your programming construct.
47. ____________ can be called either by an event or by an event or by
given call to that function.
48. ____________ is an action done by the user or an application.
49. Rules to declare ____________ name is similar to ____________.
2
CLASS- XI IT (SCIENCE) CHAPTER- IMPRESSIVE WEB DESIGNING ASSIGNMENT NO-01
50. If the conditional expression evaluates to true, then ____________
statements will be executed.
51. When user presses a key ____________ event is called.
52. ____________function displays confirmation message box with OK
and Cancel button.
53. One can respond to any event using an ____________.
54. When user releases a mouse button over an element ____________
event is called.
55. If the given value is not a number then ____________function
returns ‘True’.
56. When user moves the mouse away from an element ____________
event is called.
57. When user moves the mouse over an element ______________
event is called.
58. A ____________ in any scripting language is small part of program
that we require again and again.
59. Determine the Boolean Value of each of the Following if a=10, b=-5
and c=20
i. a<b && c>b ____________
ii. a==b|| c==b ____________
iii. c>-24 && a<50 ____________
iv. c<0.0 || a>-20 ____________
v. a<b || a<c || b<c ____________
vi. b<c && a==67 ____________
vii. a<b && b==c && a==b ____________
60.____________ are non-executable statements in program.