Write a program that requires you to calculate a shop’s total money in a specific register. All
the different notes should be added to calculate how much money is in the register. The coins
are added together manually and then added to the total. Required input values are:
o The amount of 10 rand notes.
o The amount of 20 rand notes.
o The amount of 50 rand notes.
o The amount of 100 rand notes.
o The amount of 200 rand notes.
o The total of the coins.
The output is the total cash in the register.
Write a brief C# script that multiplies the number of recruits by 5 and stores it as the players score. The script should also deduct points when the number of recruits falls below 10 (assuming that the player is part of the team).
Create an application which consist of following module:a.Signup Panel which consists of user required fields (username, password, Email,Address, phone).
b.After Signup user must login with Id and password while ID must be generated automatically when you signup and generate the unique id in database.
c.Email address must be valid by using email address pattern by Regex.
d.Phone number field must be numeric we cannot enter string in phone.
e.Username must contain characters.
Create a class Calculator having two integer data members and one string member i.e. operator. Class contains only one customized constructor which takes two arguments, set the default values 1 if no argument ispassed through the constructor. Class Calculator also contains a member function Calculate () that takes an operator (string) as an argument and compute it. Only four operators are allowed i.e. +, -, *, /
Create the classes required to store data regarding different types of Courses. All course shave name, duration and course fee. Some courses are part time where you have to storethe timing for course. Some courses are onsite where you have to store the companyname and the no. of candidates for the course. For onsite course we charge 10% more on the course fee. For part-time course, we offer 10% discount.Provide constructors and the following methods.Print() GetTotalFee()