Answer:
The answer to the given question is the option "(i)".
Explanation:
In this question, the correct option is the "(i)" because In this method definition we use the super keyword. It refers to the parent's class. In this method, we use the superclass to call the above (parent) class method. and if we choose the option (ii), It will not call the parent class. That's why we use the option (i) which is correct.
Answer:
Rehearse and time or slide view tab
Explanation:
I think it can be seen in slide view tab at the left side of the powerpoint window if you want to see them only but if you want the whole presentation with graphics,animation then Rehearse and time option can be used.
Answer:
The colour depth of an image is measured in bits. The number of bits indicates how many colours are available for each pixel. In the black and white image, only two colours are needed. This means it has a colour depth of 1 bit.
A 2-bit colour depth would allow four different values: 00, 01, 10, 11. This would allow for a range of colours such as:
00White01Light grey10Dark grey11Black
Answer:
D) All the above are true
Explanation:
consider this code snippet
<em>int age =17;</em>
<em>if(age<18){</em>
<em> cout<<"You are young"<<endln;</em>
<em>}</em>
<em>else{</em>
<em> cout<<"You are an adult"<<endln;</em>
<em>}</em>
From this code snippet we see the use of an if statement which is followed by the condition age<18. We can see that this condition can only be true or false that is boolean (Fulfils option A in the question) And we know that a boolean expression is something the computer can test whether it is true or not (fulfills option B). Then finally we have used it to implement a selection control with the combination of an else branch. So all of the options are true
Answer:
I would say 3 is the most likely answer ("When you want to ask the user for 10 numbers").
You use for loops to perform a task x times usually.