Write a method, getEmailDomain, that is passed a String argument that is an email address and returns the domain name part. So if “[email protected]” is passed, the method returns “salzberg.de”.

java

LANGUAGE: Java CHALLENGE: Write a method, getEmailDomain, that is passed a String argument that is an email address and returns the domain name part. So if “[email protected]” is passed, the method returns “salzberg.de”. Assume that the argument will always be a correctly formatted email address.

Read More

Clunker Motors Inc. is recalling all vehicles from model years 1995-1998 and 2004-2006. A boolean variable named recalled has been declared .

java

LANGUAGE: JAVA CHALLENGE: Clunker Motors Inc. is recalling all vehicles from model years 1995-1998 and 2004-2006. A boolean variable named recalled has been declared . Given a variable modelYear write a statement that assigns true to norecall if the value of modelYear does NOT fall within the two recall ranges and assigns false otherwise. Do…

Read More