Bank Management System:
The main aim of the Bank
Management Mini DBMS project is
to keep record of customer
transactions in the bank. We aim to
demonstrate the use of create,
read, update and delete MySQL
operations through this project.
Firstly, employee registration is
done in the concerned bank
branch. Branch employee creates
a customer account in the bank,
then the customer can credit
amount, debit amount and check
balance. Customers can even use
different services like insurance,
loan, bill payments etc.
Mode
given a list of integers,write a program to print the mode.
mode - the most common value in the list. if multiple elements with same frequency are present, print all values with same frequency in increasing order.
input
the input will be a single line of containing space-separated integers.
output
the third line of output should contain the mode.
see sample input/output for the output format
explanation
for example, if the given list of integers are
2 6 3 1 8 12 2 9 10 3 4
the average of all the numbers is 4.67.
after sorting the array,
1 2 2 3 3 4 6 8 9 10 12
as 2 and 3 are having the same frequency , the mode will be 2 3.
so the output should be
Mode: 2 3
sample input 1
2 6 3 1 8 12 2 9 10 3 4
sample output 1
Mode: 2 3
Mode
given a list of integers,write a program to print the mode.
mode - the most common value in the list. if multiple elements with same frequency are present, print all values with same frequency in increasing order.
input
the input will be a single line of containing space-separated integers.
output
the third line of output should contain the mode.
see sample input/output for the output format
explanation
for example, if the given list of integers are
2 4 5 6 7 8 2 4 5 2 3 8
the average of all the numbers is 4.67.
after sorting the array,
2 2 2 3 4 4 5 6 7 8 8
as 2 is most repeated number , the mode will be 2.
so the output should be
Mode: 2
sample input 1
2 4 5 6 7 8 2 4 5 2 3 8
sample output 1
Mode: 2
Write a program in C++take two matrix and compute their addition subtraction and multiplication. With output
Median
given a list of integers,write a program to print the mean,median and mode
median - the mid point value in the sorted list.
input
the input will be a single line of containing space-separated integers.
output
the second line of output should contain the median, round off the value to 2 decimal places.
median should be a float value when there are even number of elements, otherwise should be an integer value.
see sample input/output for the output format
explanation
for example, if the given list of integers are
2 6 3 8 12 2 9 10 3 4
the average of all the numbers is 4.67.
after sorting the array,
1 2 2 3 3 4 6 8 9 10 12
as the length of the list is an odd number, the median will be middle numbers in the sorted list.so the median will be 4
so the output should be
Median: 4
Write a Java program that prompts the user to enter thier gender ( Female/ male) and day of the week ( Monday to Sunday). If you enter Monday, or Tuesday, or Wednesday or Thursday it should read "Hello sir, enjoy your day" or "Hello mam enjoy your day". But when entered Friday, or Saturday, or Sunday it should read "Hello sir enjoy your weekend" or "Hello mam enjoy your weekend "
2. SAA would like to develop a control system for one of their modern aircraft models,
which will take about 10 years from initial specification to deployment. You have
been hired as a software engineer for this project.
i) What software development process would you choose for this project? [1]
ii) Explain why you would choose this software development process. [4]
Median
given a list of integers,write a program to print the median.
input
the input will be a single line of containing space-separated integers.
output
the second line of output should contain the median, round off the value to 2 decimal places.
median should be a float value when there are even number of elements, otherwise should be an integer value.
see sample input/output for the output format
explanation
for example, if the given list of integers are
2 4 5 6 7 8 2 4 5 2 3 8
the average of all the numbers is 4.67.
after sorting the array,
2 2 2 3 4 4 5 6 7 8 8
as the length of the list is an even number, the median will be the average of the two middle numbers in the sorted list.
the middle numbers will be 5 and 4. so the average of 5 and 4 will be median, which is 4.5
so the output should be
Median: 4.5
sample input 1
2 4 5 6 7 8 2 4 5 2 3 8
sample output 1
Median: 4.5
If df is a DataFrame that includes a column 'x', what is NOT a way to add a new column 'y', using a function 'f' that applies a transformation?
Select an answer:
mean
given a list of integers,write a program to print the mean.
mean - the average value of all the numbers.
input
the input will be a single line containing space-separated by integers.
output
the first line of output should contain the mean, round off the value to 2 decimal places.
mean should always be a float value.
see sample input/output for the output format.
explanation
for example, if the given list of integers are
2 4 5 6 7 8 2 4 5 2 3 8
the average of all the numbers is 4.67.
as the length of the list is an even number,
so the output should be
Mean: 4.67
for example, if the given list of integers are
2 6 3 1 8 12 2 9 10 3 4
the average of all the numbers is 5.45.
as the length of the list is an even number,
so the output should be
Mean: 5.45
sample input 1
2 4 5 6 7 8 2 4 5 2 3 8
sample output 1
mean: 4.67
sample input 2
2 6 3 1 8 12 2 9 10 3 4
sample output 2
mean: 5.45