Answer:
Following is the loop statement in the Python programming language
salaries=[93.85967,4232.32,13343.3434] #storing the values in salaries
for k in salaries:#iterating the loop
print("%12f"%round(k,2))# print the width of 12 and a precision of 2
Output:
93.860000
4232.320000
13343.340000
Explanation:
Following is the description of the statement
- Declared a dictionary "salaries" and initialized some values into it.
- iterating the for a loop .
- In this for loop print the width 12 and a precision of 2 .The print statement in python will
- print the data with width 12 and a precision of 2 in the console window
Answer:
The External Data Bus is used to transport binary data and Address bus is used to transport memory addresses.
Explanation:
- External Data Bus is a combination of data bus and external bus. Data bus is used to carry data and instructions between two or more components in the system e.g. CPU and all other computer components.
- External bus is also called expansion bus. It is used to connect external components to the computer. Its a communication medium between CPU and other components. These components can be peripheral device like USB or flash memory.
- So External Data Bus is used to transport data between CPU and external components. It is a primary communication pathway for data in a computer. The external data components are connected to this bus and the instruction or data on this bus is available to all external components. But the data communication is slower as compared to that of internal bus.
- Address Bus carries physical location or address of data and transports memory addresses. Processor uses address bus when it wants to read data from memory or write data to the memory by sending a read/write signal by placing the read/write address of the specific memory location on the address bus.
Answer:
it means that they can charge companies to come mine it making them more wealthy they can also upscale the materials needed to make it as they are the only countries that sell it so they have no one to compete with
The correct answer for this question is this one: " c.huge initial investment"
<span>Ethan is a systems developer. He is working on a system where he will implement independent solutions for different processes. The possible drawback of using such a system is that </span><span><u>huge initial investment</u>
</span>
Hope this helps answer your question and have a nice day ahead.
Answer:
The solution code is written in Python:
- mystery_string = "Programming"
- output = ""
-
- for x in mystery_string:
- output += x
- print(output)
Explanation:
Firstly, create a variable mystery_string to hold a random string (Line 1).
Create an output variable to hold an output string (Line 2).
Create a for-loop to traverse the mystery_string character by character (Line 4). In the iteration, get a character from the mystery_string, and concatenate it with output string (Line 5). Print the output string (Line 6) before proceed to the next iteration.