Answer:
allows users to adapt it for any purpose often open to the public
Answer:
* The code is in Python
def joinStrings():
join = ""
while True:
str = input("Enter a word or Q to stop: ")
if str == "Q":
break
else:
join = join + " " + str
return join
print(joinStrings())
Explanation:
Create a function called joinStrings
Initialize join variable to hold the strings that will be combined
Create a while loop that stops when user enters "Q". Otherwise, ask the user for a new string and join it to the join variable with a space
When the loop is done, return the join
Call the function and print the result
Answer:
Hi!
The correct answer is the a.
Explanation:
The Moore's law is an a empirical law that Gordon Moore predicted doing some observations about how the density of the transistors on a integrated circuit was increasing over time.
For example, this law state that if you have an integrated circuit with: 1000 transistors in 1980 then in 1981 and six months later you will have the same integrated circuit with 2000 transistors, and so on..
- Jan 1980: 1000 transistors.
- Jul 1981: 2000 transistors.
- Jan 1983: 4000 transistors.
- Jul 1984: 8000 transistors.
And that's the reason because its cost will fall too.