Answer:
weightEarth = float(input("Enter weight on earth: "))
weightMoon = weightEarth/6
print("Weight on moon:", weightMoon)
Explanation:
You have to convert the string input into a float in order to do calculations with it.
Answer:
c. you can pick any two random locations and it will take the same time to access the data.
Explanation:
The RAM is a short term storage used to maintain the information that the active applications are using and it allows that they can be accessed quickly.
Also, RAM allows to store and retrieve data in any location directly without having to access other files first which means that it takes the same amount of time to access information in different locations. According to this, the anwer is that RAM, random-access memory, is called that because you can pick any two random locations and it will take the same time to access the data.
Answer:
In the given scenario, the user may have disabled the profile on the device. That is why the help-desk would not be able to lock the device remotely through the software.
Explanation:
A device can only be located and locked via the MDM software if the profile of the software is active on the device. Else if the profile is disabled there is no more access for the software to the device.
2. 5
Looking closely at the function mystery, you should notice that it iterates through the array of strings and counts the number of those strings that have a length greater than the value "x" passed to it. The second piece of code declares and initializes an array of strings and then calls mystery with that array and the value of 5. So it will return the count of words in the string array that have a length greater than 5.
The strings are:
aardvark", length = 8, will be counted.
"banana", length = 6, will be counted.
"cougar", length = 6, will be counted.
"daikon", length = 6, will be counted.
"elephant", length = 8, will be counted.
"fog", length = 3, will NOT be counted.
"get", length = 3, will NOT be counted.
So there will be 5 strings counted. So the answer is "2. 5"
Answer:
Explanation:
A=4.5*B
65=4.5*66
65=297
1000001=11011001
10000011=110110011(after adding even parity bit)
X=75/Y
89=75/90
10011001=1001011/1011010
100110011=10010111/10110101(after adding even parity bit)