{"id":9986,"date":"2017-04-04T07:53:09","date_gmt":"2017-04-03T23:53:09","guid":{"rendered":"http:\/\/www.vbtutor.net\/?page_id=9986"},"modified":"2018-06-22T13:39:26","modified_gmt":"2018-06-22T05:39:26","slug":"visual-basic-2017-lesson-11-performing-arithmetic-operations","status":"publish","type":"page","link":"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-lesson-11-performing-arithmetic-operations\/","title":{"rendered":"Visual Basic 2017 Lesson 11: Arithmetic Operations"},"content":{"rendered":"<h4 style=\"text-align: center;\"><a title=\"visual basic 2015 tutorial lesson 10\" href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-lesson-10-working-arrays\/\">[Lesson 10] <\/a>&lt;&lt; <a title=\"visual basic 2017 tutorial\" href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-tutorial\/\">[Contents]<\/a> &gt;&gt; <a title=\"visual basic 2015 tutorial lesson 12\" href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-lesson-12-working-strings\/\">[Lesson 12]<\/a><\/h4>\n<p>In Visual Basic 2017, we can write code to instruct the computer to perform mathematical calculations that involve the use of various arithmetic\u00a0operators. For example, you can write programs to calculate the area of a triangle, solve <a href=\"https:\/\/www.vbtutor.net\/VB_Sample\/simuleq.htm\">simultaneous equations<\/a>, plot <a href=\"https:\/\/www.vbtutor.net\/VB_Sample\/QGraphplotter.htm\">quadratic function graph<\/a>, simulate <a href=\"https:\/\/www.vbtutor.net\/VB_Sample\/shm.htm\">simple harmonic motion<\/a> and more. Visual Basic 2017 arithmetic\u00a0operators are very similar to the normal arithmetic operators, albeit some little variations. The plus and minus operators are the same while the multiplication operator uses the * symbol and the division operator use the \/ symbol.<\/p>\n<div><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"2197805353\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/div>\n<h4>Example 9.2<\/h4>\n<p>The list of Visual Basic 2017 arithmetic\u00a0l\u00a0operators are shown in Table 11.1 below:<\/p>\n<h4 align=\"center\">Table 11.1 Arithmetic\u00a0Operators<\/h4>\n<div style=\"overflow-x: auto;\">\n<table>\n<tbody>\n<tr>\n<th style=\"text-align: center; width: 20%;\">Operator<\/th>\n<th>Mathematical Function<\/th>\n<th>Example<\/th>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">+<\/td>\n<td>Addition<\/td>\n<td>\u00a01+2=3<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">&#8211;<\/td>\n<td>\u00a0Subtraction<\/td>\n<td>\u00a010-4=6<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">^<\/td>\n<td>\u00a0Exponential<\/td>\n<td>\u00a03^2=9<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">*<\/td>\n<td>\u00a0Multiplication<\/td>\n<td>\u00a05*6=30<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">\/<\/td>\n<td>\u00a0Division<\/td>\n<td>\u00a021\/7=3<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">Mod<\/td>\n<td>\u00a0Modulus(returns the remainder of an integer division)<\/td>\n<td>\u00a015 Mod 4=3<\/td>\n<\/tr>\n<tr>\n<td style=\"text-align: center;\">\\<\/td>\n<td>\u00a0Integer Division(discards the decimal places)<\/td>\n<td>\u00a019\/4=4<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<h4>Example 11.1<\/h4>\n<p>In this program, you insert two text boxes, four labels, and one button. In the properties windows, change the name of the button to BtnCal, the names of text boxes to TxtNum1 and TxtNum2 and change the names of labels to LblSum, LblDiff, LblPdct and LblQuo respectively. Click the button and enter the code window and type the Visual Basic 2017 code as shown below.<\/p>\n<div class=\"codebg\">\n<pre>Private Sub BtnCal_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnCal.Click\r\nDim num1, num2, difference, product, quotient As Single\r\nDim num1 As Single, num2 As Single\r\nDim sum As Single, diff As Single, pdct As Double, quo As Double\r\nnum1 = TxtNum1.Text\r\nnum2 = TxtNum2.Text\r\nsum=num1+num2\r\ndifference=num1-num2\r\nproduct = num1 * num2\r\nquotient=num1\/num2\r\nLblSum.Text=sum\r\nLblDiff.Text=difference\r\nLblPdct.Text = product\r\nLblQuo.Text = quotient\r\nEnd Sub\r\n<\/pre>\n<\/div>\n<p>Upon running the program, the user may enter two numbers and click on the calculate button to perform the four basic arithmetic operations. The results will be displayed the on the four labels, as shown in Figure 11.1<br \/>\n<a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-6037\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg\" alt=\"vb2015_fig11.1\" width=\"309\" height=\"327\" srcset=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg 309w, https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1-283x300.jpg 283w\" sizes=\"auto, (max-width: 309px) 100vw, 309px\" \/><\/a><\/p>\n<p style=\"text-align: center;\"><strong>Figure 11.1<\/strong><\/p>\n<div><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"2197805353\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/div>\n<h4>Example 11.2:\u00a0Pythagoras Theorem<\/h4>\n<p>This program involves the use of Pythagoras Theorem to calculate the length of hypotenuse c given the length of the adjacent side a and the length of the opposite side b. In case you have forgotten the formula for the Pythagoras Theorem, it is written as c^2=a^2+b^2 in Visual Basic 2017. In this program, insert two text boxes for the user to enter the value of side a and the value of side b respectively. Add a label to display the result, which is the length of the hypotenuse. Lastly, add a button and change its name to BtnCal and its text to Calculate. Click on the Calculate button and enter the following code.<\/p>\n<div class=\"codebg\">\n<pre>Private Sub BtnCal_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click\r\n'To draw a triangle at runtime\r\nDim myPen As Pen\r\nDim A As New Point(10, 10)\r\nDim B As New Point(100, 50)\r\nDim C As New Point(60, 150)\r\nDim myPoints As Point() = {A, B, C}\r\nmyPen = New Pen(Drawing.Color.Blue, 5)\r\n\r\nDim myGraphics As Graphics = Me.CreateGraphics\r\nmyGraphics.DrawPolygon(myPen, myPoints)'Pythagoras equation\r\n\r\nDim a1, b1, c1 As Single\r\na1 = TxtA.Text\r\nb1 = TxtB.Text\r\nc1 = (a1 ^ 2 + b1 ^ 2) ^ (1 \/ 2)\r\nLblC.Text = c1\r\nEnd Sub\r\n<\/pre>\n<\/div>\n<p>* The first part of the code is to draw a triangle at runtime. You shall learn how to write code to draw a triangle in a later lesson. The output is shown in Figure 11.2<\/p>\n<p><a href=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.2.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-6044\" src=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.2.jpg\" alt=\"vb2015_fig11.2\" width=\"300\" height=\"300\" srcset=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.2.jpg 300w, https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.2-150x150.jpg 150w\" sizes=\"auto, (max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p style=\"text-align: center;\"><strong>Figure 11.2<\/strong><\/p>\n<div><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block; text-align: center;\" data-ad-layout=\"in-article\" data-ad-format=\"fluid\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"2197805353\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/div>\n<h4>Example 11.3: BMI Calculator<\/h4>\n<p>A lot of people are obese now and it could affect their health seriously. Obesity has proven by the medical experts to be one of the main factors that bring many adverse medical problems, including the cardiovascular disease. If your BMI is more than 30, you are considered obese. You can refer to the following range of BMI values for your weight status.<\/p>\n<p>Underweight = &lt;18.5<br \/>\nNormal weight = 18.5-24.9<br \/>\nOverweight = 25-29.9<br \/>\nObesity = BMI of 30 or greater<\/p>\n<p>BMI can be calculated using the formula weight\/( height )^2, where weight is measured in kg and height in meter. If you only know your weight and height in lb and feet, then you need to convert them to the metric system. The code is shown below:<\/p>\n<div class=\"codebg\">\n<pre>Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArsgs) Handles Button1.ClickDim height, weight, bmi As Single\r\nheight = TextBox1.Text\r\nweight = TextBox2.Text\r\nbmi = (weight) \/ (height ^ 2)\r\nLblBMI.Text = bmi\r\nEnd Sub\r\n<\/pre>\n<\/div>\n<p>The output is shown in the Figure 11.3 below. In this example, height is 1.80m( about 5 foot 11), weight is 75 kg( about 168Ib), and BMI is about 23.14815. The reading suggests that the person is healthy. (Note; 1 foot=0.3048, 1 lb=.45359237 kilogram)<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/www.vbtutor.net\/vb2010\/vb2010_Image\/vb2010_7.1.gif\" alt=\"\" width=\"300\" height=\"300\" \/><\/p>\n<p><strong>Figure 11.3<\/strong><\/p>\n<p>From the above examples, you can see that writing code that involves arithmetic operations is relatively easy. Here are more arithmetic projects you work on in Visual Basic 2017:<\/p>\n<p>Area of a triangle<br \/>\nArea of a rectangle<br \/>\nArea of a circle<br \/>\nVolume of a cylinder<br \/>\nVolume of a cone<br \/>\nVolume of a sphere<br \/>\nCompound interest<br \/>\nFuture value<br \/>\nMean<br \/>\nVariance<br \/>\nSum of angles in polygons<br \/>\nConversion of lb to kg<br \/>\nConversion of Fahrenheit to Celsius<br \/>\nConversion of mile to km<br \/>\nConversion of meter to foot<\/p>\n<div><script async src=\"\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script><br \/>\n<ins class=\"adsbygoogle\" style=\"display: block;\" data-ad-format=\"autorelaxed\" data-ad-client=\"ca-pub-3033628290023372\" data-ad-slot=\"9961025909\"><\/ins><br \/>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script><\/div>\n<h4 style=\"text-align: center;\"><a title=\"visual basic 2015 tutorial lesson 10\" href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-lesson-10-working-arrays\/\">[Lesson 10]\u00a0<\/a>&lt;&lt;\u00a0<a title=\"visual basic 2015 tutorial\" href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-tutorial\/\">[Contents]<\/a>\u00a0&gt;&gt;<a title=\"visual basic 2015 tutorial lesson 12\" href=\"http:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-lesson-12-working-strings\/\"> [Lesson 12]<\/a><\/h4>\n","protected":false},"excerpt":{"rendered":"<p>[Lesson 10] &lt;&lt; [Contents] &gt;&gt; [Lesson 12] In Visual Basic 2017, we can write code to instruct the computer to perform mathematical calculations that involve the use of various arithmetic\u00a0operators. For example, you can write programs to calculate the area of a triangle, solve simultaneous equations, plot quadratic function graph, simulate simple harmonic motion and &hellip; <a href=\"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-lesson-11-performing-arithmetic-operations\/\" class=\"more-link\">Continue reading <span class=\"screen-reader-text\">Visual Basic 2017 Lesson 11: Arithmetic Operations<\/span><\/a><\/p>\n","protected":false},"author":23013,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"categories":[],"tags":[],"class_list":["post-9986","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Visual Basic 2017 Lesson 11: Arithmetic Operations - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB<\/title>\n<meta name=\"description\" content=\"Learn how to write code to perform arithmetic operations in visual basic 2017\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Visual Basic 2017 Lesson 11: Arithmetic Operations - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\" \/>\n<meta property=\"og:description\" content=\"Learn how to write code to perform arithmetic operations in visual basic 2017\" \/>\n<meta property=\"og:url\" content=\"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html\" \/>\n<meta property=\"og:site_name\" content=\"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Vbtutor\" \/>\n<meta property=\"article:modified_time\" content=\"2018-06-22T05:39:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@liewvk\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-lesson-11-performing-arithmetic-operations\/\",\"url\":\"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html\",\"name\":\"Visual Basic 2017 Lesson 11: Arithmetic Operations - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\",\"isPartOf\":{\"@id\":\"https:\/\/www.vbtutor.net\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#primaryimage\"},\"image\":{\"@id\":\"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg\",\"datePublished\":\"2017-04-03T23:53:09+00:00\",\"dateModified\":\"2018-06-22T05:39:26+00:00\",\"description\":\"Learn how to write code to perform arithmetic operations in visual basic 2017\",\"breadcrumb\":{\"@id\":\"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#primaryimage\",\"url\":\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg\",\"contentUrl\":\"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg\",\"width\":309,\"height\":327},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.vbtutor.net\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Visual Basic 2017 Lesson 11: Arithmetic Operations\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.vbtutor.net\/#website\",\"url\":\"https:\/\/www.vbtutor.net\/\",\"name\":\"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB\",\"description\":\"Start learning Visual Basic from beginner to advanced. Includes VB.NET, VBA, and classic VB tutorials for students and professionals.\",\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Visual Basic 2017 Lesson 11: Arithmetic Operations - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","description":"Learn how to write code to perform arithmetic operations in visual basic 2017","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html","og_locale":"en_US","og_type":"article","og_title":"Visual Basic 2017 Lesson 11: Arithmetic Operations - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","og_description":"Learn how to write code to perform arithmetic operations in visual basic 2017","og_url":"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html","og_site_name":"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","article_publisher":"https:\/\/www.facebook.com\/Vbtutor","article_modified_time":"2018-06-22T05:39:26+00:00","og_image":[{"url":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_site":"@liewvk","twitter_misc":{"Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.vbtutor.net\/index.php\/visual-basic-2017-lesson-11-performing-arithmetic-operations\/","url":"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html","name":"Visual Basic 2017 Lesson 11: Arithmetic Operations - Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","isPartOf":{"@id":"https:\/\/www.vbtutor.net\/#website"},"primaryImageOfPage":{"@id":"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#primaryimage"},"image":{"@id":"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#primaryimage"},"thumbnailUrl":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg","datePublished":"2017-04-03T23:53:09+00:00","dateModified":"2018-06-22T05:39:26+00:00","description":"Learn how to write code to perform arithmetic operations in visual basic 2017","breadcrumb":{"@id":"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#primaryimage","url":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg","contentUrl":"https:\/\/www.vbtutor.net\/wordpress\/wp-content\/uploads\/2015\/03\/vb2015_fig11.1.jpg","width":309,"height":327},{"@type":"BreadcrumbList","@id":"http:\/\/www.vbtutor.net\/vb2017\/vb2017_lesson11.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.vbtutor.net\/"},{"@type":"ListItem","position":2,"name":"Visual Basic 2017 Lesson 11: Arithmetic Operations"}]},{"@type":"WebSite","@id":"https:\/\/www.vbtutor.net\/#website","url":"https:\/\/www.vbtutor.net\/","name":"Learn Visual Basic Programming \u2013 VB.NET, VBA &amp; Classic VB","description":"Start learning Visual Basic from beginner to advanced. Includes VB.NET, VBA, and classic VB tutorials for students and professionals.","inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages\/9986","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/users\/23013"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/comments?post=9986"}],"version-history":[{"count":23,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages\/9986\/revisions"}],"predecessor-version":[{"id":12984,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/pages\/9986\/revisions\/12984"}],"wp:attachment":[{"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/media?parent=9986"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/categories?post=9986"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vbtutor.net\/index.php\/wp-json\/wp\/v2\/tags?post=9986"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}