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

Write an if/else statement that compares the variable age with 65, adds 1 to the variable seniorCitizens if age is greater than or equal to 65, and adds 1 to the variable nonSeniors otherwise.

LANGUAGE: Visual Basic

CHALLENGE:

Write an if/else statement that compares the variable age with 65, adds 1 to the variable seniorCitizens if age is greater than or equal to 65, and adds 1 to the variable nonSeniors otherwise.

SOLUTION:

 If (age >= 65) Then
     seniorCitizens += 1
 Else
     nonSeniors += 1
 End If


Posted in Learn To Code, Visual Basic

Posts navigation

← Write an if/else statement that compares the value of the variables soldYesterday and soldToday, and based upon that comparison assigns salesTrend the value -1 or 1. -1 represents the case where soldYesterday is greater than soldToday; 1 represents the case where soldYesterday is not greater than soldToday.
Write the definition of a function named quadratic that receives three double parameters a,b,c. If the value of a is 0 then the function prints the message “no solution for a=0” and returns. If the value of “b squared” – 4ac is negative, then the code prints out the message “no real solutions” and returns. Otherwise the function prints out the largest solution to the quadratic equation. The formula for the solutions to this equation can be found here: Quadratic Equation of Wikipedia. →

Additional Resources

Account

Frequently Asked Questions

Privacy Policy

Terms and Conditions

Matthew Maennche logo icon

Get In Touch!

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

(918) 352-6109

© 2017 - 2023 Maennche Software Development. All Rights Reserved.

Scroll To Top