Answer:
CUI will be classified at a “moderate” confidentiality level and follow DoDI 8500.01 and 8510.01 in all DOD systems. Non-DoD systems must provide adequate security with requirements incorporated into all legal documents with non-DoD entities following DoDI 8582.01 guideline
Explanation:
(A. Stevie only) because You need to go the illustrations tab in order to click on the chart button.
Jane clicked on images tab so she was wrong.
Mark as brainlest plz :)
Money market?? i think anyway.
Answer:
The program in Python is as follows:
total = 0
count = 0
for i in range(8):
num = float(input())
if num < 10.5:
total+=num
count+=1
print("Average: ",total/count)
Explanation:
This initializes the total to 0
total = 0
This initializes the count to 0
count = 0
This loop is executed 8 times
for i in range(8):
This request for float number
num = float(input())
If input is less than 10.5
if num < 10.5:
The sum is taken
total+=num
And count is incremented by 1
count+=1
The loop ends here
This calculates and prints the average
print("Average: ",total/count)
<h2>
Question:</h2>
<em>Which XXX declares a student's name. </em>
public class Student {
XXX
private double myGPA;
private int myID;
public int getID() {
return myID;
}
}
<em>Group of answer choices </em>
a. String myName;
b. public String myName;
c. private myName;
d. private String myName;
<h2>
Answer:</h2>
private String myName;
<h2>
Explanation:</h2>
To declare a student's name, the following should be noted.
i. The name of the student is of type <em>String</em>
ii. Since all of the instance variables (myGPA and myID) have a <em>private</em> access modifier, then myName (which is the variable name used to declare the student's name) should be no exception. In other words, the student's name should also have a <em>private</em> access.
Therefore, XXX which declares a student's name should be written as
<em>private String myName;</em>
<em></em>
Option (a) would have been a correct option if it had the <em>private</em> keyword
Option (b) is not the correct option because it has a <em>public</em> access rather than a <em>private</em> access.
Option (c) is not a valid syntax since, although it has a <em>private</em> access, the data type of the variable <em>myName</em> is not specified.
Option (d) is the correct option.