Answer:
create the integer variable and initialize it to one, with the do statement, increment the variable by one and print it, then the while statement checks if the variable is less than or equal to 10.
#include <iostream>
using namespace std;
int main(){
    int i = 1;
    do {
        cout<< i << "\n";
        i++;
    }
    while (i <= 10);
}
Explanation:
The C++ source code initializes the integer variable i to one and increments and print the value if the value is less than or equal to ten. The do-while statement executes a block of code before the condition is implemented.
 
        
             
        
        
        
Answer:
4
Explanation:
Relative Biological Effectiveness (RBE) =
Standard Radiation dose / Test Radiation dose 
for achieving the same biological effect.
The absorbed radiation dose is measured in units of Gyt(Gray in tissue).
In the given scenario, Standard radiation dose of 250 KVp X-rays = 16 Gyt
Corresponding Test Radiation dose = 4 Gyt
Therefore, Relative Biological Effectiveness = 16/4 = 4
 
        
             
        
        
        
D scanner She can scan the files and email a digital copy.
        
                    
             
        
        
        
Answer:
<html>
<body>
<p style="text-align:center;color:red;">This is a paragraph.</p>
<p><i> "This text is italic</i></p>
</body>
</html>
Explanation:
I got a 75%. Hope this helps.°ω°
 
        
                    
             
        
        
        
If you are just starting go on khan academy and go to the computing section and they will start you out on the basics on code devoloping.