Answer:
//variable integer_list to hold a list of integers
DECLARE integer_list
ASSIGN values to integer_list
//variable sum to hold the sum of the elements in the list
DECLARE sum
ASSIGN zero to sum
//loop through the integer_list and sum all it's elements together.
for(int i=0; i<integer_list.size(); i++){
sum += interger_list.get(i)
}
//Show the result of the addition from the for loop
DISPLAY "The sum is " + sum
Explanation:
The above code uses some hypothetical programming language syntax. The second and third lines declare an arbitrary integer list and assign a set of values to it respectively.
The fifth line declares a variable "sum" which will hold the result of summing all the elements in the list. The sixth line initializes "sum" to zero.
The for loop shown iterates through the integer list cumulatively summing its elements.
The result is displayed as written on line 12.
Hope it helps!
Answer: (B) evaluate current skill level and determine what skills are necessary to advance
Explanation: A professional development plan is used to assess your current skills and see what’s needed to further advance within the field.
Answer:
a b c
Explanation:
they can report data from these three options
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
1. Necessary backup from cloud storage to client workstation or desktop or pc.
2. Delete 30 day and one year data from cloud storage.
<u>Explanation:</u>
Purging the data is used in database where necessary backup and purging the data up to certain years. So that database is access will be faster.
At cloud storage it has very limited storage's and by increasing storage will cost more to company or organization, as best practices every 30 day the purge old data should done in cloud storage's and with necessary backup to be taken as precautionary measurement.
Once data is completed more than one year, with necessary backup delete old year data from cloud storages. Some cases old dead account where been deactivated also can deleted depends of organizations policy.