Answer:
In Python
for i in range(-13,0,6):
print(i)
Explanation:
Required: A program to display the given output
From the program, we observe the following:
The output begins at 13 i.e begin = 13
The output ends at -1 i.e end = 1
And the difference between each output is 6.
i.e. 
So, the syntax of the for loop is: (begin, end + 1, difference)
The program explanation goes thus:
<em>This iterates through the -13 to 1 with a difference of 6</em>
for i in range(-13,0,6):
<em>This prints the required output</em>
print(i)
Answer:
archetecture firm
Explanation:
government dont do that,
energy company arent engineers, and manufactures dont do specifically mapping techichian work
Answer:
the statement which assigns value to variable is called <u>Assignment </u>statement in c++
Explanation:
Assignment Statement is the statement in C++ programming that is used to assign a constant value or some expression to the variable. Assignment operator is used to assign the value or expression to the variable.
Single equal (=) symbol is use as assignment operator in C++.
For Example
If we want to assign some value or expression in C++, it will be written as:
Variable = Value;
or
Variable = Expression;
Both of the above mentioned examples shows the Assignment Statements.