Answer:
There are a lot to learn, especially the basics. I'd suggest using SolorLearn for this.
Answer:
float number=-1;
float count=0;
float sum=0;
while(cin.eof()==false){
cin >> number;
sum += number;
count++;
}
if(number==-1){
cout << "no values to average";
}
else{
if (count>0)
cout << sum/count;
}
Answer:
private cloud
Explanation:
Based on the scenario being described it can be said that the best method to meet the banks needs would be implementing a private cloud. This is an pool of shared computing resources in a public cloud, but one which is completely isolated from other organizations using the same provider or cloud resources. Which is exactly what the small bank needs in this situation.
Answer:
(202)₁₀ = 202
(11010001)₂ = 209
(F1)₁₆ = 241
(256)₁₀ = doesn't fit in one byte
Explanation:
You can enter these numbers in windows calculator in programmer mode.
Answer:
C) Project and Form
Explanation:
In saving a Visual Basic project properly, the following: two components part that is involved are:
1. Project - this is the project file that will be saved in the computer's memory. On the toolbar of a Visual Basic Editor, there is a "Save Project File" icon, which will be clicked to save a Project file.
2. File - the is the Visual Basic Editor's user interface. Just like "window" in Microsoft Office, it is the space used in writing or building the project file.