create a java program will concatenate the basic information of the students given the default variables name
Write a PL/SQL program to check whether a date falls on weekend i.e. SATURDAY or SUNDAY input give input as 5sep 1984
Create a Python script which will compute the TOTAL Sales in Grapes Store. The grapes is sold at 235.75 per kilo. 5% discount is given to customers that will buy 5 kilos and above. Compute also the CHANGE after the customer tendered their money. Format the display with two decimal digits.
Sample Output:
GRAPE STORE:
No. of Kilos: 6
Total Price: 1414.50
Discount: 70.73
Discounted Price: 1343.77
CASH: 1500
Change: 156.23
I need the code to have an output stated above.
1. Create a program based on the attached output using the do-while loop.
2. Your program will keep asking the user to choose from the Options.And the program exits until the user selects Exit.
Create a Python script that will accept three integers and will check each input number. If the input number is EVEN it will display the square cube of the number and if the number is ODD, it will display the square of the number.
Sample Output:
Number 1: 5
Number 2: 8
Number 3: 3
The square of 5 is 25
The cube of 8 is 512
The square of 3 is 9
I need the code to have an output stated above.
A company decided to give bonus to employee according to following criteria: Time period of Service Bonus if More than 10 years 10% if >=6 and <=10 8% if Less than 6 years 5%. Ask user for their salary and years of service and print the net bonus amount.
Develop a program logic that performs arithmetic functions which design to prompt values
for the variables from users. Both variables will be passed to methods named area() and
perimeter() for a trapezium. Compute the values of two arguments, respectively so each
method should perform the appropriate computation and display the results. Present all
requirements to be prepared to solve this problem.
You have been appointed as IT Head of a soon to be opened bank in India by the name of “People’s bank” which will have branches all over India. People’s bank is a private sector bank. Highlight atleast 5 security threats that a bank may face in today’s times and suggest 5 innovative IT security mechanisms to ensure that such threats do not harm your bank & that your systems remain as secure as ever.
Write a program in C++ to input 10 numbers and print only abundant numbers.
An abundant number is the number for which the sum of its proper divisors(excluding the
number itself) is greater than the original number.
Sample input: 12
Sample output:
Its proper divisors are 1, 2, 3, 4 and 6
Sum = 1 + 2 + 3 + 4 + 6 =16
Hence 12 is an abundant number.
Write a program in C++ to print the following pattern:
5
5 4
5 4 3
5 4 3 2
5 4 3 2 1