Вы находитесь на странице: 1из 12

University: AMITY-1333

PreviousNext

Course: B.Sc-(IT)

Semester: Semester-II

Subject: Visual Basic

Date: 28-Jun, 2017 02:51 AM

Blog Titlle: Amity Solved Assignment BSC IT 2nd Sem for Visual Basic

Question:
Basic
Assignment A
1 What do you understand by event driven programming? List and explain a
. supported by Visual Basic Objects.
2 What are the different data types supported by Visual Basic ? How they ca
. their uses.
3 Give examples of passing arguments by value and passing arguments by re
. procedures.
4 Give difference between arrays and dynamic arrays. How they can be creat
. Syntax.
5 .What are the advantage of ADO Data Control ? Explain about different ob
6 Write a small hand calculator. Use command buttons for the number keys,
. etc. Use a label to display the results.

Assignment B
CASE STUDY
Write a program using dynamic arrays to record the high temperatures of l
all of them with the average of high temperatures. Use
1.
three buttons on the screen, one to enter the temperature, second to display
from program.
2.Develop a WordPad application using MDI forms, having basic features of
Write an event procedure to automate the billing system of a supermarket.
3.tables, forms, controls and menu design (if any). Make
assumptions, wherever necessary.
Assignment C
1. VB is considered to be a
(A) First-generation language.
(B) Package.
(C) Higher-level language.
(D) Machine language

2. The person who actually runs a computer program is called a


(A) user.
(B) Customer.
(C) Client.
(D) Tester.
(E) Runner.

3. Programming in VB is different from most other programming envi


should
(A) Write the code.
(B) Input the data.
(C) Name the buttons.
(D) Draw the user interface.

4. GUI stands for


(A) Graphical user interface.
(B) Graphing user introduction.
(C) Graphical unit interface.
(D) Graphical user input.

5. Press F4 to
(A) Run a program.
(B) Display the Properties window.
(C) Display the Solution Explorer window.
(D) Terminate a program.

6. Which of the properties in a control´s list of properties is used to g


name?
(A) Text
(B) ContextMenu
(C) ControlName
(D) Name

7. When a VB program is running, the user can move from one control to
by pressing the
(A) Tab key.
(B) Space bar.
(C) Enter key.
(D) Backspace key.

8. Which of the following properties determines the words appearing in a


(A) Text
(B) Caption
(C) Name
(D) Title
9. What effect will the following statement have? Label1.Visible = False
(A) Enable Label1
(B) Delete Label1
(C) Make Label1 invisible
(D) It is not a valid VB statement.

10. The Font dialog box allows you to select different Fonts, their style
special effects. How do you bring up this Font dialog box?
(A) In the Properties window, click the ellipsis (…) on the right side of the setti
(B) Double-click the textbox, and select Font Property.
(C) Right-click the textbox, and select Font Property.
(D) None of the above.

11. What keyboard shortcut allows you to run the current program?
(A) F4
(B) F5
(C) F6
(D) F7

12. Which property is available for most controls that allows you to hide/
by setting the property or by setting it during runtime via code?
(A) Clear
(B) Refresh
(C) Visible
(D) View-Control
13. When the user clicks a button, _________ is triggered.
(A) An event
(B) A method
(C) A setting
(D) A property

14. Select the code statement that will set the current text color to Red.
(A) txtBox.ForeColor = "Red"
(B) txtBox.ForeColor = Red
(C) txtBox.ForeColor = Color.Red
(D) txtBox.ForeColor = "Color.Red"

15. The statement btnButton.Focus()


(A) Has no effect.
(B) Moves the focus to the button btnButton.
(C) Has the same effect as clicking on the button btnButton.
(D) is invalid in VB.

16. Which of the following statements sets the words on a button to "Sub
(A) btnButton.Name = "Submit Button"
(B) btnButton.Text = Submit Button
(C) btnButton.Text = " Submit Button"
(D) btnButton = " Submit Button "

17. A user action such as clicking a button is called:


(A) An accident
(B) an event
(C) A procedure
(D) A property

18. What is the correct statement when declaring and assigning the value
called commission?
(A) Dim commission = 100
(B) Dim commission = Int(100)
(C) Commission = 100
(D) Dim commission As Integer = 100

19. Which of the following statements removes all text from lstBox?
(A) lstBox.Clear()
(B) lstBox.Items.Clear()
(C) lstBox.Text.Clear()
(D) lstBox.Items.Add("")

20. Which statement will assign the words •gHello World•h to a text bo
(A) txtBox.Text = Hello & World
(B) txtBox.Text = "Hello " & World
(C) txtBox.Text = Hello & " World"
(D) txtBox.Text = "Hello" & " World"

21. What character is used to signify the beginning of a comment statem


(A) Asterisk
(B) Exclamation mark
(C) Apostrophe
(D) Backslash

22. What will be displayed when the following lines are executed?
Dim x As Double = 2
´x = 3
txtBox.Text = CStr(x)
(A) 3
(B) 0
(C) 2
(D) None of the above

23. When an End Sub statement is reached in a Sub procedure, executio


(A) The statement before the call statement which invoked the Sub procedure
(B) The statement after the call statement which invoked the Sub procedure.
(C) The beginning of the event procedure containing the call statement.
(D) The end of the event procedure containing the call statement.

24. Which one of the following is true about arguments and parameters?
(A) Arguments appear in call statements; parameters appear in Sub statemen
(B) Parameters appear in call statements; arguments appear in Sub statemen
(C) They are synonymous terms.
(D) They are completely unrelated in a program.

25. Items appearing in the parentheses of a call statement are known as_
(A) Call variables
(B) Call strings
(C) Parameters
(D) Arguments

26. Variables declared inside a procedure are said to have ____________


(A) Local scope
(B) procedure-level scope
(C) class-level scope
(D) None of the above

27. Assume that A, B, and C are conditions, with A being true, B being
the truth value of each of the following conditions.
(a) A And (Not B) = False
(b) A And Not (B Or C) = False
(c) Not (A And B) = False

28. Consider the following two sets of code.


(a) If (a = 1) And (b = 1) Then (b) If a = 1 Then
txtBox.Text = "Hi" If b = 1 Then
End If txtBox.Text = "Hi"
End If
End If
Which one of the following statements is true?
(A) (a) and (b) will produce different outputs.
(B) (b) is not a valid set of VB instructions.
(C) The two sets of code are equivalent, but (a) is preferred to (b) because (a)
(D) The condition statement in (a) is not valid.
29. What will be displayed by the following program when the button is c
Private Sub btnDisplay_Click(...) Handles btnDisplay.Click
Dim a, b, c, x As Double
a=5
b=3
c=6
If a > c Then
x=1
Else
If b > c Then
11
x=2
Else
x=3
txtBox.Text = CStr(x)
End If
End If
End Sub
(A) 1
(B) 2
(C) 3
(D) None of the above.

30. If the loop is to be executed at least once, the condition should be ch


(A) Top of the loop
(B) Middle of the loop
(C) Bottom of the loop
(D) Nothing should be checked

31. Suppose a variable is to tell whether or not the user wants further in
for such a variable is
(A) Boolean
(B) Integer
(C) Double
(D) String

32. VB uses an object called ____________ to hold a table.


(A) Record
(B) Recordset
(C) File
(D) Table

33. Which of these is not an collection of the VB project?


(A) The Global Module
(B) The form Module
(C) The object Module
(D) The class Module

34. Which of these is used to open an database?


(A) Set dbMyDB = OpenDatabase("MyDatabase.mdb•h)
(B) dbMyDB = OpenDatabase("MyDatabase.mdb")
(C) Set dbMyDB = OpenDatabase None of these
(D) None of these
35. MDI stands for
(A) Multiple Document Interface
(B) Modular Document Interface
(C) Management Document Interface
(D) Multilingual Document Interface

36. Microsoft Notepad is __________ based application.


(A) SDI
(B) MDI
(C) Both
(D) None

37. The ________ Forms are forms from where user can switch to any ot
without closing it.
a. Modeless
b. Modal
c. Unique
d. None of the above

38. ODBC stands for


A. Open database connectivity
B. Other database connectivity
C. Optimistic database connectivity
D. Old database connectivity
39. Visual Basic uses the ______property to determine the control that w
when a tab key is pressed.
a. TabIndex
b. TabFocus
c. Focus
d. IndexFocus

40. ______________ makes the compulsory declaration of all the variable


a. Dim
b. Default
c. Option Explicit
d. None of the above

Вам также может понравиться