Answer:
Complete the ZipZapZop()
function so that it requests an integer from the user. The function should display a response following this pattern:
• Divisible by 3: zip
• Divisible by 5 zap
• Divisible by 7 zop
Otherwise, just display the number
Note 1 numbers that are divisible by more than one (3, 5, or 7) should contain
all applicable terms.
Notes 2 Note that you are displaying directly from this function, not returning a value to the calling function.
Hint: The number only prints if it is not divisible by ALL of 3,5,or 7
Explanation:
Today I am going to share with you my ideas about my favourite time of the day. All time is great. It is God's gift to us to make or mar ourselves. I respect time whether in the morning, afternoon, evening, or night; I just love time.
Answer:
the first one is A
the second question is B,C,F
Explanation:edg2020
Answer:
Cyber crime is unlawful acts where the computer is either a tool or target or both. An example of such would be theft, fraud, forgery, etc. Cyberlaw on the other hand encompasses cybercrime.
COMPLETE QUESTION
I. public class Test {
public static void main(String[] args){
System.out.println("Welcome to Java!");
}
}
II. public class Test { public static void main(String[] args) {System.out.println("Welcome to Java!");}}
Answer:
Both codes will compile and run and display Welcome to Java, but the code in II has a better style than I
Explanation:
When written codes, paying attention to proper coding styles and efficient memory management enables us to create programs that are highly efficient, coding styles refer to proper indentions and avoiding too lenghty lines of code (as is in code I), adding approprite comments etc.