(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 :)
Answer and Explanation:
To calculate Big O, go through each line of code and determine O(!), O(n) and return your calculation.
For example,
In O (5 +6n), where 6 5 represent five instances of O(1), and 6 represent the 6 O(n).
We compute the time complexity of the algorithm. We get the result, just an estimation. In given algorithms, run time in milliseconds has been provided, such as in T (1) algorithm process in 512 milliseconds and T(2) algorithms process 8129 milliseconds. But big O notation not measured in milliseconds. Information given is not enough to calculate the big O notation.
Answer:
Mathpix Snip, Socratic, Microsoft Math Solver....etc.
Explanation:
Hope this helps! :)
Answer:
def main():
# Initialize variables
numGuesses = 0
userGuess = -1
secretNum = 5
name = input("Hello! What is your name?")
while ( userGuess != secretNum):
userGuess = int(input("Guess a number between 1 and 20: "))
numGuesses = numGuesses + 1
if (userGuess < secretNum):
print("You guessed " + str(userGuess) + ". Too low.")
if (userGuess > secretNum):
print("You guessed " + str(userGuess) + ". Too high.")
print("You guessed " + str(userGuess) + ". The correct number is " + secretNum + " after " + numGuess + " times.")
main()
Explanation:
add a While until userGuess == secretNum than we stop
Answer:
5. a. DHCP
6. b. Dynamic
7. b. DNS
8. a. True
Explanation:
5. The server role responsible for managing and configuring the automated configuration of IP addresses on clients is DHCP.
6. Using the dynamic update method, as a DHCP server hands out IP addresses, it registers the client hostname or FQDN and IP address with the DNS server. If the hostname or IP address changes, the DNS record is updated accordingly.
7. The server role responsible for name resolution for the internal network as well as Internet resources is DNS
8. The forest administrators, who are members of the Enterprise Admins group, are automatically granted the ability to create an OU hierarchy in any domain within the entire forest. True