Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Part 1: Please write the function declaration ( only the declaration, no definition ) and 1-2 lines of code after that giving an example of

Part 1: Please write the function declaration (only the declaration, no definition) and 1-2 lines of code after that giving an example of client code calling that function. Please pay special attention to the parameters and their types, whether they are passed by value or by reference, and the return type. If the value of the parameter is numeric and the number does not have to be a whole number, double should be given preference over int. e.g: double add (double a, double b); double total = add(2, 3); 1) A function named minVal which takes two numbers and returns the min of the two. 2) A function named inRangeLoHi which takes three parameters lo, hi, and val and returns whether or not val is in the range [lo, hi] 3) A function named isVowel which takes a letter and returns whether or not that letter is a vowel. 4) A function named letterAfter which takes a letter and a number n and returns the letter in the alphabet n positions after that letter (z wraps back to a). 5) A function named displayGreeting which displays some constant greeting to the user. 6) A function named incrementAll which takes 3 numbers and increments each by one. 7) A function named getInput which takes 2 numbers as parameters and asks the user to provide values for those two numbers. Part 2: Please describe very briefly (2-3 lines) if the clients of the functions need to know their definition to be able to use them. Why or why not? Part 3: Assuming the functions in Part 1 exist, write a function (definition) called inRange which takes two numbers end1 and and end2 and a number val and returns whether val is in the range defined by [smallerEnd, higherEnd] depending on whether end1 or end2 is smaller. Your function must rely on existing functions above to do its work and it should do as little work of its own as possible.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft Visual Basic 2005 For Windows Mobile Web Office And Database Applications Comprehensive

Authors: Gary B. Shelly, Thomas J. Cashman, Corinne Hoisington

1st Edition

0619254823, 978-0619254827

More Books

Students also viewed these Databases questions

Question

Use internal communication to shine

Answered: 1 week ago

Question

Define and measure service productivity.

Answered: 1 week ago