Answer:
Press Windows + R and then iexpress.exe.
Create a new Self Extracting Directive and select "Extract files and run an installation command."
Follow the instructions
Add the script you want, and make sure that on the next screen, you set the install program to cmd /c [your_script_name.bat]
Select preferences (you might need to select "Store files using Long File Name inside Package), set the output path to the .exe file you want to create, and select "No restart".
Click next and you should have your .exe!
Answer:
binary
Explanation:
a computer speak because of how they are built
Answer:
1. Which of the following are advantages of a <u>wide area network</u>, as opposed to a local area network? Select 2 options.
- provides access to other networks
1. Which of the following are advantages of a <u>local area network</u>, as opposed to a wide area network? Select 3 options.
2. Which of the following are advantages of a <u>wide area network</u>, as opposed to a local area network? Select 2 options.
- provides access to other networks
Explanation:
Answer:
If you put 10 itll put 5 if you put 20 itll put 10 hope i helped love yall
Explanation:
Answer:
one
Explanation:
The loop is used to execute the part of code or statement again and again until the condition is not FALSE.
There are three types of loop in programming.
1. for loop
2.while loop
3. do-while loop
Do-while has one special property which makes it different from other loops.
The loop statement executes once if the condition of the loop is failed in the starting.
In do-while, the statement executes first and then while checking the condition.
let discuss the code:
initially, laps=50, myNum=1
then, the program executes the statement in the loop.
so, myNum = 1 + 2=3.
A value 3 is assign to the variable myNum.
laps = 50 + 1=51.
A value 3 is assigned to the laps variable.
then while checking the condition (51 <= 1) which is FALSE.
The program terminates the loop.
Therefore, the answer is one.