Answer:
A still
Explanation:
This is the only answer that makes sense, a dialogue is words, sound element is well sound, and an animation would be moving.
Answer:
Go out to get some milk
Explanation:
Almost anything we do in life is framed in a procedure, from making popcorn, to driving a car, to pay for the bus, to go out to get some milk, but we don't think about those in everyday life, because we are so used to them that we do them instinctively. Anything that implies doing specific actions in a specific order to obtain a specific result.
Procedure to get milk
Verify if you wear appropriate clothes to go outside
- If not, dress properly
Go out of your house (lots of mini procedures included here, like go to the door, open the door, get out, close and lock the door behind you, and so on)
Go to the store
Find milk in the shelf and take it to the cash registry
Pay for the milk
Go back home
Re-enter the house
Undress if necessary
Put milk in the fridge.
More obvious examples could be the fire emergency procedure or the pre-lift off check list for a plane.
The limitation of computer are:
- No self-intelligence
- No feeling
- No learning power
- Dependency
Keeping in mind the role the order of precedence plays in equations, what would Excel display as the result of the following equation?
=(24+75)/(6*3)
=99/18
= 5.5
18)99.0.
90.0
9.0
D. 5.5
Answer:
import java.util.Scanner;
public class num8 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter month's budget");
double monthBudget = in.nextDouble();
double totalExpenses = 0.0;
double n;
do{
System.out.println("Enter expenses Enter zero to stop");
n = in.nextDouble();
totalExpenses += n;
}while(n>0);
System.out.println("Total expenses is "+totalExpenses);
System.out.println("The amount over your budget is "+ Math.abs(monthBudget-totalExpenses));
}
}
Explanation:
- Using Java programming language
- Prompt user for month's budget
- Use Scanner class to receive and store the amount entered in a variable
- Use a do while loop to continuously request user to enter amount of expenses
- Use a variable totalExpenses to add up all the expenses inside the do while loop
- Terminate the loop when user enters 0 as amount.
- Subtract totalExpenses from monthBudget and display the difference as the amount over the budget