Question
: Write a single line of code that initializes a variable called W31 with the numbers 23, 24, 25, 26, 27 . Add a semi-colon
: Write a single line of code that initializes a variable called W31 with the numbers 23, 24, 25, 26, 27. Add a semi-colon so that you don't "parrot back" the values in W31.
REMEMBER when you write GOOD code, include spaces. For example, if you are setting a variable "A" with a value of 6 you would write the line of code as:
A = 6
Put the variable name starting with the first character, then put a space after the variable name before the = and a space after. Before you enter the value to place in variable "A", While the code:
A=6
will work just fine. Make it easy on yourself and put in the two spaces. And keep your Command window clean by adding the semi-colon at the end.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started