What do we use to type into a computer

Answers

Answer 1
Answer:

Answer:

We can use Keyboard to type in to the computer system.

Explanation:

Keyboard is the device through which we can type into the computer system in many languages and also we can write words, numbers, symbols, and characters also. We can also say that the keyboard is the combination of the keys by which we can write into the system and it is also known as the typewriter of the computer system


Related Questions

Colin is writing a Python program and needs to convert decimal to binary. Which function should he use?ILL GIVE BRAINLEIST TO BEST ANSWER A: bin( )B: convert( )C: digi( )D: main( )
What is the basis function of a galvanometerA the transformation of mechanical to electrical B the change in strength of a magnetic field C movement caused by a change in temp D rotation of a wire loop in a magnetic field
How to change the frequency on rc boats
What is the computer box called?
What are threats to computer system

2. John is asked to create an acrostic to help remember the names of the months that have 30 days in the order in which they occur in the year. The months that have 30 days are September, June, November, and April. Which of the following choices satisfies the request

Answers

all James sing noisily

There are no choices, you didn't put any in the question.

When performing actions between your computer and one that is infected with a virus which of the following offers no risk becoming infected

Answers

Going to need your answer choices

thanks :)

Which of the following statements is TRUE?A. Paying off your entire credit card balance can lower
your credit score
B. The longer you use credit responsibly, the higher your
credit score will be
C. Applying for soveral credit cards in one year can help
increase your credit score,
D. People with low credit scores are usually low-risk
borrowers,

Answers

Answer:

B

Explanation:

im pretty sure thats the answer

The following numbers are sorted in which way: 10, 20, 30, 40? A. ascending B. descending C. shuffled

Answers

The following numbers are sorted in ascending order. The correct option is A.

What are ascending orders?

Numbers are written in ascending order from smaller to greater, and in descending order from greater to smaller.

When numbers are arranged in ascending order, they are done so from least to largest. We must first compare the numbers before we may arrange them in any order. Compare first, then order. Numbers arranged in ascending order: Determine how many digits each number has.

The numbers are 10, 20, 30, and 40. They are sorted from smaller to big. Ten is smaller than twenty and so on.

More examples are 1, 2, 3, 5. They are also in ascending order. From small to greater. Descending orders are when 5, 4, 3, 2, and 1, numbers are from greater to smaller.

Therefore, the correct option is A. ascending.

To learn more about ascending orders, refer to the link:

brainly.com/question/28762233

#SPJ6

The answer is ascending because ascending is the numbers from smallest to largets

1. For which of the following are you not required to signal beforehand?A. Changing lanes
B. Speeding up
C. Stopping

Answers

A primary goal of signaling and interlocking is to govern & regulate the passage of trains safely and effectively. Signaling is the use and operation of signals, points, block instruments, and other linked equipment in a planned manner to ensure the safe and reliable operation of trains.

  • This circumstance varies; if there is a crosswalk and a person is attempting to cross, you should stop, and give that pedestrian the right of way.
  • So, if you're driving and suddenly stop to allow a pedestrian a right of way, all approaching vehicles must also stop to allow the person to cross the street.

Therefore, the final answer is "Option C".

Learn more:

brainly.com/question/2947946

Answer:

C stopping.

Explanation:

The situation varies, if there is a cross-walk and there is a pedestrian trying to cross you it is mandatory to stop. and allow the pedestrian the right of way. so if you're driving and suddenly stop to allow the pedestrian their right of way then all oncoming vehicles must stop to allow the pedestrian to cross the street.

Write a program to enter a number and test if it is greater than 45.6.if the number entered is greater than 45.6 the program needs to out the phrase Greater than 45.6

Answers

Answer:

#include<stdio.h>                        //header file

int main()                                      //main function

{

float num;                                   // variable declaration

printf("Enter a number to test:\n");   // getting variable for test

scanf("%f", &num);

if (num>45.6)                                    //Testing weather greater or smaller

printf("\n %f is greater than 45.6", num);  // Result if greater

else

printf("\n %f is not greater than 45.6", num);  // Result if smaller or equal

return 0;

}

Explanation:

  • First of all , a variable will be declared in float (data type ).
  • User will input data in variable.
  • The variable will be compared using logical operator with 45.6
  • If it is greater, A phrase will be passed that number is greater than 45.6
  • Else if the number will not greater the phrase will say that the number is not greater than 45.6