you can copy and paste your text.
It can be any letter or number as long as its validated.
Answer:
The program in Python is as follows:
num = int(input())
numList = []
for i in range(num+1):
numInput = int(input())
numList.append(numInput)
for i in range(len(numList)-1):
if numList[i] <= numList[-1]:
print(numList[i],end=" ")
Explanation:
This gets input for the number of integers
num = int(input())
This initializes an empty list
numList = []
This iterates through the number of integers and gets input for each
for i in range(num+1):
numInput = int(input())
The inputs including the threshold are appended to the list
numList.append(numInput)
This iterates through the list
for i in range(len(numList)-1):
All inputs less than or equal to the threshold are printed
if numList[i] <= numList[-1]:
print(numList[i],end=" ")
Answer:
open source software
Explanation:
A software that is free and whose code can be accessed and potentially modified by anyone is referred to as an open source software. The license used by the developer of an open source software grants all users the permission to use, distribute and modify the software at any time.
Some examples of an open source software are Firefox, gimp, OpenOffice etc.
These are called abstractions. They can be created by functions, if statements, or on event structures.