Answer:
B. Planning
Explanation:
I believe the developer establishes the project goals in the planning phase.
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:
1 - Reduced resource costs used for data backup.
2 - Improved collaborative work process.
Answer:
B. reducing multi-language communication friction in a company through automatic language translation.
Explanation:
Deep learning is a branch of artifical intelligence whereby computer systems are programmed to operate in such a way they imitates tbe functioning of the human brain. Hence, emplyins network of neurons structures to learn, gain insight and make predictions. Using layers of network architectures, deep learning in predictive, including facial recognition, virtual assistants, language translation and many more. Deep learning is able to create value not by abrogating humans from the work fold but by enhancing and bridging the gap in areas which need the leverage of technology such as language translation as it enables individuals with different language prowee to be able to communicate through automatic translation.
Answer:
c. SSL Certificate
Explanation:
The full form of SSL is Secure Sockets Layer. It is the standard security technology which establishes the encrypted link between a client and the server—typically a web server (which is the website) and the browser, or the mail server along with a mail client (for e.g., Outlook).
In the context, in order to develop an SSL connection, an SSL Certificate is required by the Web server.