import java.util.Scanner;
public class U2_L3_Activity_Four {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
System.out.println("Enter a sentence.");
String sent = scan.nextLine();
int count = 0;
for (int i = 0; i < sent.length(); i++){
char c = sent.charAt(i);
if (c != ' '){
count++;
}
else{
break;
}
}
System.out.println("The first word is " + count +" letters long");
}
}
We check to see when the first space occurs in our string and we add one to our count variable for every letter before that. I hope this helps!
Answer is "Web Designer".
Web Designers are the "artists" of the website. They conceptualize the layout and functionality of the site, from features to format. They may do little coding, and are mostly involved in the creative elements of web design. The Web Developer is less big-picture, and more knitty-gritty building of the website. She is the one who does the coding and actually builds the website, using the web designer's model.
Answer:
A hardware and software support technician
Explanation:
If you provide your own web server, you also need <em>hardware and software support technicians</em> who will configure, manage, maintain and handle failures.
<em>A Web development team</em> is needed either you own your server or you are on cloud.
<em>The flexible subscription fee that varies upon the resources used </em>is an option in cloud.
<em>The market</em> does not response directly to the decision of server hosting
I would vote for D since you can adjust picture positioning and wrapping. A is BS, B and C are not true.
1. a.
2. d
3. b
I hope this helps