Skip to main content

Posts

Business & Technology | Math & CS | Dr. Aaron R. Rababaah | CSDP 250 | Final (Fall-2015) full paper solution

Implementation Language If code is given or required, it should be in C++ Question [01] Given the structure: struct BankAcnt{ string name; int number; float balance; }; Write a search function that scans a passed array of BankAcnt type to find an account with a passed number and resets the account balance to zero and returns “true”. If the account is not found, it just returns “false”. The operator “[]” is not allowed anywhere in the function and the size of the array is unknown but, the array always maintains a sentinel BankAcnt with a (number = -1). Question [02]   Given the STL two containers: forward_list and stack, write two functions to: a) Reverse print the objects of a forward_list using recursion. b) Reverse print the objects of a forward_list using iteration and stack. Question [03]  Write a function that prints a <queue> elements in reverse order using any helper STL container but the <stack>. Question [04]  Given a singly-linked list template c...

Highest GPA Calculator Using Stack and File Handling in C++

Highest GPA Calculator Introduction We want to write a C++ program that reads a data file consisting of each student’s GPA followed by the student’s name. The program then prints the highest GPA and the names of all of the students who received that GPA. The program scans the input file only once. Moreover, we assume that there is a maximum of 100 students in the class. Use a stack to write your code. Here is an example of the input/output operations. Input  The program reads an input file consisting of each student’s GPA, followed by the student’s name. Sample data is: 3.5 Bill 3.6 John 2.7 Lisa 3.9 Kathy 3.4 Jason 3.9 David 3.4 Jack Output  The highest GPA and all of the names associated with the highest GPA. For example, for the above data, the highest GPA is 3.9, and the students with that GPA are Kathy and David. CONTACT DETAILS For any other questions or other tasks please feel free to contact me via email: mhassnainjamil@gmail.com via WhatsApp: +92-324-7042178 via skype...

Weather Prediction Application Poster

Weather Prediction Application Poster \ CONTACT DETAILS For any other questions or other tasks please feel free to contact me via email: mhassnainjamil@gmail.com via WhatsApp: +92-324-7042178 via skype: hassnainjamil1

The Case Study: Hospital Sterile Services

The Case Study:  Hospital Sterile Services Part 1: Core Scenario The sterile services department of a large hospital manages the cleaning and sterilisation of surgical and other medical instruments used at various medical procedures such as medical operations in the hospital. The surgical instrument is organised in trays, each identified by a unique identification number. A medical procedure (operation) will typically use one or more of trays of surgical instruments. There are many types of medical operations which use several types of trays. The tray id is recorded in the procedure notes so that the history of any instruments used can be traced at any time in the future and cross-referenced to individual patients and medical personnel. The instruments do not have an ID, as it would be not cost effective to try to engrave codes on each of them (i.e. their alloy is too hard, instruments have various shapes, etc). Each procedure type requires a prescribed number of trays, each with a...

Delete Your Facebook Page Permanently

Visit your Facebook page Visit you page and go to the settings as shown in the figure. Go to the settings of your Facebook page Now click on the edit link under remove page tab as shown in figure Delete it permanently Now click on the delete page to delete in permanently. CONTACT DETAILS For any other questions or other tasks please feel free to contact me via email: mhassnainjamil@gmail.com via WhatsApp: +92-324-7042178 via skype: hassnainjamil1

MIT new Invention

Share it with your friends! CONTACT DETAILS For any other questions or other tasks please feel free to contact me via email: mhassnainjamil@gmail.com via WhatsApp: +92-324-7042178 via skype: hassnainjamil1

Taxi on Demand full Database documentation with ERD

Introduction:  You are part of a consultancy company that specialises in the provision of database applications. The Director of CabsOnDemand has recently approached your company to undertake a project to design and partially implement a database system for the company. The CabsOnDemand Case Study: A private taxi company called CabsOnDemand was established in London in 2012. Since then, the company has grown steadily and now has offices in most of the boroughs in North London. However, the company is now so large that more and more administrative staff are being employed to cope with the ever-increasing amount of paperwork. Furthermore, the communication and sharing of information within the company is poor. The Director of the company, Tom Sheridan feels that too many mistakes are being made and that the success of his company will be short-lived if he does not do something to remedy the situation. He knows that a database could help in part to solve the problem and has approached...