Answer:
All months of the year have at least 28 days, while February is the only month that is comprised of only 28 days (except for leap years)
C) Authenticity
Authenticity refers to the ability to identify the person or entity whom you are dealing on the internet.
The answer is -15. This because 12 * 15 = 180 so in order to make it negative one of the integers has to be negative and since 12 is given you have to make 15 negative.
Import java.util.Scanner;
class hola
{
public static void main(String[]args)
{
Scanner x=new Scanner(System.in);
int a=x.nextInt();
int b;
if(a>20&&a<100)
{
b=a%12;
if(b%2==0){
System.out.print("es par"+b);
}
else{
System.out.print("es impar"+b);
}
}
}
}