Answer:
Hence the code is given as follows,
import java.util.Scanner;
public class LabProgram {
public static String createAcronym(String userPhrase){
String result = "";
String splits[] = userPhrase.split(" ");
for(int i = 0;i<splits.length;i++){
if(splits[i].charAt(0)>='A' && splits[i].charAt(0)<='Z')
result += splits[i].charAt(0);
}
return result;
}
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String s = scan.nextLine();
System.out.println(createAcronym(s));
}
}
Answer:
best-fit
Explanation:
Best-fit: Closest in size to the request: In the Dynamic Partitioning technique of memory management, the placement algorithm that scans memory from the location of the last placement and chooses the next available block that is large enough to satisfy the request
Answer:
The answer to the given question is "communication".
Explanation:
In the given question the answer is communication because An intranet is a private network within a company that is used to securely exchange confidential information and resources among employees. and all option are not correct that can be described as:
- In the intranet, we use the web browser to open web application.
- The print server is a software program that is used to manages print requests.
- The web server is used to provide the communication.
That's why the answer to this question is "communication".