Which keyword can be used for coming out of recursion?
Return
Which keyword is used to come out of a loop only for that iteration?
Break
_ is used to create an object.
constructor
What is instantiation in terms of OOP terminology?
The creation of an instance of a class.
Which one of the following is the correct extension of the Python file?
.py
Which is the correct HTML element for the largest heading:
The h1 element
What is the correct HTML for making a drop-down list?
<select> tag
What is the correct HTML for inserting an image?
<img src="img.gif" alt="MyPic">
src attribute in an image tag means what?
Source of the image
Python is _ programming language
high-level
What is an algorithm?
A set of instructions in order
Which are themselves a collection of different data types?
structures
In the C language, the constant is defined_.
Anywhere, but starting on a new line
What is required in each C program?
The program must have at least one function.