Answer:
<em>The programming language is not stated; however, I'll answer using Python programming language (</em><em>Se</em><em>e attachment</em><em> </em><em>for</em><em> </em><em>proper </em><em>for</em><em>mat</em><em>)</em>
tuition = 10000
rate = 0.04
for i in range(1,15):
tuition = tuition + tuition * rate
if i <= 10:
print("Year "+str(i)+" tuition:",end=" ")
print(round(tuition,2))
if i == 14:
print("Tuition 4th year after:",end=" ")
print(round(tuition,2))
Explanation:
<em>The first 2 lines initializes tuition and rate to 10000 and 0.04 respectively</em>
tuition = 10000
rate = 0.04
<em>The next line iterates from year 1 to year 14</em>
for i in range(1,15):
<em>This line calculates the tuition for each year</em>
tuition = tuition + tuition * rate
<em>The next 3 lines prints the tuition for year 1 to year 10</em>
if i <= 10:
print("Year "+str(i)+" tuition:",end=" ")
print(round(tuition,2))
<em>The next 3 lines prints the tuition at the 4th year after year 10 (i.e. year 14)</em>
if i == 14:
print("Tuition 4th year after:",end=" ")
print(round(tuition,2))
Firstly we explain the variable and the declaration rule for the variable and further separating the valid and invalid variables.
- Whenever a user is given a question, variables are data values that can vary. for example age, CSL, etc.
- It may alter and during the execution of the program.
- It's a storage space for memories.
- It has a name that corresponds to the location.
- Data is stored in the memory location.
The rule for variable declaration:
- The names of your variables should be based on the phrases used in the subject area, and they should reflect the variable's function.
- By removing spaces between the words, you can make variable names. Each word in the name should be capitalized, including prepositions and pronouns that are one letter long.
- An underscore should never be used to start a variable name.
- Single-character variable names should be avoided. For loop counters, only short variable names are permitted.
- After the state that equals the "true" value, name variables that describe binary states ("true" or "false").
The valid variable is:
CSL, Age,CLS,SEE,Stop5for,Give, $shopping, and United.
The invalid variable is:
Mark-sheet, Tel $, Simple Interest, and 545Newton.
Learn more:
brainly.com/question/2684763
Answer:
c. just a few weeks to install.
Explanation:
ERP is known as Enterprise Resource Planning.ERP implementation involves software installation, transfer of the financial data to the new system, configuration of the users and processes and training the users on the software.
It also involves upgrades after installation,cross-functional teams, intensive training, high funding for both initial cost and maintenance. This whole process usually takes place between 6 months to 2 years. This makes option C which says it takes few weeks to install incorrect.
Answer:
1. B 2. D
Explanation:
If computers share processing power, it is just a larger computer.
Answer:
The correct answer to the following question will be "Adaptive Optics".
Explanation:
- AO (Adaptive Optics) is a technique used to enhance optical system performance by reducing the impact of incoming gravitational wave distortions by compressing a mirror to compensate for the distortion.
- It operates by calculating and compensating for defects in a wave-front with a system that corrects these errors as a deformable mirror or even a liquid crystal collection.
- It is a technique that can make it possible for a single ground-based telescope to get images as clear as that of the Hubble Space Telescope.
- Certain methods can achieve power resolution that exceeds the limit set by atmospheric distortion, for example, Aperture synthesis, Lucky imaging, and Speckle imaging.
Therefore, Adaptive Optics is the right answer.