<u>Answer:</u>
I am writing <em>partial code in</em> <em>c++ to calculate weighted average</em>. The weighted average should be calculated based on multiplying the test score and its <em>respective weight and finally add all the test score.</em>
<u>Explanation:</u>
<em>int arrtestscore[100];</em>
<em>int arrweight[100];</em>
<em>int n;</em>
<em>double weightedavg;</em>
<em>cout<<”Enter the number of test score for which weighted average needs to be calculated”;</em>
<em>cin>>n;</em>
<em>for(int x = 0; x <n;x++)</em>
<em>{</em>
<em> cout<<”Enter test score :” + (x+1) ;</em>
<em> cin>>arrtestscore[x];</em>
<em> count<<”Enter the respective weight:”;</em>
<em> cin>>arrweight[x];</em>
<em>}</em>
<em>for (int i=0; i<n;i++)</em>
<em>{</em>
<em> weightedavg = weightedavg + (arrtestscore[i] * arrweight[i])</em>
<em>}</em>
<em>cout<<”weighted average = “ <<weightedavg; </em>
<span>Answer - Hotspots</span>
<span>
</span>
<span>Public places where you can wirelessly
connect to the internet are known as Wi-Fi hotspots. Common Wi-Fi hotspot locations
(where wireless internet connection is offered) include such places as cafes,
hotels, airports, and libraries. These businesses usually create hotspots for
the use of their customers.</span>
Answer:
c to help build the internets infrastrucuter
Explanation:
Answer: See explanation
Explanation:
Custom written software refers to the software that's developed for some particular organization or users. It's crates in order to meet the unique requirements of a business.
Since Henry is thinking of using custom written, open source software, then a custom written software will be used. Examples of custom written software will be automated invoicing, bug tracking software, E-commerce software solutions etc.
The thing that happens if you type a number instead of a word in the given code is: The number is printed
This is because the code already assigned a variable to the input and it accepts both numbers and alphanumeric keys because it is an integer command.
<h3>What is Coding?</h3>
This refers to the use of programming that is used to give instructions to a computer system
Hence, we can see that The thing that happens if you type a number instead of a word in the given code is: The number is printed
This is because the code already assigned a variable to the input and it accepts both numbers and alphanumeric keys because it is an integer command.
Read more about coding here:
brainly.com/question/16397886
#SPJ1