[go: up one dir, main page]

0% found this document useful (0 votes)
18 views3 pages

VISUAL BASIC - 2 Sets

The document outlines an examination for Class II B.Com CA A & B, consisting of multiple-choice questions, short answer questions, and detailed answer questions related to Visual Basic programming. It covers topics such as working with forms, controls, strings, and project management in Visual Basic. The exam is divided into three parts, with specific marks allocated for each section.

Uploaded by

todayepisode2020
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views3 pages

VISUAL BASIC - 2 Sets

The document outlines an examination for Class II B.Com CA A & B, consisting of multiple-choice questions, short answer questions, and detailed answer questions related to Visual Basic programming. It covers topics such as working with forms, controls, strings, and project management in Visual Basic. The exam is divided into three parts, with specific marks allocated for each section.

Uploaded by

todayepisode2020
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Date : 27/02/2024 Marks : 50

Class : II B.Com CA A & B Time : 2 hrs

PART-A

I. Choose the correct answer and write the full form of the following questions (5 x 1 = 5)

1. VB is a tool that allows you to develop a application in ___________

a) Real time b) Graphical user Interface c) Standard user interface d) None

2. IDE Stands For_____________________________

3. In VB , a variable name can not be more than_________Characters

a) 255 b) 500 c) 400 d) 300

4. GUI Stands for____________________________

5. Who Developed Visual basic?

a) Sybase b) Ashton-tate c) Microsoft d) Symantec

PART-B

II. Answer any five form the following questions (5 x 5 = 25)

6. Explain about Working with Forms?

7. What is Visual Basic? What are the Functions & Subroutines in VB?

8. Explain about Labels and Command Button Controls?

9. Explain about Naming Conventions?

10. What is Strings? Explain about Converting Strings

11. Explain about Formatting Controls?

12. How do you Compare and Manipulate the Strings?

PART-C

III. Answer any two form the following questions (2x10 = 20)

13. Explain in Brief about any 5 Visual Basic Controls?

14. Explain in Detail about Strings?

15. Explain about the Toolbox in VB and how do you work with your Projects?
Date : 27/02/2024 Marks : 50

Class : II B.Com CA A & B Time : 2 hrs

PART-A

I. Choose the correct answer and write the full form of the following questions (5 x 1 = 5)

1. What will be the output of the following Visual Basic code, If the intnumber variable is
110?

If intnumber<=100 Then
Intnumber=intnumber*2;
Else
Intnumber=intnumber*3;
EndIf

a) 110 b) 330 c)100 d)400

2. Which of the following is commonly used to perform an immediate action when clicked in
Visual Studio?
a) Button control b) Close c) End d) Exit

3 Which of the following method is used to sort an array in visual basic?


a) Array.Sort() b) Array.sortAscending() c) Array.arrayArrange() d) Array.arrange()

4. What will be the output of the following Visual Basic code?

Dim intScores As Integer = {78, 83, 75, 90}


Array.Reverse(intScores)

a) 78,75,83,90 b) 90,75,83,78 c) 78, 83, 75,90 d) 75,78, 83,90

5. Which of the following is the default name assigned to the label control in Visual Basic?
a) Label1 b) DefaultLabel c) Label0 d) NewLabel

PART-B

II. Answer any five form the following questions (5 x 5 = 25)

6. Explain about Text box Controls and Option button control?

7. Write a Short note on Project Explorer and Printing Projects?


8. What is Variable and how do you use Variable?

9. How do you Concatenate the string and Manipulate the String?

10. How do you use Frame & Checkbox Control?

11. What is Fibonacci Series and Explain with Code?

12. Write a short note on Using Control arrays?

PART-C

III. Answer any two form the following questions (2x10 = 20)

13. a) Write a VB Program to Calculate SI and CI values

b) Write a VB Program to perform number checking

14. Explain in Brief about Adding code and Using events?

15. Explain about Strings?

* Concatenating Strings

* Formatting Strings

* Manipulating Strings

* Comparing Strings

You might also like