Answer:
public class Main
{
// required method
public static void fizzBuzz(){
// looping through 1 to 100
for(int i = 1; i <= 100; i++){
//if number is evenly divisible by both 3 and 5
if(i%3 == 0 && i%5 == 0){
System.out.println("fiz buzz");
}
// if number is divisible by 3
else if (i%3 == 0){
System.out.println("fizz");
}
// if number is divisible by 5
else if (i%5 == 0){
System.out.println("buzz");
}
// if number is not divisible by both 3 and 5
else {
System.out.println(i);
}
}
}
// main method
public static void main(String[] args) {
//calling function
fizzBuzz();
}
}
Explanation:
Answer:
C. Object Oriented
Explanation:
In Object Oriented approach to development of information systems, processes and data are handled independently and could be tested as separate modules before the actual development begin.
Hope this helps!
Which of the following are benefits of designing a scalable system? Choose 3 options.
- ability to maintain a high level of service for customers ✔
system will never need to grow again
- Ability to respond to user volume issues more quickly ✔
- guaranteed system access for all users ✔
users may never know that a site has experienced tremendous growth
Answer:
Co-branding.
Explanation:
Around the world, various brands of personal computers are sold with Pentium processors. This fact is often used as a selling point, with advertising that proclaims "Intel Inside." Co-branding concept do such advertising.
COMPLETE QUESTION
A junior administrator would like the ability to take full control of a remote computer to perform a service pack upgrade. The computer is currently stored in a locked room in which she does not currently have the key. Which of the following options ensures she can access the computer with the least amount of effort?
A. Find someone who has a key to the room and ask them to let her in.
B. Use Remote Desktop to connect to the server and perform the service pack upgrade.
C. Configure the computer for Remote Assistance and then send an invitation to her email address.
D. Contact the help desk and submit a ticket to upgrade the computer at a later date and time.
Answer:
B) Use Remote Desktop to connect to the server and perform the service pack upgrade.
Explanation:
Remote Desktop connection (RDC) is implemented by Microsoft. Using this connection type will allow connection between a local system and another remote PC through a network, thereby allowing the local PC to control the remote PC. This service is known as a Remote Desktop Service (RDS)