A unit of measurement that describe the rate that electricity flows through a wire is an

Answers

Answer 1
Answer: AMPERE - a unit of measureĀ for the flow of the current in a circut

Related Questions

Neil opens a new dialog box, and it obscures a window already opened. Neil says the new window is the active window. Toby says it's the default window. Who is correct?a. Only Neil is correct. b. Neither Neil nor Toby is correct. c. Only Toby is correct. d. Both Neil and Toby are correct.
Is the Redmi Note 8 eligible for the Android 11 update? a) Yes b) No c) It depends on the region d) I don't know
True or False? The correct implementation in the case of an atomic operation is to test separately for the presence of the lockfile and to not always attempt to create it.
d. The asynchronous modulus counters examined in this activity were all designed using D flip-flops. In Design Mode create a 3-Bit Mod-6 Up Counter (0-5 count) using the 74LS76 J/K flip-flop.
What aspect should you consider before adding pictures to a document?

A space on a server where users can interact with one another as if in a physical room is called aa. blog.
b. mailing list.
c. chat room.
d. newsgroup.

Answers

The answer is
C. Chat Room

A Web site that has a posted privacy policy protects users froma. release of personal identification.
b. release of information on browsing history.
c. downloading of computer viruses.
d. use of information for marketing.

Answers

a.release of personal identification


Bob The Penguin is a real you-tuber, and he plays Mine-craft. Who is his owner?

Answers

Is this even a real question-?

Write a program that asks the user to enter a number within the range of 1 through 10. Use a switch statement to display the Roman numeral version of that number. Input Validation: Do not accept a number less than 1 or greater than 10.

Answers

Answer:

// program in C++.

// headers

#include <bits/stdc++.h>

using namespace std;

// main function

int main()

{

// Variable

   int num;

   cout << "Enter a number between 1 and 10: ";

   // read input

   cin >> num;

   // validate input number

   while(num<1||num>10)

   {

   // if input is wrong then print error message

       cout<<"Wrong input!!Enter again:";

       // read again

       cin>>num;

   }

   // print output

   cout << "The Roman numeral for "<<num<<" is:";

   // switch

   switch (num)

   {

       case 1:

       // if input is 1

           cout<<"I"<<endl;

           // exit the switch

           break;

       case 2:

       // if input is 2

           cout<<"II"<<endl;

           // exit the switch

           break;

       case 3:

       // if input is 3

           cout<<"III"<<endl;

           // exit the switch

           break;

       case 4:

       // if input is 4

           cout<<"IV"<<endl;

           // exit the switch

           break;

       case 5:

       // if input is 5

           cout<<"V"<<endl;

           // exit the switch

           break;

       case 6:

       // if input is 6

           cout<<"VI"<<endl;

           // exit the switch

           break;

       case 7:

       // if input is 7

           cout<<"VII"<<endl;

           // exit the switch

           break;

       case 8:

       // if input is 8

           cout<<"VIII"<<endl;

           // exit the switch

           break;

       case 9:

       // if input is 9

           cout<<"IX"<<endl;

           // exit the switch

           break;

       case 10:

       // if input is 10

           cout<<"X"<<endl;

           // exit the switch

           break;

         // default

       default:

           break;

   }

return 0;

}

Explanation:

Read a number from usr and assign it to variable "num". If the input number is less than 1 or greater than 10 then ask again to enter a number until user  enter a number between 1-10 only.Then with the help of switch() function print  the equivalent Roman number.

Output:

Enter a number between 1 and 10: -5                                                                                        

Wrong input!!Enter again:12                                                                                                

Wrong input!!Enter again:6                                                                                                

The Roman numeral for 6 is:VI

The Internet is BEST described as a vast _______ connection of computer networks that also link to smaller networks

Answers

whats ur choices if there web or world try them

At which minimum height off the floor should a new oven be installed

Answers

Answer:

32 inches

Explanation:

Wall oven manufacturers recommend that you place your oven 32 inches above the floor. This placement, however, is for convenience rather than safety. This placement allows you to lift food in and out of your oven safely.