Python2 Min Read LetuscrackonJune 12, 2024 Bank Average Waiting Time In a bank, customers queue up to deposit or withdraw money. Typically, they are served on a First Come First Served (FCFS) basis. However, the…
C Java Python1 Min Read LetuscrackonJune 12, 2024 Average of Prime Digits The program must accept an integer N as the input. The task is to calculate the average of all the prime digits present in the number and…
C1 Min Read LetuscrackonJune 11, 2024 Find the lowest average temperature for N days The temperature recorded in a city in a week will be passed as input. The program must print the lowest average temperature for any 3…
C1 Min Read LetuscrackonJune 10, 2024 C – Function – Average An array of N integers is given as input. The program must print the average with precision up to two decimal places. Fill in the missing…
Hackerrank Python1 Min Read LetuscrackonJune 9, 2024 Average Salary Excluding the Minimum and Maximum Salary You are given an array of unique integers salary where salary[i] is the salary of the ith employee.…
Java1 Min Read LetuscrackonJune 9, 2024 Average Speed A single line L with a set of space separated values indicating distance travelled and time taken is passed as the input. The program must…
C Python2 Min Read LetuscrackonJune 8, 2024 Bank Account Balance [AVERAGE] In a given month, N transactions related to a bank account are passed as the input along with the initial balance IB present in the bank…
C Java Kickstart Python1 Min Read LetuscrackonJune 6, 2024 Average – Two Numbers The program must accept two numbers and print their average (up to two decimal places). Example Input/Output 1:Input:10 4 Output:7.00 Example…