The design of the software is covered by copy right unless it is open sourced or is a very common interface. They would need to come up with their own design and way of solving the problem to have a solution that was not copyrighted.
Answer:
create the integer variable and initialize it to one, with the do statement, increment the variable by one and print it, then the while statement checks if the variable is less than or equal to 10.
#include <iostream>
using namespace std;
int main(){
int i = 1;
do {
cout<< i << "\n";
i++;
}
while (i <= 10);
}
Explanation:
The C++ source code initializes the integer variable i to one and increments and print the value if the value is less than or equal to ten. The do-while statement executes a block of code before the condition is implemented.
WWW is used to browse for view the webpage basically content is normally displayed as HTML pages.
In any browser's webpage irrespective of language been used output content display as HTML pages only.
<u>Explanation:</u>
- In other methods is used XML format where it is opened and closed tag for every word editing XML file is very useful.
- XML tools are ready is available where end-user can edit or create by for example notepad++ extra
- It is a language designed to store the data in a specific format and easily process and used by a coding language or web pages.
Cmd.exe
------------------------------------------
A series of instructions written in a programming language for a computer to follow is referred to as a computer program.
<h3>
What is program?</h3>
Software, which also contains documentation and other intangible components, comprises computer programs as one of its components.
The source code of a computer program is the version that can be read by humans. Since computers can only run their native machine instructions, source code needs to be run by another software.
Using the language's compiler, source code may be converted to machine instructions. (An assembler is used to translate programs written in machine language.) An executable is the name of the generated file.
Therefore, A series of instructions written in a programming language for a computer to follow is referred to as a computer program.
To learn more about program, refer to the link:
brainly.com/question/11023419
#SPJ1