Question: for Assembly language 1. How many values can we store in this array: Dim abc(35) As Integer 2. Given the following code: For i As

for Assembly language
1. How many values can we store in this array:
Dim abc(35) As Integer
2. Given the following code:
For i As Integer = 1 to 76
Print( RandomInt(12, 54) )
Next
a. How many numbers will print:
b. What is the largest possible number that will print
3. You have an array - nn - which is declared as follows:
Var nn() As Integer = Array( 3, 5, 65, 19, 39 )
a. What command would print the number of integers in nn?
Print( ________________________________________ )
b. What expression represents the 19 ? (use nn and an index)
4. Expression as a decimal value the binary value 10110000
5. Expression as a binary number - the decimal value 282
6. What would print:
Var aNum As Integer = 32.76
Print( Str( aNum ) )
7. What would print if
Var aNum As Double = 34.5678749
Print( Format( aNum, "###.####" ) )
8. Var aMsg As String
aMsg = "the bumble bee is eating a bagel in boston"
using aMsg - and String methods, write an expression that
would return
a. bumble bee
b. bagel
1
c. would return the index for "boston"
d. eating a bagel
e. bee in boston (it is ok to concatenate different
Strings)
f. the bumble bee
g. boston
h. the bumble bee is eating a bologna sandwich in boston

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!