Answer:
Following is the program in C++ Language
#include <iostream> // header file
using namespace std; // namespace std
int main() // main method
{
int n; // variable declaration
cout<<" Please enter the number :";
cin>>n; // Read the number
if(n>0) // check the condition when number is positive
{
cout<<n<<endl<<"The number is Positive"; // Display number
}
else if(n<0) // check the condition when number is Negative
{
cout<<n<<endl<<"The number is Negative";// Display number
}
else // check the condition when number is Zero
{
cout<<n<<endl<<"The number is Zero";// Display number
}
return 0;
}
Output:
Please enter the number:
64
The number is Positive
Explanation:
Following are the description of the program
- Declared a variable "n" of int type.
- Read the value of "n" by user.
- Check the condition of positive number by using if block statement .If n>0 it print the number is positive.
- Check the condition of negative number by using else if block statement If n<0 it print the number is negative.
- Finally if both the above condition is fail it print the message " The number is Zero"
Answer:
The disk is a removable disk.
1000 people died of an alcohol addiction
Answer:
•The user can edit the chart directly.
hoped i;m right
Explanation:
Answer:
Option(c) is the correct for the above question.
Explanation:
The full form of SDLC is System Development Life Cycle, Which tells the rules and processor which have to follow by any software developer. It gives the benefits to make the error-free software.
Another option is invalid because--
- Option a tells that the SDLC is a method but it is a formal processor.
- Option b tells that the SDLC is a framework but it is not any framework it is a guideline.
- Option d tells that the collection of theorems that are used to change in software projects but it is only the model, not any theorems.