Answer:
WAN(wide area network) is the network that is used for the connection in the geographical areas on large scale.They are used for connecting the areas like cities, countries, states etc.The connection of various LANs(Local area network) and MAN(Metropolitan area network) form the WAN.
There are several components that are used in the wide area network structure. Some of the constituents are as follows:-
- ATM()Asynchronous transfer mode
- Fiber optic communication path
- Modem having cables
- Frame relay
- Dial up internet etc.
Answer:
A service department that I would create for a product from Appliance Warehouse is:
The washing machines service department.
Explanation:
Appliance Warehouse is one of the most important if not the most important washer and drying machine leasing company. So, they require a very good service department for them. Thus, I would develop one very innovative service department with an online application that would allow performing this job with an outsourcing labor force making it cheaper or us. The recruitment would be based on the different washing machine brands certification as a service and repair provider technician. We would also select them based on consumer service orientation and will create a database on the platform. This platform would be categorized by county, let us offer it for our selected local service outsource technicians. We would make an agreement with them for the database in the form of a services contract that would set a diagnosis and a services fee. We would also have an inventory of machine parts and we would only charge 20% of the cost of the services. We would establish the fee and we would also sell the costumer the fee for the parts used to fix the machines.
Sending letters is easier when an individual is using an email. Emails are very easy to access, they can be sent twenty four / seven (24/7) and can also be received 24/7. Examples of email programs are yahoo and google websites.
Answer:
Explanation:
import java.util.Scanner;
public class PalindromeCheck
{
public static void palindromeCheck()
{
String someWord=" ";
int count=0;
int total=0;
System.out.println("Ënter some words entered by whitespace");
Scanner keyboard =new Scanner(System.in);
String[] words=keyboard.nextLine().split(" ");
for(int i=0;i<words.length;i++)
{
boolean flag=true;
int l=words[i].length();
for(int j=0;j<=l/2;j++)
{
if(words[i].charAt(j)!=words[i].charAt(l-j-1))
{
flag=false;
break;
}
}
if(flag)
count++;
}
System.out.println("There are "+count+" palindromes out of "+words.length+" words");
keyboard.close();
}
public static void main(String[] args)
{
palindromeCheck();
}
}
Output
Ënter some words entered by whitespace
This is a malayalam.
There are 3 palindromes out of 4 words