Answer:
A client wishes to update their legacy system even though there have been no security breaches since its implementation five years ago. If the client has not suffered any attacks, why is it still necessary to update their system? ... Because new security threats emerge all the time.
Answer:
See Explanation
Explanation:
The lines with incorrect syntax and corrections are:
1.
Line:
usersChoice == Integer.parseInt(usersChoiceString);
Error
The error is that a relational operator (==) is used instead of an assignment operator (=)
Correction
usersChoice = Integer.parseInt(usersChoiceString);
2.
Line:
System.out.println("Fries with that?\n1 - Yes\n2 - No";
Error:
The line requires a corresponding close bracket
Correction
System.out.println("Fries with that?\n1 - Yes\n2 - No");
3.
Line:
usersChoiceString = input.next()
Error:
The line is not terminated
Correction:
usersChoiceString = input.next()
;
4.
Line
if (usersChoice = 1)
Error
A relational operator is needed
Correction:
if (usersChoice == 1)
Lastly, you need to initialize bill to a value or prompt user for input.
I've added the full source code as an attachment
Answer:
This is an Ethernet port operating at half duplex.
Explanation:
Modern Ethernet networks built with switches and full-duplex connections no longer utilize CSMA/CD. CSMA/CD is only used in obsolete shared media Ethernet (which uses repeater or hub).