If the school has age restrictions it can read 18+ content but it depends on the school. Viruses as by my past experiences with friends can transfer from anywhere to another place because it disables security connections.
The answer is A.
Answer:
The correct answer is:
Properties (D)
Explanation:
First of all, option D (Properties) is the option that makes the most sense in this scenario, because the other options: Copy, Delete, and Rename are unrelated commands to what is to be achieved.
Secondly and more practically, an add-in file may not load in excel, and most of the time it is blocked by default and has to be unblocked. The following steps are used:
1. close Excel if it is open
2. open the folder where the add-in file is located, right-click on the add-in file, and select "properties"
3. a display tray will appear, having the attributes: Read-only, Hidden, Advanced, and unblock. Click the checkbox against "unblock" and make sure it is checked.
4. click Apply and Click Ok
Voila, your add-in file is unblocked.
<em>N:B The Images are for steps 2 and 3</em>
List the poem please. I won’t be able to answer without it.
To understand how the code can be improved
Answer:
// here is code in java.
import java.util.*;
// class definition
public class Main
{
// main method of the class
public static void main(String[] args) {
// scanner object to read input from user
Scanner s=new Scanner(System.in);
// ask user to enter year
System.out.print("Enter the year:");
// read year
int inp_year=s.nextInt();
// check the leap year
if(((inp_year % 4 == 0) && (inp_year % 100!= 0)) || (inp_year%400 == 0))
{
// print the day in the February of leap year
System.out.println("Year "+inp_year+" has 29 days in February.");
}
else
System.out.println("Year "+inp_year+" has 28 days in February.");
}
}
Explanation:
Read year from user and assign it to variable "year" with scanner object. Check the entered year is a leap year or not. A year is divisible by 100 and then check if it divisible by 400. If both condition is true then year is leap year.If year is not divisible by 100 and divisible by 4 then also it is a leap year. if year is leap then there will be 29 days in February of that year. Else there will 28 days in the February.
Output:
Enter the year:2000
Year 2000 has 29 days in February.
Enter the year:2002
Year 2002 has 28 days in February.