Dim x, y as integer.
What is x and y data type?
Answers were Sorted based on User's Feedback
Answer / nidhin
in vb 6 x as variant and y as integer
in vb.net both are integer
Is This Answer Correct ? | 6 Yes | 1 No |
Answer / chitra
Both x and Y are integers is a wrong answer.X as variant and
Y as Integer.
Is This Answer Correct ? | 8 Yes | 4 No |
Answer / deepakduvedi
x is variant datatype and y as integer datatype
Is This Answer Correct ? | 4 Yes | 4 No |
Answer / zaher al-balawi
in vb6 : x and y both are Special Variant that convert
numbers to intger
lock for this example
Dim lop1, lop2, lop3 As Integer
lop2 = "6.1"
lop1 = "4.5"
lop3 = "3.1"
Print lop1, lop2, lop3
Print lop2 + lop1
Print lop3 + lop2
Is This Answer Correct ? | 2 Yes | 2 No |
what is the difference between vb and vb.net
_____ collection in recordset used to assign a value from textbox to table columns without making abinding in datacontrol.
How would you convert a form into document?
which VB constant make the menu item in centre?
Which method is preferred to save data like database to the disk?
What is the use of ActiveX Documents?
How can you get selected file from file system Control?
Which controls can not be placed in MDI ?
How do I make a text box not beep but do something else when I hit the Enter key?
Which property of textbox cannot be changed at runtime ?
How can you Implement windows functionality in VB?
How would you view html code in Active Server Pages?