(only by if-else or nested if-else)
Write a program that displays the following menu to the user:
Press 1 for Permanent Employee
Press 2 for Daily wages Employee
After selecting the appropriate employee calculate salary and medical charges for the employees. Following
menu would be displayed:
Press a to calculate Salary
Press b to calculate medical charges.
The daily wages employees are paid 400 per hour while permanent employees are paid 800 per hour.
When you would calculate the salary, first you need to ask for the number of hours for which the
employee has worked so far. The permanent employees are paid 5% medical charges of their total
salary while daily wages are paid 3% of medical charges. For calculating medical allowance no further
selection/input is required.
(only by if-else and nested if- else)
Write a program that ask the users to enter three characters. Then the program should display the
following menu
1. Sort in Ascending order
2. Sort in Descending order
The program should perform sorting of these three characters in ascending or descending order as per the
user requirement.
(only by if-else or nested if-else) (not by loops)
Write a program which calculates the monthly Budget of a person. The program will read the
monthly salary of the person. Then give following options:
Press 1 to calculate gas bill charges
Press 2 to calculate electricity bill charges
Press 3 to calculate fueling charges.
Press 4 to calculate house rent charges
His monthly gas bill charges are 10% of his salary, electricity bill charges are 5% of his salary. His monthly
fueling charges are 10% of his salary, and his house rent charges are 15 %. Your program will calculate and
display the corresponding charges based on the selection (1, 2, 3, or 4)
Write a program that reads 10 integers from user and then finds and prints all the Odd numbers that are divisible by 5.
(Please Only DO it by IF-Else or Nested if else) (not by loops)
Write a program which takes your age as an input and output of your program should b like this
You are 24 years old
One year ago,you were 23
In one year you will be 25
Given a three-digit integer N and an integer K, returns the maximum possible three-digit value that can be obtained by performing at most K increases by 1 of any digit in N.
Write a non-member function that that takes 2 linked lists as
constant arguments and returns a new linked list that contains
every number the two lists do NOT have in common. If list1
contains the numbers 3, 2, 4, 9, 8, 1, 0, 5 and list2 contains the
numbers 0, 1, 7, 6, 4, 5, 9, then the function should return a list of
the numbers 2, 3, 6, 7, 8 in any order. The time complexity of
function should be O(N).
Write a non-member function that shuffle-merge the nodes of
the two linked lists (list1 and list2) to First list, by taking nodes
alternately from the two lists such that the resultant list contains
distinct elements. Both lists contain unique elements each but can
have common elements. For example, if list1 contains {1 3 5 7}
and list2 contains {11 12 5 13 14}, then after the function call
shuffleMerge(list1,list2), list1 should contain
{1->11->3->12->5->13->7->14} and list2 should be empty now.
Note: You are NOT allowed to create any new node in this
function.
Construct a class named Complex to represent a complex number with the requirements:
The real and imaginary components are both floats
Function to input real components, virtual components from the keyboard
Function to display information to the screen
Function to take real components, function to assign real components
Function to get virtual components, function to assign virtual components
The function also takes real and imaginary components
The function simultaneously assigns real and imaginary components
Write a main program that illustrates how to use it(Only use if-else and nested if else in program)
Write a program which asks the user to open a bank account either Current or Savings. Your program will
display the following menu at the start:
Press 1 for Current Account
Press 2 for Savings Account
On the selection of account type, the user will open an account by providing an initial amount. In current account the initial amount for opening an account would be 2000 and for savings it would be 5000. After choosing the account type and opening the account with initial amount, your program will display the
following menu:
Press a for Deposit the money
Press b for withdrawing the money
In current account the user cannot withdraw more than 10000 rupees. In Savings account the user cannot withdraw more than 25000. When the user withdraws amount make sure that amount should not be more than the balance in account and at the end of withdrawal transaction, there should be
minimum of 500 rupees for each account.