Software that interprets commands from the keyboard and mouse is also knows as

Answers

Answer 1
Answer: Software that interprets commands from the keyboard and mouse is also known as Operating system.The Mouse will let you communicate and operate with the monitor in a computer.Not only mouse keyboard also plays the same role.But it is very easy to use rather than keyboard.sing MouseKeys can help someone move the pointer in smaller, controlled increments for better control

Related Questions

Encyclopedia.com is considered to be
Unlike _______, XHTML can be extended by anyone who uses it. A. SGML B. HTML C. SML D. XML
Two electronics technicians are discussing the electric series. Technician A says that if you rub a piece of glass with a piece of wool cloth, the glass will receive a negative charge. Technician B says that if you rub a piece of aluminum with a piece of flannel, the aluminum will receive a negative charge. Which of the following statements is correct?A. Only Technician A is correct. B. Neither of the two technicians is correct. C. Only Technician B is correct. D. Both Technician A and Technician B are correct. Two electronics technicians are discussing conductors and insulators. Technician A says that conductors have more free electrons than insulators. Technician B says that insulators have lower resistance than conductors. Which of the following statements is correct? A. Only Technician B is correct. B. Both Technician A and Technician B are correct. C. Neither of the two technicians is correct. D. Only Technician A is correct.
The logical view Select one: a. shows how data are organized and structured on the storage media. b. presents an entry screen to the user. c. allows the creation of supplementary reports. d. presents data as they would be perceived by end users.
Ann is in the middle of completing her first 1040EZ tax form. She has some questions about an instruction on the form. What should she do?

The shortcut key to access the spelling and grammar check is _____.

Answers

The shortcut key to access the spelling and grammar check is  Alt + F7

Answer:

The shortcut key to access the spelling and grammar check is  Alt + F7

Explanation:

This is a broad category of applications and technologies for gathering, storing, analyzing, and providing access to data to help enterprise users make better business decisions.a. best practice
b. data mart
c. business information warehouse
d. business intelligence
e. business warehouse

Answers

Answer:

Business intelligence.

Explanation:

That concept that applies to that of the selection, incorporation, evaluation, and analysis of companies or business information systems, software, and behaviors. It is direct at promoting good business decision-making.

This is a wide concept of software and technology to capture, store, analyze, and to provide information access to support users make far better strategic decisions.

An operating system is:CD-ROM software
Application software
Integrated software
System software

Answers

Answer:

System Software

Explanation:

An operating system is a system software that manages computer hardware as well as other things.

Can someone please check my answers?1) The magnification of a lens is also known as which of the following?

A)Digital zoom
B)Focal length
C)Aperture
D)Shutter speed

2) Which type of lenses shrinks the image in front of it rather than magnifying it?

A)Telephoto
B)Optical zoom
C)Digital zoom
D)Wide-angle


3) Film is sensitive to which of the following?

A)Noise
B)Vibration
C)Light
D)Movement

4) What opens between the lens and the film in order to create the photograph?

A)A shutter
B)A pentaprism
C)A pixel
D)An aperture

5) Aperture is controlled by what in the camera?

A)Pentaprism
B)Lens
C)White balance
D)Iris diaphragm

6) What is the equivalent of film speed in digital cameras?

A) Aperture
B) Sensitivity
C) White balance
D) Light metering

7) Which popular file format loses some of the information from the image?

A)JPEG
B)TIFF
C)RAW
D)NEF

8) How do point and shoot cameras differ from SLR cameras?

A)They are take smaller sized photographs

B)What is seen in the viewfinder is not an exact replica of the image that will be taken in point and shoot cameras

C)Point and shoot cameras use film

D)Only SLR cameras can take black and white photographs

9) What type of zoom crops the image and enlarges this cropped image to fill the frame of the camera?

A)Telephoto zoom
B)Optical zoom
C)Digital zoom
D)Wide angle zoom

10) What are pixels?

A)The colors in an image
B)The overall size of the images
C)The overall file size of the image
D)The smallest unit on the image that can be controlled.

11) A photograph is taken by letting light fall on a light-sensitive medium, which then records the image onto that medium.

A)True
B)False

12) Aperture is the length of time that light is let into the camera in order to expose the film.

A)True
B)False

13) TIFF is the default file format for most digital cameras.

A)True

B)False

14) A camera in manual mode means that the camera will make all of the adjustments for the photographer.

A)True
B)False

15) Rather than having a mirror within the camera that reflects the image, point and shoot cameras have viewfinder that goes directly through the camera, giving the photographer a slightly different angle on the scene that what the shutter will open to capture.

A)True
B)False

My Answers: 1)b, 2)d, 3)c, 4)a, 5)d, 6)b, 7)a, 8)b, 9)c, 10)d, 11)a, 12)b, 13)a, 14)b, 15)a

Answers

Answer:

1 is A)Digital zoom

2 is D) Wide Angle

3 is C) Light

4 is A) Shutter

5 is D) Iris Diaphragm

6 is B) Sensitivity

7 is A) JPEG

8 is B)  What is seen in the Veiw Finder is ot and exact replica

9 is C) Digital Zoom

10 is D) The smallest unit on the image that can be controlled

11 is A) true

12 is A) True

13 is A true

14 is B) False

15 is A) True

Explanation:

1. magnification is the ratio of image distance to object distance

2. wide angle

3. Film is sensitive to light. Optics is all about the study of light. The camera is a replica of the human eye

4.Shutter opens between lens and film

5.iris diaphragm

6. sensitivity is the equivalent of film speed

7. JPEG

8.b

9.Digital zoom crops the image

10. The smallest unit on the image that can be controlled. are called pixels

11. a

12.b

13. a

14b

15. a

Assume that an int variable age has been declared and already given a value. Assume further that the user has just been presented with the following menu: S: hangar steak, red potatoes, asparagus T: whole trout, long rice, brussel sprouts B: cheddar cheeseburger, steak fries, cole slaw (Yes, this menu really IS a menu!) Write some code that reads the String (S or T or B) that the user types in into a String variable choice that has already been declared and prints out a recommended accompanying drink as follows: if the value of age is 21 or lower, the recommendation is "vegetable juice" for steak, "cranberry juice" for trout, and "soda" for the burger. Otherwise, the recommendations are "cabernet", "chardonnay", and "IPA" for steak, trout, and burger respectively. Regardless of the value of age, your code should print "invalid menu selection" if the character read into choice was not S or T or B. ASSUME the availability of a variable, stdin, that references a Scanner object associated with standard input.

Answers

Answer:

Hi!

The method in Java:

public void chooseMenuAndDrink(int age) {

     String menu;

     Scanner stdin = new Scanner(System.in);

     menu = stdin.next().charAt(0); //read the char and save the value on menu.

     

     if ( menu.equals("S") ) {  // if menu is S

           if(age > 21) { // and age > 21

          System.out.println("cabernet");  // prints cabernet

          } else { System.out.println("vegetable juice"); } // else prints vegetable juice

      }

      if ( menu.equals("T") ) {

           if(age > 21) {

         System.out.println("chardonnay");

     } else { System.out.println("cranberry juice"); }

  }

           if ( menu.equals("B") ) {

           if(age > 21) {

            System.out.println("IPA");

     } else { System.out.println("soda"); }

  }      

  if (!menu.equals("B") & !menu.equals("T") & !menu.equals("S")) { // if menu is not B, T or S

          System.out.println("invalid menu selection"); // prints invalid menu selection

     }

}

While doing research on the Internet, what kind of website should you avoid because the information may be biased?

Answers

most likely blogs, because these are what people write on for personal reasons