Answer:
study-time survey, project schedule, prioritize tasks, reward system.
Explanation:
Time management can be defined as a strategic process which typically involves organizing, planning and controlling the time spent on an activity, so as to effectively and efficiently enhance productivity. Thus, when time is properly managed, it avails us the opportunity to work smartly rather than tediously (hardly) and as such making it possible to achieve quite a lot within a short timeframe. Also, a good time management helps us to deal with work-related pressures and tight schedules through the process of properly allocating the right time to the right activity.
Hence, time-management techniques work most effectively when performed in the following sequential order; study-time survey, project schedule, prioritize tasks, and designing (creating) a reward system.
Social media? is that what you were looking for?
4. Find an example of a print or Internet ad that includes images and text, and then answer the following questions about it.
a. Describe the ad. (1-3 sentences. 1.0 points)
Mcdonald's all day breakfast. It shows their breakfast items, with high-quality images.
b. What do you think this ad's marketing message is? (1-5 sentences. 2.0 points) TIP: Does it use a specific desire or fear, or does it try to show how the product is a need or how it solves a problem?
They use desire because they show their delicious looking food, and the customers are wanting it.
c. Is the ad trying to get people to do something? If so, what is it trying to get people to do? If it isn't trying to get people to do something, what do you think the point of the ad is? (1-5 sentences. 2.0 points)
The ad is trying to get people to stop at Mcdonalds and buy their breakfast items
d. Do you think this ad is effective? Why or why not? (1-5 sentences. 2.0 points)
Yes I think this ad is effective because it is showing high quality images of their breakfast items that encourage people to stop by and try their products.
Answer:
The solution code is written in Java
- import java.util.Scanner;
-
- public class Main {
- public static void main (String [] args) {
-
- Scanner inStream = new Scanner(System.in);
- System.out.print("Please input a number (1 - 10): ");
- int num = inStream.nextInt();
-
- if(num < 1 || num > 10){
- System.out.println("The input must be between 1 - 10");
- }else{
- switch(num){
- case 1:
- System.out.println("I");
- break;
- case 2:
- System.out.println("II");
- break;
- case 3:
- System.out.println("III");
- break;
- case 4:
- System.out.println("IV");
- break;
- case 5:
- System.out.println("V");
- break;
- case 6:
- System.out.println("VI");
- break;
- case 7:
- System.out.println("VII");
- break;
- case 8:
- System.out.println("VIII");
- break;
- case 9:
- System.out.println("IX");
- break;
- case 10:
- System.out.println("X");
- break;
- }
- }
- }
- }
Explanation:
The first part of this program (Line 6 - 8) is to get input number from user using Scanner object. Input validation has been done to check if the input number is in the acceptable range (Line 10). If not, an error message will be displayed (Line 11).
If the input number is in the range of 1 - 10, the number will go through a series of switch statements checking. If the number meet the condition in one of the switch cases, it will print the corresponding roman numeral specified in the case block (Line 13 - 44). For example, if input number is 9, the case 9 condition is met and "IX" will be printed.
A composite number is a number that can be divided by a number other than one and itself.
Composite numbers with 8 as a factor:
16, 24, 32, 40, 48.
Choose two of the numbers.