A school at which you are likely to be accepted because you meet graduation requirements is called a:

Answers

Answer 1
Answer:

Answer:

probable college

Explanation:


Related Questions

you are about to install a new desktop application that you downloaded from a website. What should you do before you start the installation?
What is the difference between connecting link and missing link ?
One of the problems with Internet voting is:a. there are too many candidates c. potential for voter fraud b. there are too many elections d. everyone doesn't own a computer
In Windows, which menu allows you to view file characteristics?a. View menu b. Start menu c. Details menu d. File menu
Most V-type engines use two _______, one attached to each cylinder head.a. flywheels b. vibration dampeners c. exhaust manifolds d. timing belts

If a student fails to recognize how to properly quote the words of an author, that student may be found guilty of _____. A. intentional plagiarism B.unintentional plagiarism C. intentional citation D. unintentional reference

Answers

B

Unintentional plagiarism is the act of quoting and forgetting to credit the author

PLEASE HELP ME I WILL APPROVE!!!Which of the following best describes the difference between software and hardware?
A. Hardware is the outside of the computer; software is the material on the inside of a computer.

B. Software is the material produced by the computer like a business letter; hardware is the information in the computer.

C. Hardware is the equipment; software is the programs.

D. Software is the part of the computer that you can touch; hardware is the instructions given to the computer.

Answers

C. Hardware is the equipment; software is the programs

Answer:

C. hardware is the equipment; software is the programs

Explanation:

I am a genius

A portable electronic device that can be used in an emergency to stop someone’s heart from going out of rhythm is called a/an

Answers

It is called a Heart pace maker

Answer:

heart pace maker

Explanation:

What tab on the ribbon do you click to open backstage view?

Answers

To open the Backstage view, you should click on the "File" tab on the Ribbon.

This will provide access to the Backstage view, where you can find various file-related functions such as saving, opening, printing, and sharing documents.

When you click on the File tab, you will be taken to the Backstage view, which provides access to various options and commands related to the file you are working on. The Backstage view is designed to help you manage your files, change settings, and perform other file-related tasks.

In theBackstage view, you can perform tasks such as opening, saving, and printing files, creating new files, setting file properties, checking for issues, and more. The options available in the Backstage view may vary depending on the application and the version of Microsoft Office you are using.

In summary, to open Backstage view in Microsoft Office applications, click on the File tab on the ribbon. This will take you to the Backstage view, where you can perform various file-related tasks and access different options and commands.

To learn more about Microsoft Office:

brainly.com/question/30362851

#SPJ11

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

     }

}

The System Tools folder is usually found A. nested within the Accessories submenu.
B. on the Windows desktop next to the My Computer icon.
C. under Settings in the Start menu.
D. on the Systems tab in Windows Help.

Answers

The System Tools folder is usually found under Settings in the Start menu..