I would say A. Allowing us to improve efficiency in the workplace has helped grow our economy and we can thank technology for that. Due the it always improving our lives only get that much easier.
Answer:
Data is accessed in a random-access manner, meaning the individual blocks of data can be stored and retrieved in any given order or time.
Explanation:
Answer:
Explanation:
To write a C program for the above problem:
#include <stdio.h>
int main()
{
// we define the variable to get the annual income
float AnIncome;
// to get the annual income from the user
printf("Enter your annual income here: ");
scanf("%f", &Anincome);
// This is the function to test the annual income
float printIt(x){
//we test the amount inputted now
if (x>= 90000){
printf("Congratulations on your income\n"); // This is the congratulatory message
}
if (x<=0){
// This statement is included to avoid putting zero as annual income
printf("Annual Income cannot be zero or less than zero\n");
}
else{
printf("You WILL make $90,000, if you keep going.\n");
}
}
printIt(AnIncome);
return 0;
}
Attached is the image for a flow chat for the program
Answer:
The answer is A). Integers
Explanation:
Booleans and Strings don't represent numbers (in most cases) so they can be eliminated.
Floats are used for representing decimals while integers are used for whole numbers.