Answer:
Pulling related code together in objects is Arrays
Helps programmers when they revisit code or are new to code-- Documentation
Explanation:
This is all I know
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:
Shackle
Explanation:
A winch may be defined as a mechanical device which is used to pull in or let out the rope or cable maintaining its tension. It can also adjust the tension of the cable or the rope.
It is mainly used in tow trucks, elevators and steam shovels.
Shackle is one of the additional authorization list of a vehicle with a winch which can be used to replace the hook of the cable of the winch.
The best reason that the title of an article published on a website might not help to determine if the information is reliable is that titles attract readers; they do not guarantee accuracy
- The title of an article tells the reader what the work or article is all about. It summarizes the whole work into a single text. Website in bid to attract more people to their page most times uses attractive titles or commonly search words but this does not show that the work is accurate.
- People often make or select a title that grabs attention and one that makes people want to read further
Conclusively we can say that The title of an article published on website is meant to attract readers as they do not guarantee accuracy
Learn more from
brainly.com/question/11427677
Answer:
function timesTen (number):
return number * 10
n = int(input("Enter an integer: "))
print(str(n) +"x10 is equal to: " + str(timesTen(n)))
Explanation:
Pseudocode is the representation of an algorithm. It shows the steps of the algorithm combination of the English and programming language.
In the pseudocode, we said we will be defining a function called timesTen that takes one parameter and returns the value of its parameter multiplied times 10.
In the main, we asked the user to enter a number. Then, we called the function with that number, and print the result.