Answer:
This Print Screen key is used to take the screenshots of all that is appearing on the screen, and this can then be pasted in paint and saved in some location of the computer. 
The Home key takes the cursor from the current position to the top left, or the start of the file.
Shift: There are two shift keys. And they are used to print the character in the capital. And when the caps lock is busy it can be used to print in lower case. It is also used together with arrow keys to select a part of the text.
Tab: This key moves the cursor from the current location to the location which we know as tab stops ( and the very next one). 
Pg Up: The page up is being used for scrolling up, and the distance to which limit the scrolling will take place depends upon the application you are working on.
Explanation:
Please check the answer.
 
        
             
        
        
        
Answer:
d)anotherFunc(myints);
Explanation:
When we call a function we just have to pass the names of the arguments to the function.In case of arrays we also just have to pass the name of the array.We don't have to worry about the square brackets.So the function call will be like this.
anotherFunc(myints);
Hence the answer is option d.
 
        
             
        
        
        
U go in to the bar with i b u the is italics and u press it again and it will turn it off but u have to have the text selected
        
             
        
        
        
Answer:
Option A(True) is the correct answer for the above question.
Explanation:
- The flowchart is used to give the solution of a problem through the diagram in a step by step processor. It helps the user to understand the solution easily. For diagram, it uses many types of symbols that are fixed for every sequence just like An oval symbol represents the start and end of the flowchart which is fixed for every flowchart.
 - So for the decisions in a flowchart, the diamond symbol is used which is to make the decisions and it has two sides-- one is true and the other is false. 
 - The decisions are used also to represent the loop structure which is also called the repetition structure because the loop is controlled by the help of decisions so the diamond box is also used for the loop
 - The above question-statement says that the decisions-controlled is used for the loop and for the decisions which are true because it is also described above. 
 
 
        
             
        
        
        
Answer:
The correct answer is:
C. ndx = 0;
while (ndx < 3) {
ar[ndx] = 0;
ndx++;
}
Explanation:
The declaration given is:
int ar[3];
This means the array consists of three locations and is named as ar.
We know that the indexes are used to address the locations of an array and the index starts from 0 and goes upto to 1 less than the size of the array which means the indexes of array of 3 elements will start from 0 and end at 2.
Now in the given options we are using ndx variable to run the while loop.
So the code to assign zero to all elements of array will be
ndx = 0;
while(ndx<3)
{
ar[ndx] = 0;
ndx++;
}
Hence, the correct answer is:
C. ndx = 0;
while (ndx < 3) {
ar[ndx] = 0;
ndx++;
}