Answer:
Jesus Christ
Explanation:
Jesus Christ is the Son of God, and he was sent down to Earth to be sacraficed and die for your sins, so that everyone who believes in him should be forgiven and have eternal life.
Answer:
import java.util.Scanner;
public class num8 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter first number");
int X = in.nextInt();
System.out.println("Enter second number");
int Y = in.nextInt();
int Z;
if(X <= Y){
Z = 0;
}
else if(X >= Y){
Z = 1;
}
}
}
Explanation:
- The program is implemented in Java
- In order to set the values for X and Y, The Scanner class is used to receive and store the values in the variables (Although the questions says you should assume these values are set)
- The if conditional statement is used to assign values (either 0 or 1) to variable Z as required by the question.
Answer:
b. the action is not allowed.
Explanation:
Traffic signs are established rules and regulations designed to direct and guide commuters and other road users.
A red circle and diagonal slash on a sign simply means that the action is not allowed.
A hortatory technique is focused on encouraging, exhorting and urging people to do that which is right, acceptable and worthy of emulation by others.
For example, commuters and road users are being urged not to litter the highway with thrash, waste, or dirt, in order to protect the planet from environmental degradation and pollution. This would help in conserving and mitigating risks posing as a threat to our dear planet and habitat.
Hence, a hortatory technique in policy implementation and enactment is primarily aimed at appealing to the sense and conscience of individuals, to engage in socially responsible acts.
Answer:
True
Explanation:
A final class is something like sealed one and no one can inherit that further.
it is useful to lock our code or functionality from others