Answer:
Name box
Explanation:
From the picture, the name box is at the top left corner with B1 written inside, here B1 is written because it is the active cell at the time which also happens to be the first cell of the selected range. The name box can be used to easily create a named ranges rather Than having to draw the mouse over a group of cells. It also helps to know which cell is the current active cell as the cell address in the name box is the active cell at any point in time.
Answer:
x = input ("Enter a word: ")
y = input ("Enter a word: ")
print ( x, " ", y)
Explanation:
This is the simplest way to write it using Python.
Answer:
import java.util.Scanner;
public class num10 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter the numbers to add up. enter 999 to stop");
int num = in.nextInt();
int sum = 0;
while (num!=999){
sum = sum+num;
System.out.println("Enter the next number");
num = in.nextInt();
}
System.out.println("The sum is: "+sum);
}
}
Explanation:
The application is implemented in Java
A while loop is used to continously prompt user for inputs. The condition of the while loop is while (num!=999)
When the number 999 is entered, it displays the sum which is initialized to 0
Answer:
There are two error in this program--
- In header file inclusion, file is not defined.
- In the statement "result = ++(num1 + num2);" , bracket is fixed after the increment operator.
Explanation:
- For the first error, the user needs to add the file because "#include" is used to add the library for the program which states about the function and symbols used in the program.
- The second error is because there must be a variable with the increment operator ( increment operator is being used to increase the value of a variable by 1), but there is a small brace fix in between the operator and operands.