“Como hacer una página web” means
How to make a web page
Answer:
in our life or in mine live but not all
I’d say false mainly because of the last part which is technology issues. I believe more than just a technical manager should be aware about the technology they are using
Complete Question:
Which statement is true? Group of answer choices
A. Variables cannot be assigned and declared in the same statement
B. Variable names must contain at least one dollar sign
C. Variable names can be no more than 8 characters long
D. It is incorrect to initialize a string variable with a number
Answer:
D. It is incorrect to initialize a string variable with a number
Explanation:
- Options A-C are not correct
- Variables can be declared and assigned values on same statement like this int a =5;
- Variable names must not contain the dollar sign as this declaration int num =0; is legal without a dollar sign
- Variable names are not restricted to 8 characters long they can be longer
- In option D if you declare a variable of a particular type, you must assign a value of that type for example int s ="John" is wrong
Answer:
program by LET statement
Explanation:
CLS
REM to find the area of circle
LET r=10
LET a=22/7*2*r^2
PRINT "area=;"a
END
press f5
output:
a=628.57