Solved tasks for Visual Basic .NET lessons 1-3
The following exercises will help you put your knowledge of Visual Basic .NET to the test. Based off of what you've learned from previous lessons. Try to solve them on your own, but know that you could always download the working solutions under the article. Nonetheless, beware that when you view the solution without solving the exercise, you won't learn anything
If you find yourself stuck at some point, you should always try going back to check previous tutorials first and figure the problem out by yourself.
Easy exercise
Create an application which will ask for a username and then for his/her ability. Then the program will print "name is ability", see image below.
The application screen sample:
Console application
Hi, what is your name?
Bill Gates
What are you like?
ultraepic rich
Bill Gates is ultraepic rich
Intermediate exercise
Create an application which will ask for an integer and prints its second power (x squared).
The application screen sample:
Console application
Enter a number, and I'll square it:
64
Result: 4096
Advanced exercise
Create an application that will ask for a circle's radius. Then print its circumference and its area.
The application screen sample:
Console application
Enter the circle's radius (cm):
12.1
The circle's circumference based on the given radius is: 75.98801 cm
Area of the circle is: 459.7274 cm^2
Did you have a problem with anything? Download the sample application below and compare it with your project, you will find the error easily.
Download
By downloading the following file, you agree to the license terms
Downloaded 112x (109.97 kB)
Application includes source codes in language VB.NET
In order to absolve this article, please pass all exercises above by submitting them.