Answer:
import java.util.Scanner;
public class Main
{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter a number: ");
int userVal = input.nextInt();
String aString;
if(userVal < 0)
aString = "negative";
else
aString = "non-negative";
System.out.println(aString);
}
}
Explanation:
Ask the user to enter a number and set it to userVal
Check the value of userVal. If it is smaller than 0, set the string as "negative". If it is not, set it as "non-negative"
Print the string
Answer: jump out
Explanation:
Took the test and it was correct
Answer:
Organizational culture
Explanation:
Organizational culture is a system of shared assumptions, values, and beliefs, which governs how people behave in organizations. These shared values have a strong influence on the people in the organization and dictate how they dress, act, and perform their jobs.
Answer:
C. layout of each page with its respective elements
Explanation:
A layout of each page with its respective elements will give the client a good idea of the final product and help him confirm his desires/requests towards the creation of the Web site. Most people are visual, especially about things they don't fully understand, so a clear and visual representation is best.
<u>A. Bulleted lists and titles</u>... won't give the idea of the full layout of the Web site.
<u>B. chart depicting</u>.... that's more a tool for the programmer than the client, although user flow is important, it isn't as much as the visual aspect of each page.
<u>D. pictures and screenshots of websites of other florists..</u>. That could be a useful aid on the first contact, but the question implied the Web site is already in progress... so that wouldn't help much.
<u>E. programming code for the website</u>, absolutely not, the client hired Jeremy not to have to deal with that.
i think its b sorry if wrong