Microsoft.././/.//././././././.
THIS IS FOR PYTHON
total = 0
for i in range(7, 35):
total += i
print(i)
print(total)
I forgot the reason but python always stops one number before your desired value. So that's why it's 35
Answer:
Explanation: In general, there are three positions for the patch panel to install in the stand column of rack, which depends on your cabling. When adopting ground outlet, the cables usually enter inside the rack from its bottom. So the patch panel should be mounted in the lower part inside the rack.
Answer:
d-Deduction
Explanation:
<u>Deduction</u>
In deductive inference, we maintain a hypothesis and we predict its implications on the basis of it. That is, we predict what the results should be if the theory were right. We go from the general theory to the particular observations.
<u>Induction</u>
We're going from the specific to the general inductive inference. We make a lot of observations, discern a pattern, generalize and infer an explanation or theory.
<u>Analogy</u>
An analogy is a comparison between two objects or object systems, highlighting the respects in which they are considered to be similar.
<u>Logic</u>
Science dealing with the principles and criteria of validity of inference and demonstration that is science of formal rules of reasoning.
Answer:
numbers = []
for i in range(4):
z = int(input("enter a number: "))
numbers.append(z)
print("First is {} and last is {}".format(numbers[0], numbers[-1]))
Explanation:
Now I understand your other question as well! ;-)