Word processor because it's more for writing
Answer:
Line second and third i.e, "typing the cell name, like "B4" and clicking the cell to reference
" the correct answer.
Explanation:
It relates to some kind of set of cells on the worksheet, which could be used to calculates the formula. It also helps to locate the information, which you want to analyze in the calculation. It can also provide the cell reference in more than one formula in the same worksheet, that relates to Information on many other workbooks, and wrong choices can be described as follows:
- Hovering provides the basic details, in which we hover, that's why it is wrong
.
- Zooming is used in projection, it can't be used in the cell reference, that's why it is wrong.
Answer:
In C++:
#include<iostream>
using namespace std;
int main(){
int numDays;
cin>>numDays;
cout<<"Days: "<<numDays<<endl;
return 0;
}
Explanation:
This line declares numDays as integer
int numDays;
This line gets user input for numDays
cin>>numDays;
This line prints the required output and ends with a newline
cout<<"Days: "<<numDays<<endl;
Answer:
I think its B
Explanation:
software enables users to create and edit documents.
Answer:
speed(0)
secret_number = 9
pensize(10)
def green_check():
color("green")
penup()
backward(25)
right(45)
pendown()
forward(35)
left(90)
forward(75)
def draw_arrow():
color("red")
left(90)
forward(50)
left(45)
backward(25)
forward(25)
right(90)
backward(25)
forward(25)
left(45)
backward(100)
forward(50)
right(90)
user_number = int(input("Guess a number between 1 and 10: "))
while user_number != secret_number:
if user_number < secret_number:
draw_arrow()
else:
left(180)
draw_arrow()
right(180)
user_number = int(input("Guess a number between 1 and 10: "))
clear()
green_check()speed(0)
secret_number = 9
pensize(10)
def green_check():
color("green")
penup()
backward(25)
right(45)
pendown()
forward(35)
left(90)
forward(75)
def draw_arrow():
color("red")
left(90)
forward(50)
left(45)
backward(25)
forward(25)
right(90)
backward(25)
forward(25)
left(45)
backward(100)
forward(50)
right(90)
user_number = int(input("Guess a number between 1 and 10: "))
while user_number != secret_number:
if user_number < secret_number:
draw_arrow()
else:
left(180)
draw_arrow()
right(180)
user_number = int(input("Guess a number between 1 and 10: "))
clear()
green_check()
Explanation:
It's right