Answer:
do{
cout<<"Introduce number \n"; //print the message
cin>>num; //set the value of the number given
}while(num<1 || num>10); //repeat while the number is out of the range
cout<<"Number: "<<num; //print the number
Explanation:
The idea behind this code is to create a loop in which I can compare the number given (between 1 and 10) and then print the number or get back and ask the number again.
#include <iostream>
using namespace std;
int main()
{
int num; //create num variable
do
{
cout<<"Introduce number \n"; //print the message
cin>>num; //set the value of the number given
}while(num<1 || num>10); //repeat while the number is out of the range
cout<<"Number: "<<num; //print the number
}
Answer:
b) False
Explanation:
The Change Control Authority in software development is a committee consisting Subject Matter Experts(SME) and Technical Chiefs.This committee makes decision whether the changes proposed should be implemented in the software or not.So the correct answer to the question is False.They have the rights to permit changes in the software.
Answer:
3rd one I believe. Depends what your programming Its to print for Java. Such as system.out.println:(x);
Even numbers are numbers whigh are divisible by 2. Therefore, the first even number is 2. A pseudocode which adds the first 100 even numbers can be written thus :
counter = 0
sum = 0
interval = 2
while counter < 100 :
sum = sum + interval
interval += 2
counter +=1
print(sum)
- A counter takes count of the number of values summed
- Initializes a variable which holds the sum of even values
- Since even numbers are divisible by 2; every factor ; increase every added value by 2
- The program ends once counter is 100
Learn more : brainly.com/question/25327166
Answer:
Option C or 3
Explanation:
solar panels can only produce energy when the sun is shining because all of the energy it produces is stored in a battery which then you use during the dark hours of the day. You also need to maintain the cleanliness of the panels because if they get dusty they will not produce as much energy.