Write True or False
1. A function prototype only consist of the name of the function as well as
the parameter list.
2. A function prototype in C++ has a local scope as it is only
accessible within the main or the function where they are
declared in.
3. By default all parameters are declared as integer values.
4. The following is a valid C++ call to a function that will calculate the
final results of two assessments:
results = summativeResults (valtest1, vallTtest2, valResults);
5. The following is a valid C++ function header that will determine if the
entered value is a multiple of 3 or not.
Function determineMuliple (valFirst)
Write a code in C++ programming language
Create three variables that will hold:
Student Name
Student Id
Current Course Intake
Assign your name, student ID, your current course intake to the three variables created previously.
After presenting the output of the three variables you will present the date of this assignment such as:
The date of this Assignment is: 8-12-2021
write program link list insert midle and delete ?
Program that receives the current temperature as input. If the temperature is 80 degrees or more, output a message telling the user to go swimming, otherwise, if the temperature is 50 degrees or more, output a message to go running, otherwise stay inside.
#include <iostream.h>
void main()
{
double temperature;
cout<<”Input Temperature :”;
cin>>temperature;
if (temperature<=80)
{cout<<”go swimming”;}
else if (temperature<=50)
{cout<<”go running”;}
else
{cout<<”stay inside”;}
}
The system accepts maximum 2 input of answers for a displayed mathematical question. “WELL DONE” message is displayed for the correct answer and “TRY AGAIN” for the wrong answer. “SORRY. TIME’S UP” message is displayed if both answers are incorrect.
Write a program that uses nested for loops to print the following pattern to the console
*******
******
*****
****
***
**
*
Write a program to find the number and sum of all integers between 100 and 200 which are divisible by 9. Only a single for loop is required for this exercise.
Some counting
Use your newly acquired knowledge of the for loop to complete the following tasks. Print all values to console in each case.
• Write a program that counts up from 0 to 50 in increments of 1.
• Write a program that counts down from 50 to 0 in decrements of 1.
• Write a program that counts up from 30 to 50 in increments of 1.
• Write a program that counts down from 50 to 10 in decrements of 2.
• Write a program that counts up from 100 to 200 in increments of 5.
Write a program to design a class
representing complex numbers and having functionality of performing addition
and multiplication of two complex numbers using operator overloading and friend function.
Write a program to design a class
representing complex numbers and having functionality of performing addition
and multiplication of two complex numbers using operator overloading.