Write a C++ application that can compute the letter grade of a student after accepting the student’s mid and final mark. The program should only accept mid result [0-40] and final [0- 60]. If the data entered violates thisrule, the program should display that the usershould enter the mark in the specified range. The program is also expected to run until the user refuses to continue.
Two friends Jameel and Uday went to Games Zone in shopping mall. They have 15 games
in their hand in random order. They have given 10 seconds to find the game in the given
list. Write a program to search a game in the given list using recursion method.
A schoolboy named ‘Jala kondapathi’ was living in a small village. But his full name is Jala
Kondapathi Rao in the registered certificates. He has joined the college after a school in a
city. His friends are called his name as “Jala Pathi Rao”. But he likes to call “Pathi”.
Write a java program to read name ‘Jala Kondapathi’ initially. Then modify the names as
per the sequence given above. Use StringBuffer Class methods to do changes in the name
Given an integer number
N as input. Write a program to print the hollow right-angled triangular pattern of N lines as shown below.Note: There is a space after each asterisk (*) character.
Create a function that receives two arguments namely (age, name, gender)
return age, name, then create an if statement outside to check if the user is
above 18 years …. Display “Hi Meyer (Gender) here “F or M”, you are above
18,” else return false
o Your program should prompt a user to enter age, name and gender.
o Age should be declared as integer/number, name and gender should
be a string. Should accept gender as a full string “Female or Male”
then display only letter F or M.
how we put input from user ?
we want that what is the user put ,then answer in show accordingly
your output:
ReferenceError: "aqString" is not defined
expected output:
Script
Write a program segment to calculate and display the total yearly income of an employee which is calculated from his total salary and annual bonus. The user will be asked to enter the employee's monthly salary and year of service. The employee's year of service will determine the bonus he receives.
Write a function to calculate the distance a vehicle has traveled for a given time period
at a given speed. The distance travelled can be calculated from the following formula:
distance = speed * time period
For example, if a car travels at 110 km per hour for three hours, the distance travelled
is 330 km.