Question 1
Question
Existe una solo versión de Visual Basic?
Question 2
Question
Este código sirve para el boton limpiar el programa
Answer
-
txtv1.text=[ ]
-
txtv1.text="limpiar
-
txtv1.text=""
Question 3
Question
Dim a, [blank_start]b[blank_end] As [blank_start]Integer[blank_end]
[blank_start]a[blank_end]=txtv1.text
b=[blank_start]txtv1[blank_end].text
Answer
-
b
-
c
-
u
-
Integer
-
Decimal
-
txtv1
-
txtv2
-
a
-
t
Question 4
Question
se puede utilizar la función IF?
Question 5
Question
herramienta que permite tener opciones sobre las que el usuario confirma o niega?
Answer
-
checbox
-
optionButon
-
combobox
Question 6
Question
Picture, sirve para añadir variables a nuestra pagina?
Question 7
Question
textbox sirve para poner mensajes en la pantalla, pero no son editables por el usuario?
Question 8
Question
las variables nos sirven para:
Answer
-
almacenar valores
-
no se utiliza en visual
-
guardar solo numeros
Question 9
Question
Imagen permite incluir una linea en el formulario
Question 10
Question
txtnum1.text=[blank_start]int[blank_end](txt[blank_start]v1[blank_end].[blank_start]text[blank_end]) + int(txtv2.[blank_start]text[blank_end])
Answer
-
int
-
As
-
ad
-
text
-
txt
-
text
-
texto
-
v1
-
v11
-
v3
Question 11
Question
[blank_start]dim[blank_end] a,b,c [blank_start]As[blank_end] integer
a=txtv1.text
b=txtv2.text
[blank_start]c[blank_end]=a+b
if rb1.checked=[blank_start]tue[blank_end] then
c=a+b
txtr.text=c
end if
[blank_start]if[blank_end] rb2.checked=[blank_start]tue[blank_end] then
c=a-b
txtr.text=c
end [blank_start]if[blank_end]
Answer
-
if
-
else
-
dim
-
As
-
true
-
dim
-
ad
-
As
-
tue
-
true
-
te
-
te
-
the end
-
true
-
f
-
c
-
d
-
a
-
h
-
if
-
else
-
sub
Question 12
Question
integer sirve para decir el tipo de nuestra ariable?
Question 13
Question
"Dim" sirve para declarar un vector?
Question 14
Question
commandbuton permite tener varias opciones de las cuales seleccionar una?
Question 15
Question
[blank_start]Dim[blank_end] [blank_start]x[blank_end],y,z [blank_start]As[blank_end] integer
x=txtv1.text
[blank_start]y[blank_end]=txt[blank_start]v1.[blank_end]text
z=txtv1.[blank_start]text[blank_end]
Question 16
Question
las cajas de herramientas solo existe en visual basic express 2010?
Question 17
Question
visual basic es un programa en donde puedes entrar para programar solo con imagenes y variables?
Question 18
Question
[blank_start]Dim[blank_end] B [blank_start]As[blank_end] [blank_start]Double[blank_end] = 4.0R
Answer
-
Double
-
INTEGER
-
carácter
-
Dim
-
AD
-
int
-
in
-
SA
-
As
-
el
Question 19
Question
Este codigo esta bien escrito?
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim a As Single
Dim b As Single
Dim c As Single
t = TextoBox1.Texto
b = TextoBox2.Texto
c = a + a
Label1.Texto = (a & " + " & b & " = " & c)
End Sub
Question 20
Question
Sirve para crear una caja de selección que el usuario puede seleccionar fácilmente para indicar si algo es verdadero o falso.