Answer:
The correct answer is: The instructions are not correctly ordered.
Explanation:
The instructions are not correctly ordered because to pay the cashier, you first have to select your purchases.
The correct order for the instructions:
- Drive to the store.
- Select your purchases.
- Pay the cashier.
- Drive home.
Answer:
ok
Explanation:
where is the pic that u want us to have a look at
Reduce the speed of the CPU
I personally have online courses, A. seems like a fitting choice in my opinion. I hope this helps.
Answer:
in C++:
#include <iostream>
int main(){
int input;
std::cout<<"Enter a number: "<<std::endl;
std::cin>>input;
if(input%2==0){
std::cout<<" The number is even"<<std::endl;
}else{
std::cout<<"The number is odd"<<std::endl;
}
}
Explanation:
Getting user input as integer, and check if NUMBER÷2 have remainder=0 or no, if remainder==0 then number is even else number is odd