Answer:
import random
decisions = int(input("How many decisions: "))
for i in range(decisions):
number = random.randint(0, 1)
if number == 0:
print("heads")
else:
print("tails")
Explanation:
*The code is in Python.
import the random to be able to generate random numbers
Ask the user to enter the number of decisions
Create a for loop that iterates number of decisions times. For each round; generate a number between 0 and 1 using the randint() method. Check the number. If it is equal to 0, print "heads". Otherwise, print "tails"
Answer:
Option B i.e, T1.
Explanation:
The T1 seems to be the licensed electronic transmission connection efficient for delivering the following bits each sec. T1 lines are required to transmit that server information of such an organization to both the Web or to link to such an ISP.
- Option A is incorrect because their transmission is different as compared to the T1.
- Option C is incorrect because consumers are equipped with a high rates broadband link from such a mobile wall socket over an installed telecommunications line.
- Option D is incorrect because it seems to be a circuit-switched telecommunications line infrastructure that communicates both information as well as voice across a wire cable.
Answer:
123.6326
Explanation:
Given number in base 7 : 234.43
Converting to base 10:
Each digit needs to be multiplied by 7^(position index)
Applying this for all the digits in the number:
=2* 7^2 + 3*7^1 + 4*7^0 + 4*7^-1 + 3*7^-2
=2*49 + 3*7 + 4 + 4/7+3/49
=98 + 21 + 4 + 0.5714 + 0.0612
Separating the integer and fraction parts:
=(98 + 21 + 4) + (0.5714 + 0.0612)
=123.6326
So the base 10 equivalent value for 234.43(base 7) is 123.6326
Answer:
C.) store data securely would be my choice
Hope This Helps! Have A Nice Day!!
Answer:
I think it's C. but not a 100%