You would have a total of 2.5 GB of capacity.
A gigabyte consists of 1000 megabytes, so 500 megabytes make half of a gigabyte, or 0.5 gigabytes.
So 2GB + 0.5GB = 2.5GB
The correct answer is Boolean logic.
Booleans are true or false statements.
An example of a while loop is:
while 1 < 5:
#do something.
The Boolean statement is 1 < 5 which evaluates to true because 1 is less than 5.
I hope this helps!
Answer:
Check the explanation
Explanation:
#include <iostream>
#include <iomanip>
using namespace std;
int getIQ(); // return the score
void printEvaluation(int);
int main()
{
int IQ = 0;
IQ = getIQ();
printEvaluation(IQ);
return 0;
}
int getIQ()
{
int score = 0;
cout << "Please enter your IQ Score to receive your IQ Rating:\n";
cin >> score;
return score;
}
void printEvaluation(int aScore)
{
cout << "IQ Score: " << aScore << " IQ Rating: ";
if (aScore <= 100)
{
cout << "Below Average\n";
}
else if (aScore <= 119)
{
cout <<"Average\n";
}
else if (aScore <= 160)
{
cout << "Superior\n";
}
else if (aScore >= 160 )
{
cout << "Genius\n";
}
}
Answer:
Oct 30, 2018 — ... design? A) difficulty level B) level duration C) perspective D) player-adjusted time. ... Add answer+5 pts. Log in to add comment. jonathanwilson is waiting for your help. Add your answer and earn points. ... New questions in Computer Science. answer ... classified the computer on the basic of operations.Explanation:
Answer:
a = float(input(“Enter side A: “))
b = float(input(“Enter side B: “))
c = float(input(“Enter side C: “))
d = float(input(“Enter side D: “))
e = float(input(“Enter side E: “))
area1 = (b)*(c)
area2 = (d-e)*(a-c)
area3 = (0.5)*(a-c) *(e)
print(“Room Area: “ + str(area1 + area2 + area3))
Explanation: