Answer: 2, 3, 6, 8
Explanation:
i must tell you something very important.
in LISTS.... the FIRST thing is marked with a 0.
[0, 1, 1, 2, 3, 6, 8, 13, 21, 34]
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
do you see how these line up with each other?
the output would be 2, 3, 6, 8
Answer:Analog and digital signals are the types of signals carrying information. The major difference between both signals is that the analog signals that have continuous electrical signals, while digital signals have non-continuous electrical signals.
Explanation:
Answer:
Point out that it takes education in coding and computer programming in order to get to the basis of designing and programming video games, and that it takes weeks, months, if not years to fully complete a game. He would need time and patience in order to work in the video game creation idustry. Schooling for programming computers and apps can take years.
Explanation:
Answer:
SOLID is the acronym form of the first five principle of object oriented programming. It basically provide the high cohesive units and used in the testing purpose. The SOLID principle combined together to develop a software easily and it is easy to maintain.
By applying the SOLID principle it makes easy to understand it also provide the better quality in the software. Therefore, violating the SOLID principle it become difficult the code to test.
i = 0
total = 0
while i < 10:
temp = float(input("Enter Temperature: "))
total += temp
i += 1
print("Sum: {}".format(total))
I wrote my code in python 3.8. I hope this helps!