Answer:
The answer is "Its fundamental economic structure of IP, which is based on the concept of incentives".
Explanation:
In the given question the correct choice is missing so, its solution can be defined as follows:
It is a copyrighted category that includes subjective human mind works. which exists in different forms, and also some countries recognize much more than others. Copyright laws, patents, trade secrets, and trademarks are the most famous types.
- This is a law that promotes the creation of a broad range of intellectual goods.
- To do just that, the law gives the information and creative goods made, generally for a limited time, rights to individuals and companies.
Answer:
lst = []
n = int(input("Input an array size for you words array: "))
print("Now please enter " + str(n) + " words")
max = 0
min = 1000
index_min = 0
index_max = 0
for i in range(n):
s = input("Input a word: ")
lst.append(s)
if len(s) >= max:
max = len(s)
index_max = i
if len(s) <= min:
min = len(s)
index_min = i
print("The longest word is :" + lst[index_max])
print("The shortest word is :" + lst[index_min])
Explanation:
Create an empty list, lst
Get the size from the user
Create a for loop that iterates "size" times
Inside the loop, get the strings from the user and put them in the lst. Find the longest and shortest strings and their indices using if structure.
When the loop is done, print the longest and shortest
The answer is Storing files on your desktop so that you can locate them easily
Hope this helps! :)