Free Essay

Cmis 102 Assignment 2

In: Computers and Technology

Submitted By pbaker3131
Words 843
Pages 4
Program Description:

The program I’m creating is going to be utilized to determine the usable surface area of each room in a four-room house and then calculate the usable square footage of the house as a whole.

Analysis:

To start this program, I needed to come up with a plan or blueprint. I utilized the Modular Approach to break this down into smaller parts. The main module is the solution to the problem; determine the square footage of a four-bedroom house with the all rooms being rectangles. The program will perform the equation for the area of a rectangle (Area = Length * Width) for each room. Each sub-module will perform the equation and come up with a solution. Once the solutions are identified for each room, we must finish the task by finding the sum of the four rooms’ square footage to calculate the houses’ total square footage (Area RM1 + Area RM2 + Area RM3 + Area RM4 = Total Square Footage of House).

Calculate the Total Square Footage of a four-bedroom house.
Calculate the Total Square Footage of a four-bedroom house.

Area of Room One
Area of Room One

PLUS
PLUS

Area of Room Two
Area of Room Two

PLUS
PLUS

Area of Room Three
Area of Room Three

PLUS
PLUS

Area of Room Four
Area of Room Four

Analysis (CONT):

In this program, I will be using various variables with different definitions. The table below will list and identify the variables:

VARIABLES | DEFINITION | LR1 | LENGTH OF ROOM ONE | WR1 | WIDTH OF ROOM ONE | LR2 | LENGTH OF ROOM TWO | WR2 | WIDTH OF ROOM TWO | LR3 | LENGTH OF ROOM THREE | WR3 | WIDTH OF ROOM THREE | LR4 | LENGTH OF ROOM FOUR | WR4 | WIDTH OF ROOM FOUR | AR1 | AREA OF ROOM ONE | AR2 | AREA OF ROOM TWO | AR3 | AREA OF ROOM THREE | AR4 | AREA OF ROOM FOUR | T | TOTAL SQUARE FOOTAGE OF HOUSE |

To come up with the square footage of each rectangular room, we would need the equation (Area = Length * Width). With each rooms square footage now known, we would need to use a simple summation equation to add the rooms square footage together to get our answer of the total square footage of our four-bedroom house (Area RM1 + Area RM2 + Area RM3 + Area RM4 = Total Square Footage).

Design:

Calculate the Total Square Footage of a 4-Bedroom House written in Psuedocode:

Calculate Square Footage of each room:

Room One:

1. display “LR1” 2. get length “14” 3. display “WR1” 4. get width “20” 5. calculate area = length x width “14 * 20” 6. display area “AR1” 7. get “280” 8. stop

Room Two:

1. display “LR2” 2. get length “12” 3. display “WR2” 4. get width “13” 5. calculate area = length x width “12 * 13” 6. display area “AR2” 7. get “156” 8. stop

Room Three:

1. display “LR3” 2. get length “14” 3. display “WR3” 4. get width “16” 5. calculate area = length x width “14 * 16” 6. display area “AR3” 7. get “224” 8. stop

Room Four:

1. display “LR4” 2. get length “20” 3. display “WR4” 4. get width “16” 5. calculate area = length x width “20 * 16” 6. display area “AR4” 7. get “320” 8. stop

Calculate Total Square Footage of the house by combining the square footage of each room.

1. display “AR1, AR2, AR3, AR4” 2. get “280, 156, 224, 320” 3. calculate Total Square Footage = AR1 + AR2 + AR3 + AR4 “280+156+224+320=T” 4. display total “T” 5. get “980” 6. stop

A flow chart has been created to help understand the program creation in a different view:

To make sure that we get accurate results every time, I used three sets of input data in three different test studies to see if the program worked. The results are in the table below:

TEST CASE # | INPUT | EXPECTED OUPUT | 1 | ROOM ONE: LENGTH=14, WIDTH=20ROOM TWO: LENGTH=12, WIDTH=13ROOM THREE: LENGTH=14, WIDTH=16ROOM FOUR: LENGTH=20, WIDTH=16 | 980 SQ. FT | 2 | ROOM ONE: LENGTH=24, WIDTH=18ROOM TWO: LENGTH=10, WIDTH=15ROOM THREE: LENGTH=23, WIDTH=13ROOM FOUR: LENGTH=28, WIDTH=20 | 1,441 SQ. FT | 3 | ROOM ONE: LENGTH=10, WIDTH=11ROOM TWO: LENGTH=13, WIDTH=16ROOM THREE: LENGTH=10, WIDTH=12ROOM FOUR: LENGTH=18, WIDTH=11 | 636 SQ. FT |

Documentation:

While starting this assignment, I found that it was a very daunting task right at the beginning. It all seemed overwhelming and ominous due to the fact this is a new concept for me. I did find that it was much easier to utilize the Modular Approach to take a seemingly large problem and separate it into smaller ones to get traction so to speak. Once I had the smaller problems solved, I just needed to utilize a flowchart to get my thoughts in a chronological order so I could establish a suitable Pseudocode for the program. I can see a possible issue if you don’t know the equation to establish the surface area of a rectangle but once you figure that out, its simple plug and play.

Similar Documents

Free Essay

Security Policy

...University of Maryland University College CMIS 102 - Introduction to Problem Solving & Algorithm Design Section 6383 (WebTycho) Assignment 4 – Flow Control Statements 8 points Due by Saturday, April 3, 2010 at Midnight   This program is to be submitted via the WebTycho Assignments folder no later than the date and time shown above to avoid losing points per the rules stated in the Syllabus. Do not mail, e-mail or fax this assignment to the instructor or TA! It is your responsibility to review the policies for the assignments and projects specified in the syllabus and adhere to all guidelines. These rules are meant to apply equally to everyone. Please do not ask for special exceptions! There is no extra ‘make-up work’ for points lost on this exercise.   This programming exercise requires you to demonstrate your understanding and mastery of: |Functional Programming |Modules | |Step-wise refinement |Flow control statements | |Selection and Repetition structures |Program documentation | 1. (5 points): Complete the Programming Exercise: Maximum of three floating points. The code template is provided below 2. (3 points): Test your code with the numbers shown in the table below, See if you get the expected answer Develop a test suite for your code. Test your...

Words: 485 - Pages: 2

Free Essay

Calculate the Usable Area in Square Feet of House. Assume That the House Has a Maximum of Four Rooms, and That Each Room Is Rectangular.

...CMIS102 Homework Assignment 1 Student Name: Neal Fowler Class/Section: CMIS 102 Section 6385 Professor Name: Marie Arvi Assignment due date: 6 January 2014 Problem definition: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. A. Problem Analysis: What is the required output? Total square footage of a house (in square feet) What is the necessary input? Room 1, 2, 3, and 4 length and width. How will we obtain output from input? Each room length and width input multiplied. Next all four rooms total add together for output. B. Program Design: 1. Input data: Input the variables Rm1L, Rm1W, Rm2L, Rm2W, Rm3L, Rm3W, Rm4L, Rm4W 2. Perform calculations: where… Rm1sqft = Rm1L * Rm1W, Rm2sqft = Rm2L * Rm2W, Rm3sqft = Rm3L * Rm3W, Rm4sqft = Rm4L * Rm4W, where… Housesqft = Rm1sqft + Rm2sqft + Rm3sqft + Rm4sqft 3. Output results: Display the total square feet (Housesqft) of the house // House Measurement Computation // Programmer: Neal Fowler Main module // Declare Variables Declare Rm1L Declare Rm1W Declare Rm2L Declare Rm2W Declare Rm3L Declare Rm3W Declare Rm4L Declare Rm4W Declare Rm1sqft Declare Rm2sqft Declare Rm3sqft Declare Rm4sqft Declare Housesqft Write “Home Measurement Program” Write “This program computes the total” Write “square feet (living space) of a house.” Call Input Data module Call Perform Calculations module Call Output Results...

Words: 472 - Pages: 2

Free Essay

Calculate the Usable Area in Square Feet of House. Assume That the House Has a Maximum of Four Rooms, and That Each Room Is Rectangular

...CMIS102 Homework Assignment 1 Student Name: Abel Patrick Assizo Class/Section: CMIS 102 Section 7986 Professor Name: Jose Romero Assignment due date: April 1, 2012 Assignment: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. 1) Problem analysis This Program is intended to compute the area of a house composed of four rectangular rooms. Indeed, for this problem, we need to output the value of the total area of the house after finding and summing the areas of each room. For this to be possible, we will define output and input variables. Therefore, for this program, we will need to output the value of the following variable: * The value of the area of the house total_area (a Float variable) We will also need to input the value of the length and width of each room, subsequently the following variables: * The value of the length of the first room length1 (a Float variable) * The value of the width of the first room width1 (a Float variable) * The value of the length of the second room length2 (a Float variable) * The value of the width of the second room width2 (a Float variable) * The value of the length of the third room length3 (a Float variable) * The value of the width of the third room width3 (a Float variable) * The value of the length of the fourth room length4 (a Float variable) * The value of the width of the fourth room...

Words: 801 - Pages: 4

Free Essay

Cmis 102 Hw2

...CMIS102 Homework Assignment 2 Student Name: Class/Section: CMIS 102/ 3110 Professor Name: Assignment due date: 03 February 2014 Problem definition: Calculate the total price to purchase all the components required to build a state-of-the-art gaming computer from components available on the internet. A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. We are writing a program to calculate the total cost of a gaming computer system. The total cost the computer system should be calculated using the following formula (TotalCost= CpuChoiceCost + RAMChoiceCost + HardDriveCost + ComponentsCost). The cost will be represented by integers. The results should be placed in variable TotalCost. The inputs, for the program are: ComponentsCost, TotalCost, A to Q, Yes or No The output for the program is TotalCost As Float. B. Program Design – Following the directions in the assignment, clearly write up your problem design in this section and comment your pseudocode. Main Module Declare MotherboardCost, CpuChoiceCost, SounCardCost, GraphicsCardCost, CaseCost, MonitorCost, PowerSupplyCost, DVDDriveCost, HardDriveCost, RAMChoiceCost, OperatingSystemCost AS Character Declare A to R As Integer Display a Welcome message Write “Welcome to Computer World” // Prompt for and input start building your system: Write “Would you like to start building your System?” Input Yes OR No Display...

Words: 955 - Pages: 4

Free Essay

Cmis102Hw2

...NAME: CMIS 102 INSTRUCTOR: Due Date: Program Description: This program will calculate the total cost of a customized gaming PC using user selections for Case, Hard Drive, and Graphics Card. There is a baseline cost included in the final price. Analysis: The formula used to determine the computer cost is: TotalCost=CaseCost + HDCost +GPUCost + BaselineCost. All cost items are integers. Input values are TotalCost, A-I. Output value is TotalCoast as Float. Baseline price is a fixed float of 649.99 Prices were determined using the website: www.newegg.com Case Options | Hard Drive Options | GPU Options | A: Rosewill THOR V2-$129.99 | D: Seagate Hybrid 2TB-$109.99 | G: EVGA GeForce GTX 970-$349.99 | B: AZZA Solano 1000-$119.99 | E: Western Digital Red 3TB-$124.99 | H: ZOTAC GeForce GTX 970-$549.99 | C: Thermaltake Chaser MK-I-$114.99 | F: HGST Deskstar 4TB-$184.99 | I: XFX Radeon R9 290X-$329.99 | Test Plan Test Case | Input | Expected Output | 1 | Baseline: $649.99Case A:$129.99Hard Drive E: $124.99GPU G: $349.99 | Total Cost: $1254.96 | 2 | Baseline: $649.99Case B: 119.99Hard Drive D: $109.99GPU I: 329.99 | Total Cost: $1209.96 | 3 | Baseline: $649.99Case C: $114.99Hard Drive F: $184.99GPU H: $549.99 | Total Cost: $1499.96 | START START FLOWCHART END END WRITE “The Total Cost of your gaming PC is $” + TotalCost WRITE “The Total Cost of your gaming PC is $” + TotalCost SET TotalCost=Baseline + CaseCost + HDCost + GPUCost SET TotalCost=Baseline...

Words: 704 - Pages: 3

Premium Essay

Uk Deloitte Annual Report

...Financial Statements 2011 Contents Report to members 1 Report of the independent auditor to the members of Deloitte LLP 10 Consolidated income statement 11 Consolidated statement of comprehensive income 12 Consolidated balance sheet 13 Consolidated statement of changes in equity 15 Consolidated cash flow statement 16 Notes to the financial statements 17 Report to members The Board presents its report to the members and the audited financial statements of Deloitte LLP for the year ended 31 May 2011. The financial statements incorporate the financial statements of Deloitte LLP and all its subsidiary undertakings (the ‘group’), drawn up to 31 May each year. The financial statements that will be filed at Companies House will comprise the consolidated financial statements together with the separate financial statements of Deloitte LLP. Executive Group Deloitte’s activities are managed by the Senior Partner and Chief Executive and the Executive Group, which is appointed by the Senior Partner and Chief Executive. In keeping with our client service focus, members of the Executive Group are also actively engaged with our clients. The members of the Executive Group are: David Sproul, Senior Partner and Chief Executive, Steve Almond, International Markets, Margaret Ewing, Public Policy, Quality & Risk, Sharon Fraser, Regional Markets, Stephen Griggs, Finance, Heather Hancock, Brand and Talent, Andy Hodge,...

Words: 16221 - Pages: 65

Premium Essay

Market Research Problem

...části se bude autorka věnovat problematice výzkumu trhu a jeho jednotlivým metodám a technikám relevantním pro tento typ výzkumu. V praktické části bude analyzovat zvolený trh, popř. zvolené trhy, formuluje doporučení pro tvorbu daného produktu a provede ekonomické vyhodnocení jeho zavedení. Použité metody: Analýza sekundárních dat, dedukce, deskripce, komparace, relevantní matematicko-statistické metody. Rozsah grafických prací: Rozsah práce bez příloh: předpoklad cca 15 tabulek a grafů 60 – 70 stran Seznam odborné literatury: BOLDIŠ, P. Bibliografické citace dokumentu podle ČSN ISO 690 a ČSN ISO 690-2 (01 0197): Část 1 – Citace: metodika a obecná pravidla. Verze 3.2 [online]. 1999–2002. Poslední aktualizace 2002-09-03. Dostupné na World Wide Web: HENDL, J. Kvalitativní výzkum – základní metody a aplikace. 1. vyd. Praha : Portál, 2005. 408 s. ISBN 80-7667-040-2. HENDL, J. Přehled statistických metod zpracování dat – Analýza a meta analýza dat. 1. vyd. Praha : Portál, 2004. 584 s. ISBN 80-7178-820-1. KOTLER, P. Marketing management. 10. rozšířené vyd. Praha : Grada, 2001. 719 s. ISBN 80-247-0016-6. TOMEK, G. – VÁVROVÁ, V. Výrobek a jeho úspěch na trhu. 1. vyd. Praha : Grada, 2001. 352 s. ISBN 80-247-0053-0. Vedoucí diplomové...

Words: 33489 - Pages: 134

Free Essay

Ct1 Actuarial Notes

...CT1 – P C – 09 Combined Materials Pack ActEd Study Materials: 2009 Examinations Subject CT1 Contents Study Guide for the 2009 exams Course Notes Question and Answer Bank Series X Assignments* *Note: The Series X Assignment Solutions should also be supplied with this pack unless you chose not to receive them with your study material. If you think that any pages are missing from this pack, please contact ActEd’s admin team by email at ActEd@bpp.com or by phone on 01235 550005. How to use the Combined Materials Pack Guidance on how and when to use the Combined Materials Pack is set out in the Study Guide for the 2009 exams. Important: Copyright Agreement This study material is copyright and is sold for the exclusive use of the purchaser. You may not hire out, lend, give out, sell, store or transmit electronically or photocopy any part of it. You must take care of your material to ensure that it is not used or copied by anybody else. By opening this pack you agree to these conditions. The Actuarial Education Company © IFE: 2009 Examinations All study material produced by ActEd is copyright and is sold for the exclusive use of the purchaser. The copyright is owned by Institute and Faculty Education Limited, a subsidiary of the Faculty and Institute of Actuaries. You may not hire out, lend, give out, sell, store or transmit electronically or photocopy any part of the study material. You must take care of your study material to ensure that...

Words: 168437 - Pages: 674

Premium Essay

Case Studies on Performance Management

...CASE STUDIES IN PERFORMANCE MANAGEMENT A Guide from the Experts TONY ADKINS John Wiley & Sons, Inc. CASE STUDIES IN PERFORMANCE MANAGEMENT CASE STUDIES IN PERFORMANCE MANAGEMENT A Guide from the Experts TONY ADKINS John Wiley & Sons, Inc. This book is printed on acid-free paper. Copyright © 2006 by SAS Institute. All rights reserved. SAS and all other SAS Institute Inc. product or service names are registered trademarks or trademarks of SAS Institute Inc. in the USA and other countries. ® indicates USA registration. Other brand and product names are trademarks of their respective companies. Published by John Wiley & Sons, Inc., Hoboken, New Jersey. Published simultaneously in Canada. No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, electronic, mechanical, photocopying, recording, scanning, or otherwise, except as permitted under Section 107 or 108 of the 1976 United States Copyright Act, without either the prior written permission of the Publisher, or authorization through payment of the appropriate per-copy fee to the Copyright Clearance Center, Inc., 222 Rosewood Drive, Danvers, MA 01923, 978-750-8400, fax 978-646-8600, or on the web at www.copyright.com. Requests to the publisher for permission should be addressed to the Permissions Department, John Wiley & Sons, Inc., 111 River Street, Hoboken, NJ 07030, 201-748-6011, fax 201-748-6008, or online at http://www.wiley.com/go/permissions...

Words: 77510 - Pages: 311

Free Essay

Advance Case with Ibm Case Manager

...Front cover Advanced Case Management with IBM Case Manager Introducing case management and IBM Case Manager Building IBM Case Manager solutions with use case example Covering customization, rules, deployment, and more Wei-Dong Zhu Brian Benoit Bob Jackson Johnson Liu Mike Marin Seema Meena Juan Felipe Ospina Guillermo Rios ibm.com/redbooks International Technical Support Organization Advanced Case Management with IBM Case Manager May 2014 SG24-7929-03 Note: Before using this information and the product it supports, read the information in “Notices” on page xiii. Fourth Edition (May 2014) This edition applies to Version 5.2.0, IBM Case Manager (product number 5725-A15). © Copyright International Business Machines Corporation 2013, 2014. All rights reserved. Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp. Contents Notices . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiii Trademarks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiv Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xv Authors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xv Now you can become a published author, too! . . . . . . . . . . . . . . . . ...

Words: 95119 - Pages: 381

Premium Essay

Ibt Law

...INTERNATIONAL BUSINESS TRANSACTIONS OUTLINE – WINTER 2005 - SPANOGLE The book is designed around three types of transactions: 1) Sale of goods across borders; 2) Transfer of technology; a. Licensing production abroad; b. Franchising. 3) Direct Foreign Investment. There are two parts to making these deals: 1) Deal-making aspect; a. Allocating risks; 2) Government regulation Decisions and Risks in Trade – Analyze for each Problem! • The language in which the contract is executed. o They speak German- the purchase order is German; o Battle of the Forms (CISG) with another language, you have problem 4.1. (like the Chicken Frigalamenti case). o Even if the transaction is in English, there may still be communication difficulties. • Currency o How are they going to pay you, in Euros or in dollars? It’s important because the exchange rate changes, you may prefer to be paid in Euros rather than dollars because right now the dollar is doing badly. o What if the purchase order is from Laos instead of Germany? If you don’t know the name of the Laotian currency, you probably don’t want it. There are lots of currency problems that go beyond exchange. • Shipping – Import Regulations/Export Regulations handled by customs brokers. o German Customs o Import Duties; o Tariffs. o You might need a shipping broker. o Can’t bribe, “grease the wheels” due to the Foreign Corrupt Practices...

Words: 27863 - Pages: 112

Premium Essay

Book

...SUBJECT: BUSINESS STATISTICS COURSE CODE: MC-106 LESSON: 01 AUTHOR: SURINDER KUNDU VETTER: DR. B. S. BODLA AN INTRODUCTION TO BUSINESS STATISTICS OBJECTIVE: The aim of the present lesson is to enable the students to understand the meaning, definition, nature, importance and limitations of statistics. “A knowledge of statistics is like a knowledge of foreign language of algebra; it may prove of use at any time under any circumstance”……………………………………...Bowley. STRUCTURE: 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9 1.10 Introduction Meaning and Definitions of Statistics Types of Data and Data Sources Types of Statistics Scope of Statistics Importance of Statistics in Business Limitations of statistics Summary Self-Test Questions Suggested Readings 1.1 INTRODUCTION For a layman, ‘Statistics’ means numerical information expressed in quantitative terms. This information may relate to objects, subjects, activities, phenomena, or regions of space. As a matter of fact, data have no limits as to their reference, coverage, and scope. At the macro level, these are data on gross national product and shares of agriculture, manufacturing, and services in GDP (Gross Domestic Product). 1 At the micro level, individual firms, howsoever small or large, produce extensive statistics on their operations. The annual reports of companies contain variety of data on sales, production, expenditure, inventories, capital employed, and other activities. These data are often field data...

Words: 134607 - Pages: 539

Premium Essay

Esrgt

...UNDERGRADUATE REGULATIONS & SYLLABUSES 2014 - 2015 THE FACULTY OF SOCIAL SCIENCES TABLE OF CONTENTS MESSAGE FROM THE DEAN ............................................................. 3 UNDERGRADUATE PROGRAMMES ................................................ 4 ACADEMIC CALENDAR 2014-2015 ................................................ 5 DEFINITIONS ...................................................................................... 13 GENERAL INFORMATION & REGULATIONS .............................. 14 General Regulations for Bachelor of Science Degrees 14 Special Regulations for Degrees in Hospitality and Tourism Management........................................................... 27 Franchise Agreements .......................................................... 27 EVENING UNIVERSITY -GENERAL INFORMATION & REGULATIONS ................................................................................... 28 General Regulations for Bachelor of Science Degrees 28 General Regulations for Diploma Programmes ............ 36 General Regulations for Certificate Programmes ......... 37 STUDENT PRIZES .............................................................................. 38 CODE OF CONDUCT ........................................................................ 39 UNIVERSITY REGULATIONS ON PLAGIARISM .......................... 40 THE ACADEMIC SUPPORT/ DISABILITIES LIAISON UNIT (ASDLU) ..............................................................................................

Words: 77086 - Pages: 309

Premium Essay

Paper

...Section 12(b) of the Act: Title of each Class Common Stock, $2.50 par value Securities registered pursuant to Section 12(g) of the Act: None Indicate by check mark if the registrant is a well-known seasoned issuer, as defined in Rule 405 of the Securities Act. Yes [X] No [ ] Name of each exchange on which registered New York Stock Exchange 16-0417150 (IRS Employer Identification No.) 14650 (Zip Code) 585-724-4000 Indicate by check mark if the registrant is not required to file reports pursuant to Section 13 or Section 15(d) of the Act. Yes [ ] No [X] Indicate by check mark whether the registrant (1) has filed all reports required to be filed by Section 13 or 15(d) of the Securities Exchange Act of 1934 during the preceding 12 months, and (2) has been subject to such filing requirements for the past 90 days. Yes [X] No [ ] 1 Indicate by check mark whether the registrant has submitted electronically and posted on its corporate Website, if any, every Interactive Data File required to be submitted and posted pursuant to Rule 405 of Regulation S-T (§ 232.405 of this chapter) during the preceding 12 months...

Words: 115418 - Pages: 462

Free Essay

Ahp and Other

...Wang and W. Shen (Eds.) Collaborative Product Design and Manufacturing Methodologies and Applications W.D. Li, S.K. Ong, A.Y.C. Nee and C. McMahon (Eds.) R. Venkata Rao Decision Making in the Manufacturing Environment Using Graph Theory and Fuzzy Multiple Attribute Decision Making Methods 123 R. Venkata Rao, PhD Department of Mechanical Engineering Sardar Vallabhbhai National Institute of Technology, Surat Ichchanath Surat 395 007 Gujarat State India British Library Cataloguing in Publication Data Rao, R. Venkata Decision making in the manufacturing environment : using graph theory and fuzzy multiple attribute decision making methods. - (Springer series in advanced manufacturing) 1. Production management - Decision making 2. Graph theory 3. Fuzzy decision making 4. Multiple criteria decision making I. Title 658.5’036 ISBN-13: 9781846288180 Library of Congress Control Number: 2007926809 Springer Series in Advanced Manufacturing ISSN 1860-5168 ISBN 978-1-84628-818-0 e-ISBN 978-1-84628-819-7 Printed on acid-free paper © Springer-Verlag London Limited 2007...

Words: 75183 - Pages: 301