SlideShare a Scribd company logo
1 of 2
Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
“ help.mbaassignments@gmail.com ”
or
Call us at : 08263069601
(Prefer mailing. Call in emergency )
WINTER 2013, ASSIGNMENT
DRIVE WINTER 2014
PROGRAM BACHELOR OF COMPUTER APPLICATION
SUBJECT CODE & NAME BC0053 – VB.NET & XML
SEMESTER 5TH SEM
CREDITS 4
MAX. MARKS 60
BK ID B0975
Answer all questions
1.Describe Visual Studio .NET and the .NET Framework
Answer : Visual Studio .NET
Visual Studio .NET is a complete set of development tools for building ASP Web applications, XML
Web services, desktop applications, and mobile applications. Visual Basic .NET, Visual C++ .NET,
Visual C# .NET, and Visual J# .NET all use the same integrated development environment (IDE),
which allows them to share tools and facilitates in the creation of mixed-language solutions. In
addition, these languages leverage the functionality of the .NET Framework, which provides access
to key technologies that simplify the development of ASP Web applications and XML Web services.
2.List the various Arithmetic, Concatenation, Comparison, Logical and Bitwise Operators.
Answer : Arithmetic and Concatenation Operators
Exponentiation (^)
Unary negation (–)
Multiplication and division (*, /)
3.State important properties and methods of an Exception.
Answer : Exception Properties
The System.Exception base class is the class that is inherited by all exception classes in the .NET
Framework. Therefore, the properties of the Exception class is available to other exception classes.
The following table shows some notable properties of the System.Exception class which is shared by
all of the other exception classes.
4.List some of the applications of XML and related technologies.
Answer : XML Applications
The XML Document Used
In this application we will use the "cd_catalog.xml" file.
Display the First CD in an HTML div Element
5.Design a form to create basic calculator in VB.NET.
Answer : First we design an interface in VB.Net form as shown in the picture.
In the code window of the form write the code as under:
First create two variables f and res as shown under.
Public Class Form1
Dim f As Double
Dim res As Double
6.Write a XML with database with book details (BOOK ID, Title, Author, subject, published Year,
language, vendor, price)
Answer : The following XML file is used in various samples throughout the Microsoft XML Core
Services (MSXML) SDK.
XML
<?xml version="1.0"?>
<catalog>
Dear students get fully solved assignments
Send your semester & Specialization name to our mail id :
“ help.mbaassignments@gmail.com ”
or
Call us at : 08263069601
(Prefer mailing. Call in emergency )

More Related Content

Similar to Bc0053 – vb.net & xml

Bc0053 – vb.net & xml
Bc0053 – vb.net & xmlBc0053 – vb.net & xml
Bc0053 – vb.net & xml
smumbahelp
 
.Net framework
.Net framework.Net framework
.Net framework
Raghu nath
 
Dot Net Fundamentals
Dot Net FundamentalsDot Net Fundamentals
Dot Net Fundamentals
LiquidHub
 
Dot net interview_questions
Dot net interview_questionsDot net interview_questions
Dot net interview_questions
9292929292
 
Visual basic
Visual basicVisual basic
Visual basic
Dharmik
 

Similar to Bc0053 – vb.net & xml (20)

Bc0053 – vb.net & xml
Bc0053 – vb.net & xmlBc0053 – vb.net & xml
Bc0053 – vb.net & xml
 
Bt0082 visual basic
Bt0082 visual basicBt0082 visual basic
Bt0082 visual basic
 
.Net framework
.Net framework.Net framework
.Net framework
 
Unit -II Introduction to visual programming.pdf
Unit -II Introduction to visual programming.pdfUnit -II Introduction to visual programming.pdf
Unit -II Introduction to visual programming.pdf
 
Dot Net Fundamentals
Dot Net FundamentalsDot Net Fundamentals
Dot Net Fundamentals
 
dotNET frameworks
dotNET frameworksdotNET frameworks
dotNET frameworks
 
csharp.docx
csharp.docxcsharp.docx
csharp.docx
 
Visual studio.net
Visual studio.netVisual studio.net
Visual studio.net
 
Visual Studio.NET
Visual Studio.NETVisual Studio.NET
Visual Studio.NET
 
Dot net interview_questions
Dot net interview_questionsDot net interview_questions
Dot net interview_questions
 
Dotnet basics
Dotnet basicsDotnet basics
Dotnet basics
 
2310 b 03
2310 b 032310 b 03
2310 b 03
 
Visual studio.net
Visual studio.netVisual studio.net
Visual studio.net
 
Part i
Part iPart i
Part i
 
VB.Net Mod1.pptx
VB.Net Mod1.pptxVB.Net Mod1.pptx
VB.Net Mod1.pptx
 
Webhouse
WebhouseWebhouse
Webhouse
 
Unit I- Introduction to .NET Framework.pdf
Unit I- Introduction to .NET Framework.pdfUnit I- Introduction to .NET Framework.pdf
Unit I- Introduction to .NET Framework.pdf
 
Dot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part iDot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part i
 
Dot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part iDot net-interview-questions-and-answers part i
Dot net-interview-questions-and-answers part i
 
Visual basic
Visual basicVisual basic
Visual basic
 

Bc0053 – vb.net & xml

  • 1. Dear students get fully solved assignments Send your semester & Specialization name to our mail id : “ help.mbaassignments@gmail.com ” or Call us at : 08263069601 (Prefer mailing. Call in emergency ) WINTER 2013, ASSIGNMENT DRIVE WINTER 2014 PROGRAM BACHELOR OF COMPUTER APPLICATION SUBJECT CODE & NAME BC0053 – VB.NET & XML SEMESTER 5TH SEM CREDITS 4 MAX. MARKS 60 BK ID B0975 Answer all questions 1.Describe Visual Studio .NET and the .NET Framework Answer : Visual Studio .NET Visual Studio .NET is a complete set of development tools for building ASP Web applications, XML Web services, desktop applications, and mobile applications. Visual Basic .NET, Visual C++ .NET, Visual C# .NET, and Visual J# .NET all use the same integrated development environment (IDE), which allows them to share tools and facilitates in the creation of mixed-language solutions. In addition, these languages leverage the functionality of the .NET Framework, which provides access to key technologies that simplify the development of ASP Web applications and XML Web services. 2.List the various Arithmetic, Concatenation, Comparison, Logical and Bitwise Operators. Answer : Arithmetic and Concatenation Operators Exponentiation (^) Unary negation (–) Multiplication and division (*, /) 3.State important properties and methods of an Exception.
  • 2. Answer : Exception Properties The System.Exception base class is the class that is inherited by all exception classes in the .NET Framework. Therefore, the properties of the Exception class is available to other exception classes. The following table shows some notable properties of the System.Exception class which is shared by all of the other exception classes. 4.List some of the applications of XML and related technologies. Answer : XML Applications The XML Document Used In this application we will use the "cd_catalog.xml" file. Display the First CD in an HTML div Element 5.Design a form to create basic calculator in VB.NET. Answer : First we design an interface in VB.Net form as shown in the picture. In the code window of the form write the code as under: First create two variables f and res as shown under. Public Class Form1 Dim f As Double Dim res As Double 6.Write a XML with database with book details (BOOK ID, Title, Author, subject, published Year, language, vendor, price) Answer : The following XML file is used in various samples throughout the Microsoft XML Core Services (MSXML) SDK. XML <?xml version="1.0"?> <catalog> Dear students get fully solved assignments Send your semester & Specialization name to our mail id : “ help.mbaassignments@gmail.com ” or Call us at : 08263069601 (Prefer mailing. Call in emergency )