BIT2105  BBIT112 APPLICATION PROGRAMMING.

UNIVERSITY EXAMINATIONS: 2018/2019
EXAMINATION FOR THE DEGREE OF BACHELOR OF SCIENCE IN
INFORMATION TECHNOLOGY/BACHELOR OF BUSINESS INFORMATION
TECHNOLOGY
BIT2105 BBIT112 APPLICATION PROGRAMMING
FULL TIME/PART TIME/DISTANCE LEARNING
DATE: DECEMBER, 2018 TIME: 2 HOURS
INSTRUCTIONS: Answer Question One & ANY OTHER TWO questions.

QUESTION ONE
a) Describe the following components found in the Common Language Runtime (CLR) of a .(DOT) NET
Framework
i) Common Language Specification (CLS)
ii) Common Type System (CTS)
[4 Marks]
b) Explain the significance of the following windows in Visual Basic IDE:
i) Form Designer
ii) Solution Explorer Window
iii) ToolBox Window
[6 Marks]
c) What will be displayed when the following set of lines are executed. Each set of statements are
executed independent of one another
i)
Dim Boy as String = “Jack”
Dim Girl as String = “Jill”
NamesTextBox.Text = Boy & “ and “ & Girl & “ went up the hill”
ii)
Dim x As Double = 3, y as Double = 1
Dim z As Double
z = x + (y * x)
x = y
z = x + z
ValuesListBox.Items.Add(x + y + z)
[4 Marks]
d) Rewrite the following code segment using the With and End With statements
RegistrationTextBox.BackColor = Color.White
NamesTextBox.BackColor = Color.White
RegistrationTextBox.ForeColor = Color.Black
NamesTextBox. ForeColor = Color.Black
[2 Marks]
e) Convert the following mathematical notation into the equivalent Visual Basic expressions
i)
ii) 3(X + Y)
[2 Marks]
f) You are required to write a Visual Basic program that will enable user to calculate the sum, product,
division and difference of two numbers entered through textboxes after a click of the respective buttons.
The results should be displayed by use text box control. The program should enable the user to clear the
textboxes ready for the next input.
i) Sketch your graphical user interface assigning appropriate properties to your form and other
controls
[2 Marks]
ii) Write the code for your program and declare you variables appropriately
[10 Marks]
QUESTION TWO
a) Briefly explain the following categories of user interfaces
i) Command-line interfaces
ii) Form-based visual interfaces
[4 Marks]
b) Describe the following principles of control design
i) Function grouping
ii) Consistent sizing
[2 Marks]
c) Explain the significance of using the following controls in your Visual Basic applications
i) CheckBox controls
ii) MaskedTextBox Controls
[4 Marks]
d) Distinguish between a Do While…Loop and Do Until…Loop
[2 Marks]
e) Using nested loops, write a Visual Basic program to generate and display the following multiplication
table in an output window (debug window) after a click of a button control. Sketch your GUI
1 2 3 4 5 6 7
2 4 6 8 10 12 14
3 6 9 12 15 18 21
4 8 12 16 20 24 28
5 10 15 20 25 30 35
6 12 18 24 30 36 42
7 14 21 28 35 42 49
[8 Marks]
QUESTION THREE
a) Differentiate between a combo box and list box.
[2 Marks]
b) A GUI is required to allow the user calculate the area of a circle in Visual Basic. The user is to type
the value of the radius in a textbox. When the user clicks a command button, the volume is displayed
in a textbox control. Use the formula shown below for area calculation:
i) Sketch a suitable GUI for the above and write down the properties that you would set for all the
controls in the above GUI and their values.
[3 Marks]
ii) Write code in a button to calculate and display the area in any appropriate control
[9 Marks]
c) Explain briefly the following data types as used in visual basic
i) Date
ii) Short
iii) Decimal
[6 Marks]
QUESTION FOUR
a) Describe the following types of ComboBox controls
i) DropDown ComboBox
ii) Simple ComboBox
iii) DropDownList ComboBox
[6 Marks]
b) Using examples explain the following Array class members
i). GetLength
ii). Sort
iii). Average
[6 Marks]
c) Describe the following terms as used with VB.net
8 Marks
i) Object
ii) Class
iii) Methods
iv) Instance Variables
[8 Marks]
QUESTION FIVE
a) Describe the ActiveX Data Objects (ADO.NET)
[2 Marks]
b) Using a diagram, to illustrate describe how the database is connected to the web windows form.
[6 Marks]
c) Explain the following properties of the Connection object
i) Table adapter
ii) DataSource
iii) Provider
[6 Marks]
d) Write VB.net code that can be used to delete the current record from a table named tblEmployes.
[6 Marks]

(Visited 93 times, 1 visits today)
Share this:

Written by