Go to file>export as and it will allow you to change it to other files.
B because it is true it is a government website because the “ gov “ stands for government.
~ Destiny
Answer: Different types of client are 1. Thick 2. Thin 3.Hybrid
Explanation:
A Thick client, also known as a rich client or fat client, is a client that performs the bulk of any data processing operations itself, and does not necessarily rely on the server.
A thin client is a minimal sort of client. Thin clients use the resources of the host computer.
A hybrid client is a mixture of the above two client models. Similar to a fat client, it processes locally, but relies on the server for storing persistent data.
import java.util.Scanner;
public class JavaApplication57 {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter two numbers:");
int num1 = scan.nextInt();
int num2 = scan.nextInt();
while (num1 <= num2){
if (num1 %2 == 0){
System.out.print(num1+" ");
}
num1+=1;
}
}
}
I hope this helps!