Skip to content
Maennche-Logo400
  • Home
  • Marketing
  • Expertise
    • Automation
    • Business Coach
    • Marketing – vCMO
    • Development
      • Software Development
      • Salesforce Development
      • WordPress Plugin Development
      • Full-Stack Web Development
    • About Matthew Maennche
  • Resources
    • C++ Solution Map
    • Java Solution Map
    • Python Solution Map
    • Visual Basic Solution Map
  • FAQ
  • Contact
  • Log In

Visual Basic

Learn To Code

1668 Posts

Java

831 Posts

C++

578 Posts

Python

30 Posts

Business

9 Posts

General

7 Posts

PHP

6 Posts

Classic ASP

4 Posts

Web Development

1686 Posts

Uncategorized

2 Posts

FPDF

2 Posts

BuddyPress

2 Posts

Content Management

2 Posts

Javascript

2 Posts

HTML

1 Post

SQL

1 Post

CRM's

1 Post

Microsoft Dynamics CRM

1 Post

Random

1 Post
Search
Visual Basic

Given an integer variable n that has been initialized to a positive value and,in addition,Integer variables k and total that have already been declared,use a For loop to compute the sum of the cubes of the first n whole numbers, and store this value in total. Use no variables other than n,k, and total.

View Solution
Visual Basic

Given int variables k and total that have already been declared, use a for loop to compute the sum of the squares of the first 50 whole numbers, and store this value in total. Thus your code should put 1*1 + 2*2 + 3*3 + … + 49*49 + 50*50 into total. Use no variables other than k and total.

View Solution
Visual Basic

Assume the integer variables counter, low, high, and result have been declared and that low and high have been initialized. Write a For loop that adds the integers between low and high (inclusive), and stores the result in result. Your code should not change the values of low and high. Also, do not declare any additional variables — use only counter, low, high and result.

View Solution
Visual Basic

Assume the integer variables counter, low, high, and result have been declared and that low and high have been initialized. Write a For loop that adds the integers between low and high (inclusive), and stores the result in result. Your code should not change the values of low and high. Also, do not declare any additional variables — use only counter, low, high and result.

View Solution
Visual Basic

Given an int variable k that has already been declared use a for loop to print a single line consisting of 97 asterisks. Use no variables other than k.

View Solution
Visual Basic

Give that two Integer variables, total and amount have been declared, write a loop that reads non-negative values into amount and adds them into total. The loop terminates when a value less than 0 is read into amount. Don’t forget to initialize total to 0. To read a value into amount use a method, getNum() that we provide for you a class named tC: amount = TC.getNum();

View Solution
Visual Basic

Assume the int variables i, lo, hi and result have been declared and that lo and hi have been initialized. Assume further that result has been initialized to the value 0. Write a for loop that adds the integers between lo and hi (inclusive), and stores the result in result. Your code should not change the values of lo and hi. Also, do not declare any additional variables — use only i, lo, hi, and result.

View Solution
Visual Basic

Assume that an array of integers named a has been declared and initialized. Write a single statement that assigns a new value to the first element of the array. The new value should be equal to twice the value stored in the last element of the array.

View Solution
Visual Basic

Assume that an array of Integers named a that contains exactly five elements has been declared and initialized. In addition, an Integer variable j has also been declared and initialized to a value somewhere between 0 and 3. Write a single statement that assigns a new value to the element of the array indexed by j. This new value should be equal to twice the value stored in the next element of the array (i.e. the element after the element indexed by j).

View Solution
Visual Basic

An array of Integers named a has been declared with 12 elements. The integer variable k holds a value between 2 and 8. Assign 22 to the element just before a[k].

View Solution
Visual Basic

An array of Integers named a has been declared with 12 elements. The integer variable k holds a value between 0 and 6. Assign 9 to the element just after a[k].

View Solution
Visual Basic

Given that an array named a whose elements are of type Integer has been declared, assign the value -1 to the last element in a.

View Solution
  • « Previous
  • 1
  • 2
  • 3
  • 4
  • 5
  • …
  • 20
  • Next »

Get In Touch!

(918) 352-6109

1216 E. Kenosha St Suite 273, Broken Arrow, OK 74012

Additional Resources

Account

Frequently Asked Questions

Privacy policy

Terms and conditions

  • English

© 2017 - 2022 Matthew Maennche Blog. All Rights Reserved.

Scroll To Top