HelloWorld
i=0;
a = 1;
b = 4;
swap(int a, int b)
{
int temp;
temp = a;
a = b;
b = a;
i = 1;
}
What is the output?
A. 4 0 0
B. 0 4 1
C. 1 4 1
D. Error
constructor cannot return value
Latest Answer: Function is a block of code, it can return a value.Constructor can't return a value. ...
Using Redim Preserve
for i = 0 to 5
a[i] = i
print a[i]
next i
How would it get printed in the form?
A 012345
B. 0
1
2
3
4
5
C. 12345
D. 1
2
3
4
5
B
A
Creating a new object using
A. New
B. New, Create Object
C. New, Create Object, Set
D. New, Create Object, Set Get Object
A
X, Y variants, Z - Integer
Dim Counter;
For Counter = True to False
Print Counter
Next
What is the output
A. Error message
B. True False
C. -1 0
D. True
-1 0
Form load
textbox.text = "Hello"
on form load what all events will take place
A. Initialize
B. Initialize, load
C. Initialise, load, activate
D. Initialise, load, activate, validate
C
View page << Previous 1 [2] 3 4 5 Next >>

Go Top