Answer: print("I can code")
Explanation:
luckily im a coder
Answer:
no
Explanation:
Wikipedia can change the answers everyday and the answer are not true, but the gov website only tells about the government not any subject.
Answer:
The answer is "Option C".
Explanation:
The /var method can also be used to override the values of the current variable, or generate, and assign values to new variables. It generates a local variable, that can be modified via the -g switch, and other choices are not correct, which can be described as follows:
- In option A, It is incorrect because it uses to store temporary data file.
- In option B, It is used by a system administrator, that's why it is incorrect.
- In option D, It isn't correct because it prints a warning message.
Answer:
insert i think sry if its wrong :(
Explanation:
Answer:
public class num7 {
public static void main(String[] args) {
int n =1;
while(n<200){
if(n%5==0 && n%7==0){
System.out.print(n);
System.out.print(",");
}
n++;
}
}
}
Explanation:
- In Java programming Language
- Create and initialize an int variable (n=1)
- Create a while loop with the condition while (n<200)
- Within the while loop use the modulo operator % to check for divisibility by 5 and 7
- Print the numbers divisible by 5 and 7