Answer:
The left(in actual) can be more or less than the budgeted for the remaining time. Suppose some resource fell ill or got damaged, you are going to invest in them, and get them back. However, for that, you need to spend money, and this reduces the actual left, as more of the budgeted is being spent. And this is the difference between the two, the actual left to spend from the budgeted for the remaining time of the project. However, the project managers keep an extra budget these days for such a situation, and hence this drawback in the project plan has already been removed, and the problem is solved.
Explanation:
Please check the answer.
The overexpense %
= (( Actual spent - Budgeted amount)/Budgeted amount) *100
Computer retail sales associate is my best guess. :)
Answer:
Given
The above lines of code
Required
Rearrange.
The code is re-arrange d as follows;.
#include<iostream>
int main()
{
int userNum;
scanf("%d", &userNum);
if (userNum > 0)
{
printf("Positive.\n");
}
else
{
printf("Non-positive, converting to 1.\n");
userNum = 1;
printf("Final: %d\n", userNum);
}
return 0;
}
When rearranging lines of codes. one has to be mindful of the programming language, the syntax of the language and control structures in the code;
One should take note of the variable declarations and usage
See attachment for .cpp file
Answer:
#include <stdio.h> // header file inclusion
int main() // main function declaration
{
int number,product=0; // variable declaration
while(product<100) // while loop
{
scanf("%d",&number); // input a number
product= number*10; // multiply the number by product
printf("%d\n",product); // print the value of product
}
return 0; // return statement
}
Output:
- If the user enter 10 then the loop terminates for the first time and the output is 100.
- If the user enter 5,10 then the loop executes in 2 times and the output is 50 and 100.
Explanation:
- Firstly there is an inclusion of header file which understands the meaning of printf() and scanf() function.
- Then there is the main() function definition
- Then we declare a two-variable (number and product) of integer type.
- Then we define a while loop and check the condition that product value is less than 100 or not.
- Then we take input and multiply by 10.
- Then we assign the value in the product and print the product value.
One advantage of using an electric car would be not having to pay for gas, one risk would be it malfunctioning.