The Problem is either File Management or Disk access but the most common issue is due to File management
Answer:
Glacier
Explanation:
Ferris is 6ºC (43ºF) in the winter. What is the source for most of the energy that causes this temperature?
Glacier at this period the temperature is extremely cold with much less CO2 in the atmosphere that can cause green house gas that is warming of the earth.
Answer:
2.working ... heading.
3. demoting ...document
4: creating .......Navigation view
Explanation:
The outline view shows the document uniquely. It leverages advantage from the Word's style of heading for sorting out the problems of the groups by helping then arrange their thoughts, plotlines, and the ideas, as well as mix in the text for helping to arrange the thoughts. Hence, 2 and 3 are correct options. Also, the headings are displayed on the navigation view. And hence the fourth option is also correct.
Answer:
import java.util.Scanner;
import java.util.Arrays;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
int numbers[] = new int[3];
System.out.print("Enter first number: ");
numbers[0] = scan.nextInt();
System.out.print("Enter second number: ");
numbers[1] = scan.nextInt();
System.out.print("Enter third number: ");
numbers[2] = scan.nextInt();
scan.close();
Arrays.sort(numbers);
if (numbers[0] == numbers[2]) {
System.out.println("All the numbers are equal");
} else {
System.out.printf("Greatest number: %d\n", numbers[2]);
}
}
}
Answer:
If a museum charges different prices based on the day of the week and age of the visitor. The pricing rules are shown below.
- On Tuesday and Thursday children 10 and under get in free ($ 0).
- For all other days and ages the cost is ten dollars ($ 10).
The code in python is;
if (day == 'Tuesday' or day == 'Thursday') and age <= 10:
price = 0
else:
price = 10
Explanation:
The logic of the algorithm suggests that that the conditional if-statement assigns zero to the price variable if the day variable is either Tuesday or Thursday and the child's age is 10 or below but assigns 10 to the price variable if the condition is not met.