Purchase Solution

Visual Basic: Strings And Integers

Not what you're looking for?

Ask Custom Question

Hints:
1. How would you use Integers and Strings in an application?
Start off by defining integers and strings. Include examples.

2. Are Integers and Strings considered objects in VB? Elaborate.
Define an object. Include examples. Here's a resource that discusses VB.net's objects:
http://msdn2.microsoft.com/en-us/library/aa289512(vs.71).aspx

3. Why would you inherit from a string class?

Purchase this Solution

Solution Summary

322 words explains how to use integers and strings in an application and more.

Solution Preview

1. How would you use Integers and Strings in an application?
Start off by defining integers and strings. Include examples.

Solution:

The statement

Dim varName As Integer

declares a numeric variable that can only be assigned whole number values between about -2 billion and 2 billion.

Also multiple declarations are allowed such as

Dim varName1, varName2 as Integer
Or
Dim varName1 as Integer, varName2 as Integer

Strings can be declared as ...

Purchase this Solution


Free BrainMass Quizzes
Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

C# variables and classes

This quiz contains questions about C# classes and variables.

Javscript Basics

Quiz on basics of javascript programming language.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.