1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
hammer [34]
3 years ago
9

The variable grade can have any real number value from 0 to 100. Ask the user to enter a grade in numerical form. Write an if-el

seif-else statement that displays the letter grade (any format) corresponding to a numerical grade in an appropriately formatted output statement. Use the standard 10-point grading scale:  a: A: 90 ≤ grade  a: B: 80 ≤ grade < 90  a: C: 70 ≤ grade < 80  a: D: 60 ≤ grade < 70  a: F: grade < 60
Computers and Technology
1 answer:
Alborosie3 years ago
8 0

Answer:

See explaination

Explanation:

#include <iostream>

using namespace std;

int main()

{

float marks;

cout<<"Enter your grade value :";

cin>>marks;

if(marks>=90)

cout<<"Your grade is 'A'";

else if(marks>=80&& marks<90)

cout<<"Your grade is 'B'";

else if(marks>=70&& marks <=80)

cout<<"Your grade is 'C'";

else if(marks>=60&& marks <70)

cout<<"Your grade is 'D'";

else

cout<<"Your grade is 'F'";

}

You might be interested in
Working for the Internal Revenue Service is a career in public safety. A. True B. False
yawa3891 [41]

Answer:

true

Explanation:

3 0
3 years ago
An administrator needs to set up an authentication server for users connecting to a network through a VPN. What kind of server c
Leya [2.2K]

Answer:

RADIUS

Explanation:

The administrator needs to set up a RADIUS server for this particular example, RADIUS is a networking protocol, this protocol provides centralized Authentication, Authorization for users who connect and use a network service, this is an authentication remote service, and we can use it with the VPN  (virtual private networks).

7 0
3 years ago
Explain how it is possible for a sequence of packets transmitted through a wide area network to arrive at their destination in a
dalvyx [7]

Answer:

- Different route paths, due to dynamic routing in WAN.

- Local area networks have one or very few paths to destination and does not require dynamic routing.

Explanation:

A wide area network is a network that covers a large geographical area. It goes beyond the private local area network, with more routing paths and network intermediate devices. The router is an essential tool for routing packets between devices. It requires a routing path, learnt statically or dynamically to work.

There are mainly two types of route paths, they are, static routes and dynamic routes.

The dynamic routes are used mainly in WAN. Sometimes, there can be multiple path to a destination, the router determines the best path to send the packets. It sends the sequenced packets through all available path and they arrive at the destination depending on the path used, the packets arrive in an out -of-order fashion in the destination and a rearranged.

5 0
3 years ago
Why is important to build strong connections
Nana76 [90]
Cause weak ones aren't that strong and can easily break, but a strong connection will last longer and will be harder to break. For example you need to build a connection with your dog or else your dog wont trust you. Basically building a strong connection always you to build the trust stronger.... I think this is the answer you are looking for depending on what connection you are looking for
4 0
3 years ago
Read 2 more answers
A database planner names a field “Organic ingredients_3”. Why would this name Create possible problems in programming?
o-na [289]

Answer:

I think the answer is 2.

hope it will help you

4 0
2 years ago
Read 2 more answers
Other questions:
  • A ____ is a prewritten formula that is built into excel.
    6·1 answer
  • Write an algorithm whether the given number is positive negative or zero​
    5·1 answer
  • Consider the following partial class definitions: public class A1 { public int x; private int y; protected int z; ... } public c
    12·1 answer
  • The difference between a checked and an unchecked exception is:
    10·1 answer
  • Me Completan Pliiiis
    10·2 answers
  • Question # 1
    12·2 answers
  • What is the best food to eat before workout? why?​
    10·2 answers
  • Please help me asapppp!​
    8·2 answers
  • What is the full form of MOS<br>​
    10·1 answer
  • An entity is said to be _____-dependent if it can exist in the database only when it is associated with another related entity o
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!