Answer:
Least privilege model.
Explanation:
In Computer science, the least privilege model can be defined as an information security model which typically involves giving a user the minimum level of permission, access or rights required to perform his or her duties, tasks or job functions.
In this scenario, you want to ensure that a project team can only access the files specifically created for them, and no other files. Thus, the term which is most correct in describing this configuration is least privilege model.
Basically, the least privilege model ensures a particular user is only given the barest minimum of rights, permission or access needed to perform a task.
RIGHT ANSWER GETS BRAINLEST
Complete the code.
You are writing a loop to allow the user to enter data until they enter a "Q". You want to allow them to enter an upper- or lowercase "Q".
if yourTeam.
() == "q":
break
The options they give are:
Upper
Compare
lower
Answer:
sir i beleive lower is your answer, i know it isnt upper.
Explanation:
:D
Answer:
lower
Explanation:
i just did the quiz and got it right :)
Gina, an IT professional, noticed that the servers were running very slowly. She evaluated the system and made a recommendation to the workers at her company to improve the performance of the system. She told them that the most important thing they could do to help was to _____.
stop opening attachments
delete unneeded e-mail
log off the system for at least two hours each workday
limit the number of e-mails they replied to each week
Answer:
delete unneeded e-mail
Explanation:
this will free up space
Explanation:
once you delete unneeded emails you wont have an risk for an slower functioning work day
Steven wrote an algorithm for his coding class that explains how he puts on his shoes. Which is the correct sequence of steps that Steven used?
Place foot in shoe, untie laces, tie laces
Tie laces, place foot in shoe, untie laces
Untie laces, place foot in shoe, tie laces
Untie laces, tie laces, place foot in shoe
untie laces ,place foot in shoe, tie laces maybe?
You should see the following code in your programming
import simplegui
def draw_handler(canvas);
# your code goes here
frame = simplegui.create_frame('Testing', 600, 600)
frame.set_canvas_background("black")
frame.set_draw_handler(draw handler)
rame.start()
Answer:
import simplegui
import random
def draw_handler(canvas):
for x in range(1000):
colorList = ["Yellow", "Red", "Purple", "White", "Green", "Blue", "Pink", "Orange"]
c = random.choice(colorList)
x = random.randint(1,600)
y = random.randint(1,600)
canvas.draw_point([x, y], c)
frame = simplegui.create_frame('Testing', 600, 600)
frame.set_canvas_background("Black")
frame.set_draw_handler(draw_handler)
frame.start()
Explanation:
I used a for loop, setting my range to 1000 which is how you create exactly 1000 points. Next, I defined my color array, my x randint value, and my y randint value. I set both the x and y randint values to 1 - 600 since the frame is 600x600. The rest is pretty self explanatory.