Question:
Where can I find beginners exercises for Visual Basic?
Wandi Bandi
2010-07-22 07:09:16 UTC
I have started learning Visual Basic with the new Visual Basic 2010 Express Edition.
I have already learnt a little bit of C++ earlier, with the help of a book. There used to be some exercises after every chapter in that book.

Example: Write a program, that calculates the area of a circle, by taking the radius.

As I have just started learning VB, I need some beginner exercises to practice a little bit and see if I really got it.

It would be nice if you could tell me a good site

Thanks.
Four answers:
jwong71091
2010-07-23 03:19:35 UTC
If you like to learn Visual Basic programming then here are some resources that you can try out





You can use a search engine like Google.com to find a whole bunch of tutorials for Visual Basic:



Visual Basic Express tutorial

http://www.google.com/search?hl=en&q=Visual+Basic+Express+tutorial&aq=f&oq=&aqi=





There are many forums for Visual Basic and etc.…you can ask them for any advice and information



Visual Basic forum

http://www.google.com/search?hl=en&source=hp&q=Visual+Basic+forum&btnG=Google+Search&aq=f&aqi=&aql=&oq=&gs_rfai=







HomeandLearn has many good tutorials for using Visual Basic Express, Java, Web Design and etc.



They also show you how to get free software for creating these programs



http://www.homeandlearn.co.uk/NET/vbNET.html







I have found FunctionX to be very useful for learning Visual Basic, C++, etc.



www.functionx.com/





Here are some of their tutorials for Visual Basic and there are many examples of Visual Basic programs



http://www.functionx.com/visualbasic/index.htm







Programmingtutorials.com has a whole bunch of tutorials for Visual Basic and other programming languages:



http://www.programmingtutorials.com/vbnet.aspx





Also YouTube has many tutorials for Visual Basic also:



http://www.youtube.com/results?search_query=Visual+Basic+Express&search_type=&aq=f



I hope this helps!
?
2016-10-18 05:48:04 UTC
Visual Basic Exercises
Sickness22
2010-07-22 07:20:06 UTC
You can think up your own then just verify the results that you already know. Like create a table with a list of names, and write a program to display them in order by last name. You know what the answer should be so you can verify the results.
?
2016-10-17 12:50:29 UTC
this could be a console application. I used seen difficulty-unfastened 2010 exhibit. careful to no longer get caught via your professor =P Module Module1 Sub significant() Dim employee1 As New worker("Bob", "Smith", one hundred) Dim employee2 As New worker("bill", "Gates", 500) Console.WriteLine("previously 10% develop") Console.WriteLine( employee1.EmployeeFirstName) Console.WriteLine( employee1.EmployeeLastName) Console.WriteLine( "$" & employee1.EmployeeSalary) Console.WriteLine() Console.WriteLine( employee2.EmployeeFirstName) Console.WriteLine( employee2.EmployeeLastName) Console.WriteLine("$" & employee2.EmployeeSalary) Console.WriteLine("---------------") Console.WriteLine("After 10% develop") employee1.EmployeeSalary *= a million.a million employee2.EmployeeSalary *= a million.a million Console.WriteLine( employee1.EmployeeFirstName) Console.WriteLine( employee1.EmployeeLastName) Console.WriteLine("$" & employee1.EmployeeSalary) Console.WriteLine() Console.WriteLine( employee2.EmployeeFirstName) Console.WriteLine( employee2.EmployeeLastName) Console.WriteLine("$" & employee2.EmployeeSalary) Console.study() end Sub end Module Public type worker inner maximum FirstName As String inner maximum LastName As String inner maximum earnings As UInteger Public Sub New(ByVal First As String, ByVal final As String, ByVal Sal As Integer) FirstName = First LastName = final earnings = Sal end Sub Public sources EmployeeFirstName() As String Get return FirstName end Get Set(ByVal fee As String) FirstName = fee end Set end sources Public sources EmployeeLastName() As String Get return LastName end Get Set(ByVal fee As String) LastName = fee end Set end sources Public sources EmployeeSalary() As Integer Get return earnings end Get Set(ByVal fee As Integer) attempt earnings = fee capture x As OverflowException MsgBox("earnings can't be damaging!") end attempt end Set end sources end type


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...