Create a flow chart for Windows application that functions like a banking account register. Separate the business logic form the presentation layer. The graphical user interface (GUI) should allow the user to input the account name, number and balance. Ensure that the full name is entered for the customer and that only numeric values are entered for the number fields when the Create Account Button is selected. Separate the business logic from the presentation layer by creating a Customer class. Include a deposit to and withdraw from methods in the customer class to keep the balance updated. After the object of the customer class is instantiated, provide Textbox objects on your GUI for the withdrawals and deposits. A second button object should be available to update the account for withdrawal and deposit transactions showing the new balance.
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.
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)
2. Suppose the university has decided to announce bonus 1 PMS point to employees those have PMS points more than 7. The appraisal will be based on PMS points. We have an array of employees with UID and PMS point . Display the list of employees those would be benefited with bonus. The bonus should be added to the employees who have UID and PMS through the concept of list comprehension.
Input Format ->The input should contain list of employees with UID and PMS point. Output Format ->For each test case, display the UID and PMS point after bonus is being added.
I HAVE ASKED THIS QUESTION EARLIER ALSO BUT IT WAS BEING SOLVED IN C++ BUT I WANT THIS SOLUTION IN PYTHON NOT IN C++
PLEASE SOLVE IT USING PYTHON NOT C++
Write a program that reads 10 integers from user and then finds and prints all the Odd numbers that are divisible by 5.
One large chemical company pays its salespeople on a commission basis. The salespeople receive $200 per week plus 9% of their gross sales for that week. For example, a salesperson who sells $5000 worth of chemicals in a week receives $200 plus 9% of $5000, or a total of $650. Develop a program that will prompt the user for a salesperson’s gross sales and will calculate and display that salesperson's earnings. Process one salesperson's figures at a time, use the sentinel value -1 to terminate the program. A sample input/output dialog for the program is below:
How many time will the loop run?
int count = 11;
while( count <= 31 )
{
count++;
}
What will the value of the result variable be after the code segment below has been run.
int result;
int number1 = 6, number6 = 49;
result = number1 * number6;
How many time will the loop run?
for( int i = 19 ; i < 93 ; i++ )
{
}
What will the value of the solution variable be after the code segment below has been run.
int solution = 80;
int number56 = 16, number15 = 7;
solution -= number56 * number15 ;