Dim x, y as integer.

What is x and y data type?

Answers were Sorted based on User's Feedback



Dim x, y as integer. What is x and y data type?..

Answer / guest

X as variant and y is integer.

Is This Answer Correct ?    15 Yes 6 No

Dim x, y as integer. What is x and y data type?..

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

Dim x, y as integer. What is x and y data type?..

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

Dim x, y as integer. What is x and y data type?..

Answer / chetan

X as variant and y is integer.

Is This Answer Correct ?    7 Yes 4 No

Dim x, y as integer. What is x and y data type?..

Answer / avinash.alladi

x and y both are integers

Is This Answer Correct ?    9 Yes 7 No

Dim x, y as integer. What is x and y data type?..

Answer / deepakduvedi

x is variant datatype and y as integer datatype

Is This Answer Correct ?    4 Yes 4 No

Dim x, y as integer. What is x and y data type?..

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

Dim x, y as integer. What is x and y data type?..

Answer / amit agrawal

x is variant and y is integer

Is This Answer Correct ?    3 Yes 4 No

Post New Answer

More Visual Basic Interview Questions

How to check the condition in Msgbox?

3 Answers  


Write the correct order of execution of following form?s events: initialization, Load, Activate, Refresh , Paint

3 Answers  


Explain about ADO control?

0 Answers  


which collection in recordset used to assign a value from textbox to table columns without making abinding in datacontrol?

1 Answers  


How do you zoom in visual basic?

0 Answers  






What is DBSqlPassThrough?

0 Answers  


what are Collections?

1 Answers  


What is OLE and DDE? Explain?

1 Answers  


What is DDE?

0 Answers  


Which property of textbox cannot be changed at runtime ?

3 Answers   JPMorgan Chase,


Is it possible to Manipulate data through flexgrid? Explain.

0 Answers  


what are the Types of Modal windows in VB?

1 Answers  


Categories