CS403 Assignment No 14 (01-11-2011)

                                                                  Assignment No. 01
                                                                  Semester Fall 2011
                                                    Database Management Systems-CS403



                                                                                                                                     Total Marks: 20 


                                                                  Due Date: 01/11/2011





Objective:
To learn and understand the basic concepts of Context Level DFD and Cross Reference Matrix.

Instructions:
Please read the following instructions carefully before solving & submitting assignment:
It should be clear that your assignment will not get any credit if:

o        The assignment is submitted after due date.
o        The submitted assignment does not open or file is corrupt.
o        The assignment is copied (from other student or copy from handouts).
o        The assignment is in the format other than MS Word (doc).
o        Student ID is not mentioned in the assignment File or name of file is other than student ID.

For any query about the assignment, contact at cs403@vu.edu.pk

GOOD LUCK




Q # 1: Draw a Context Level DFD for “Online Banking System” of ABC Bank. (10 marks)
Scenario is given below:


Account Holder and IT Manager interact with the system:

·         Account Holder perform following activities:
a.   He can check his balance.
b.  He can order a “Cheque Book”.
c.   He can transfer funds from one account to another account.
d.  He can pay utility bills.



·         IT Manager manages the “Online Banking System”.



















Q # 2: Analyze and Draw a “Cross Reference Matrix” to identify/show different reports and attributes, which are usually required by the higher management of ABC Bank (Any Bank). (10 marks)

Note: There should be 3 reports and 7 attributes in the matrix.





Profit & Loss Report
Final Report
Expanse  Report
Report About Loans taken
Income tax


Fixed Assets
Income


Loss


Expanses

Name of the company



Interest
Date

  


CS201 Assignment No 1 (02-11-2011)

Assignment No. 01
Semester: Fall 2011
CS201: Introduction to Programming


Total Marks: 20


                                              Due Date:02/11/2011


Instructions:

Please read the following instructions carefully before submitting assignment. It should be clear that your assignment will not get any credit if:


§         The assignment is submitted after due date.
§         The submitted assignment does not open or file is corrupt.
§         Assignment is copied(partial or full) from any source (websites, forums, students, etc)

Note: You have to upload only .cpp file. Assignment in any other format (extension) will not be accepted and will be awarded with zero marks. For example, if you submit code in .doc (Word document) or .txt files, no reward will be given in any case.


Objective:

The objective of this assignment is to provide hands on experience of:

§         Basic concepts of C/C++ language and Programming
§         Dealing with Data types
§         Conditional statements of C/C++ language
§         Repetition Structures in C/C++ language
§         Saving a program
§         Compiling a program
§         Executing the program


Guidelines:

§         Code should be properly indented and well commented.
§         Follow C/C++ rules while writing variable names, function names etc
§         Use only dev-C++ for this assignment.
§         Use appropriate C/C++ structure i.e. if-else; switch statement etc to get inputs from user where required (Marks will be deducted if inappropriate structure will be used).



Problem Statement:     Virtual Restaurant    

You are required to write a program for BILLING SYSTEM of a virtual restaurant. The basic idea is that by entering the meal price, your billing system will calculate the Sales Tax, Total amount and Complement offer upon that meal. The program will process the billing of undetermined number for customers. At the end, program will show sum of total amount of all the customers.  

Detailed Description:
Billing System should work as under:

  • You are required to take meal price as input from user.
  • After getting this input, program will calculate the sales tax on it as given below:

Meal Price
Sales Tax applicable
Less than or equal to 1000
No sales Tax on it.
Greater than 1000 and less than or equal to 2000
1% of meal price.
Greater than 2000
2% of meal price.

  • After calculating the sales tax, program will calculate and display the total amount of the meal according to given formula:
         Total Amount = Meal_Price + Sales_Tax
  • Now, program will prompt to serve the complement sweet dish to customer on the basis of total amount as given below:


Total Amount
Sweet Dishes
Less than 1000
Candies
Greater than or equal to 1000 and less than 2000
Sweet Bread
Greater than or equal to 2000 and less than 3000
Pudding
Greater than or equal to 3000 and less than 4000
Cake
Other amounts  
Trifle











  • After displaying the information of one customer, the program should ask the user if he/she again wants to process the bill of another customer. The user will be given two options. If user selects “Y or y”, the program will start the processing of another customer. If user selects “N or n”, the billing system exits.
  • Before exiting from billing system, this program should display the total number of customers it processed, and sum of total amount of all the customers.


Sample Output:















---------------------------------------------------------


SOLUTION


//MC090200982
//Yasir Javaed
//Program for virtual Billing System (virtual resturant)


#include<iostream.h>
#include<conio.h>
main()
{
cout<<"     ** Virtual Restaurent **                 "<<endl;
float meal,tax,total,grand=0,x,count;
count=0;
char choice; /*Declare a character type variable so that we can make decession yes or no*/
do{
           
cout<<"Enter the Price of meal : ";/*get amount of meal*/
cin>>meal;
           
if(meal<=1000) /* Applying first condition */
           {
                      tax=0;
                      total=tax+meal;
           cout<<"Your meal price is"<<meal<<endl;
           cout<<"Your tax is   : "<<tax<<endl;
           cout<<"-----------------------"<<endl;
           cout<<"Your bill is : "<<total<<endl<<endl;
           
           
           }
           if(meal>1000&&meal<2000)
           {
           tax=(meal*1)/100;
      total=tax+meal;
         cout<<"Your meal price is;"<<meal<<endl;
         cout<<"Your tax is   : "<<tax<<endl;
         cout<<"-----------------------"<<endl;
         
         
         }
         if(meal>=2000)
         {
                       tax=(meal*2)/100;
         total=tax+meal;
         cout<<"Your meal price is: "<<meal<<endl;
         cout<<"Your tax is   : "<<tax<<endl;
         cout<<"-----------------------"<<endl;
         cout<<"Total bill is : "<<total<<endl<<endl;
         
         
         }
         
         if(total<1000)
         {
                       cout<<"customer should serve with candies"<<endl;
                       }
                       if(total>=1000&&total<2000)
         {
                       cout<<"customer should serve with Sweet Bresd"<<endl;
                       }
                       if(total>=2000&&total<3000)
         {
                       cout<<"customer should serve with Pudding"<<endl;
                       }
                       if(total>=3000 && total<4000)
         {
                       cout<<"customer should serve with Cake"<<endl;
                       }
                       if(total>=4000)
         {
                       cout<<"customer should serve with Triffle"<<endl;
                       }
cout<<"\nDo you want to total some other bill?\n Press Y for yes and N for no"<<endl;
                     cin>>choice;
                     count=count+1;
                     grand=grand+total;
                     }
                     
                     while(choice=='Y'||choice=='y');
                     
                     if(choice=='n'||choice=='N');
                     {              cout<<"Total munber if customer are;"<<count<<endl;
                     
                     
                     cout<<"Total of all is : "<<grand;
                     }
         getch();
         }