Assignment

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

KATRINA MARIE VALENZUELA MADRID

BSIT- 1B

1) What is VB.Net Programming


● Visual Basic . NET (VB.NET) is a Microsoft object-oriented programming
(OOP) language. It evolved from Visual Basic 6 (VB6) to meet an
increasing need for easy web-services and web development. VB.Net was
designed to take advantage of the . NET framework-based classes and run-
time environment.
2) What is Integrated Development Environment
● An integrated development environment (IDE) is a software suite that
consolidates basic tools required to write and test software.
● Developers use numerous tools throughout software code creation, building
and testing. Development tools often include text editors, code libraries,
compilers and test platforms. Without an IDE, a developer must select,
deploy, integrate and manage all of these tools separately. An IDE brings
many of those development-related tools together as a single framework,
application or service. The integrated toolset is designed to simplify software
development and can identify and minimize coding mistakes and typos.
● Some IDEs are open source, while others are commercial offerings. An IDE
can be a standalone application or it can be part of a larger package.
3) Different Programming tools used in VB.Net
1. Microsoft Word Platform Installer
2. Web Essentials for Visual Studio
3. NuGet
4. Visual Studio Gallery
4) Various DotNet Framework controls of VB.Net
VB.Net is a programming language that is part of the .NET
Framework. The .NET Framework provides a variety of controls
that you can use in VB.Net applications to build user interfaces.
Some of the most common controls include:
1. Text Box 8. Picture Box
2. Radio Button 9. List View
3. Progress Bar 10. List Box
4. Label 11. Scroll Bar
5. Check Box 12. Combo Box
6. Tree View 13. Date Time Picker
7. Button

5) Give a simple Example of VB.Net program with source


codes and output screen.

 Create a new console application.

Code :
Imports System
Module I
Class Figure
Public length As Double
Public breadth As Double
End Class
Sub Main( )
Dim Rectangle As Figure New Figure( )
Dim area As Double 0 . 0
Rectangle . length 8 . 0
Rectangle . breadth 7.0
area Rectangle. length *
Rectangle . breadth
Console . Write Line( "Area Of Rectangle is area)
Console . ReadKey( )
End Sub
End Module

Output :

You might also like