hi here is your answer hope it helps or then sry
Explanation:
The main objective of business is to earn a profit. The main objective of a profession is to provide service. The main objective of employment is to earn income in the form of salary by satisfying the employer. It involves the rendering of personalized services of specialized nature.
Answer:
You have tobi, he is underneath your bed
Explanation:
You can set up a web page where objects change where they, appear, disappear, move, morph using TIMELINE.
Explanation:
- A timeline is presentation of a sequence of events along a drawn line that enables the reader to quickly understand relationships relating to or limited by time.
- A website project timeline should list the most important milestones that represent the major stages of creating the website.
- A timeline can also be used in a web page to change objects within.
- Morphing involves automatically matching the basic look and feel of a website to cognitive styles.
- Each stage should be given a set length of time that corresponds to its size and complexity. There is a set of objectives that need to be accomplished in order to complete each stage which help the web page become a reality.
- Effects can make an object appear, disappear, morph or move. They can change an object's size or color
I would go with text. but I'm not 100% certain
Answer:
Explanation:
The following code is written in Java, it takes the cost of a dozen apples as a variable (costPerDozen), it then asks the user for the total number of apples that is places in a variable called (numberOfApples). It then calculates the total cost of the apples by dividing the costPerDozen by 12 and then multiplying by the total nuumber of apples requested. Finally it prints out the total.
public static void main(String[] args) {
double costPerDozen = 4.99;
Scanner input = new Scanner(System.in);
System.out.println("How many apples would you want?");
int numberOfApples = input.nextInt();
double totalCost = (costPerDozen / 12) * numberOfApples;
System.out.println("That will cost: " + totalCost);
}