Answer:
134
Explanation:
because 6.00×10-9 =51 and 1.80×10-8=10 and 8.00×10-7=73 by adding them it will give the answer out by the figuer 134
Answer:
(b)Tb = Ta[:3]
(c)Tc = Ta[-3:]
(d)Td = Tb + Tc
Explanation:
In order to generate random number in python, we need to first import random() function from random module
This function will generate a float number between 0 and 1, to make it between 1 and 15, we add 1 to the multiplication between the random number and the range differences
(a)
from random import random()
L = []
for i in range(10):
L.append(1 + round(random()*14))
Ta = tuple(L)
(b) To copy the first 3 elements of tuple Ta, we simply go from : to 3
Tb = Ta[:3]
(c) To copy the last 3 elements of tuple Ta, we simply go from -3 to :
Tc = Ta[-3:]
(d) To concatenate the 2 tuples, we simply add them up
Td = Tb + Tc
Answer:
The answer is "Option B".
Explanation:
In Linux, PWD is a printed working directory, which is used to describe the path of the current directory that we are working with, this directory also starts with the root directory. It is a built-in shell or an individual, and the environmental variable, that saves the individual directory's path, and other choices were wrong that can be described as follows:
- In option a, It is used to change the current directory, that's why it is wrong.
- In option c, It is used in encoding, that's why it is wrong.
- In option d, It is used to display the list of files, that's why it is wrong.
False, because it's smaller than the space key, and bigger than the letter, number, backspace, tab, enter, and arrow keys.