Pls give the output of this pseudocode
Answer:
2
4
6
8
10
9
Explanation:
The loop runs from 1 to 10 in steps of 2, that is excluding the 10, so the values y gets are 1,3,5,7,9. The values that are printed are one higher, i.e., 2,4,6,8,10. Then finally the unchanged value of x is printed, which is 9.
QBasic implementation attached.
Answer:
2
4
6
8
10
9
Explanation:
can someone help me im using python IDLE and im getting this message in the output what does this mean "Error: unindent does not match any outer indentation level"
Answer:
Indent the first line
Explanation:
In many types of coding, the process does not work until you indent the first line. If it is a few rows in programs such as loops many more indentations maybe needed.
Answer:
Indent the first line
Explanation:
In many types of coding, the process does not work until you indent the first line. If it is a few rows in programs such as loops many more indentations maybe needed.
How do Java scripts work?!
I need the answer fast because My school homework is due tommorow!
Answer:
The way JavaScript works is interesting. Inside a normal Web page you place some JavaScript code (See How Web Pages Work for details on Web pages). When the browser loads the page, the browser has a built-in interpreter that reads the JavaScript code it finds in the page and runs it.
The gate that only takes one out is _____ gate
Answer:
Only one logic gate has one input terminal i.e. NOT gate.
so if i were to make a user fill in a story with HTML coding prompts (i need at least 4) can someone show me what i need to do i dont get it
Use: <input type="text">
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<body>
<h2><strong>Build Your Own Adventure</strong></h2>
<p>Once upon a time a <input type="text" class="check003" id="input001" size="15" /><text class="button002" id="check001"></text> named <input id="input002" size="15" /><text class="button002" id="check002"></text>made a wish for <input id="input003" size="15" /> <text class="button002" id="check003"></text>. When they woke up the next day they found <input id="input004" size="15" /><text class="button002" id="check004"></text> and three small<input id="input005" size="15" /><text class="button002" id="check005"></text> sitting out side their door.</p>
<div id="disappear001"><div id="center001"><button class="button001" onclick="submit001()">The End</button></div></div><br />
<div id="center001"><p id="message001"></p><p id="reload001"></p></div>
<br />
</body>
</html>