[solved] – Question 82889
a program that accepts date of birth in the order of day,month and year and then displays it in the format: dd/mm/yy separated by a forward slash
Expert Answer
[solved] – Question 82890
all functions in c programming language and their uses
Expert Answer
[solved] – Question 82892
write a program that prompts for the name and password for three times of a user. The program displays “congratulations, you are logged in.” if the user enters the correct password or “Wrong password.Try Again” for a wrong password on which it displays “Sorry, your account is locked, contact the system administrator” if all the three attempts are wrong. use C programming language
Expert Answer
[solved] – Question 82893
notes on IT definition, objectives, functions and management
Expert Answer
[solved] – Question 8290
1. Consider the following relation schema:
Employee (emp_name, emp_street, emp_city)
Works (emp_name, Company_name, salary)
Company (company_name, city)
Manager(emp_name, manager_name)
For each of the following queries, write SQL statements:
i. Find the name of all employees who work for First Bank Corporation
ii. Find the name and city of residence of all employees who work for First Bank Corporation.
iii. Find the name, street, city of residence of all employees who work for First Bank Corporation
and earn more than Rs 15,000 per month.
iv. Find all such employees who do not work for First Bank Corporation.
v. Find the name of all employees who lives in the same city as the company they work for.
vi. Find the company with smallest payroll.
vii. Find all employees who earn more than all employees of Small Bank Corporation.
viii. Assuming that a company may be located in several cities, find the name of the companies that
are locate in every city where Small Bank Corporation is located.
ix. Find the company with maximum number of branches.
x. Find the company that have maximum employees.
Expert Answer
[solved] – Question 82942
You’re a swimmer, and you want to compare all of your race times to find the fastest one. Write a program that continuously takes race times as doubles from standard input, until the input is “no more races,” at which point it should print out the time of your fastest race.
Expert Answer
[solved] – Question 82977
Design an algorithm to accept income from the user; compute the income tax to be paid and display the income and the tax payable on the screen.
Income tax calculation is based on the following table. it is also available at this link: https://www.iras.gov.sg/irashome/Individulas/Locals/Working-Out-Your-Taxes/Income-Tax_Rates/
– Defining problem
– Pseudo code algorithm
-Desk check of the algorithm (two test cases for each question as in one success one invalid)
Expert Answer
[solved] – Question 83019
3)Suppose you have an empty generic stack. Indicate which of the following instructions will invoke a stack underflow.
1.Push 1
2.Push 2
3.Pop
4.Push 9
5.Pop
6.Pop
7.Pop
8.Pop
9.Push 3
Expert Answer
[solved] – Question 83033
write a program that automates operations of the train booking system(booking for routes, showing schedule of the journeys in a given day, show vacant seats on a particular day, you can be able to cancel reservation, able to add a train)
Expert Answer

