Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more.
Course Hero has millions of course specific materials providing students with the best way to expand
their education.
Below is a small sample set of documents:
Georgia Tech - CS - 3510
Name:CS 3510: Design and Analysis of Algorithms Summer 2008 Quiz IIInstructions: Please write your name in the space provided at the upper left corner of this page. This quiz has 5 questions on the following 5 pages. For each question, write your
Georgia Tech - CS - 7210
BZFlags Features, Design and Issues Topics covered in this presentationInstallation Game Design Architecture Some relevant files InstallationRequirements OpenGL 1.0+ libSDL 1.2+ libCURLBuilding from the source http:/my.bzflag.org/w
Georgia Tech - CS - 2008
Genetic Algorithm in Kernighan and Richie C/* * * * Genetics algorithm example taken from "The Amateur Scientist" column of * * Scientific American, July 1992, pages 114-116 by Rick L. Riolo. * * * * This version of genes.c is written in the K&R ver
Georgia Tech - CS - 6390
Genetic Algorithm in Kernighan and Richie C/* * * * Genetics algorithm example taken from "The Amateur Scientist" column of * * Scientific American, July 1992, pages 114-116 by Rick L. Riolo. * * * * This version of genes.c is written in the K&R ver
Georgia Tech - CS - 2008
SOFTWARE REUSE Using existing software artifacts during the construction of a new software system - Krueger Code (libraries, idioms); Designs (patterns, architectural styles) Problems Abstracting, parameterization, compiling from specification t
Georgia Tech - CS - 6330
SOFTWARE REUSE Using existing software artifacts during the construction of a new software system - Krueger Code (libraries, idioms); Designs (patterns, architectural styles) Problems Abstracting, parameterization, compiling from specification t
Georgia Tech - CS - 2008
SORT EXERCISE Sorting is a well-understood concept that is surprisingly hard to specify precisely For this exercise, try to formally specify a SORT routine that takes a vector of integer values as input and returns a sorted vector of integer values
Georgia Tech - CS - 6330
SORT EXERCISE Sorting is a well-understood concept that is surprisingly hard to specify precisely For this exercise, try to formally specify a SORT routine that takes a vector of integer values as input and returns a sorted vector of integer values
Georgia Tech - CS - 2008
GOAL The overarching goal is to satisfy your customer This is one definition of quality This means having confidence that what you build is what the customer wanted There are various approaches for raising confidence; none that provide any guara
Georgia Tech - CS - 6330
GOAL The overarching goal is to satisfy your customer This is one definition of quality This means having confidence that what you build is what the customer wanted There are various approaches for raising confidence; none that provide any guara
Georgia Tech - CS - 2008
RefactoringMartin Fowler. Refactoring / Improving the Design of Existing Code. Addison Wesley, 1999.RefactoringRefactoring is the process of changing a software system in such a way that it does not alter the external behavior of the code yet imp
Georgia Tech - CS - 6330
RefactoringMartin Fowler. Refactoring / Improving the Design of Existing Code. Addison Wesley, 1999.RefactoringRefactoring is the process of changing a software system in such a way that it does not alter the external behavior of the code yet imp
Georgia Tech - CS - 2008
MUTATION TESTING White-box, error-based testing technique Built-in adequacy criteria Tool support The goal of mutation testing is to build an adequate sets of tests Finding faults is a side-effectERROR-BASED TESTING Devise tests that mimic th
Georgia Tech - CS - 6330
MUTATION TESTING White-box, error-based testing technique Built-in adequacy criteria Tool support The goal of mutation testing is to build an adequate sets of tests Finding faults is a side-effectERROR-BASED TESTING Devise tests that mimic th
Georgia Tech - CS - 6330
RefactoringMartin Fowler. Refactoring / Improving the Design of Existing Code. Addison Wesley, 1999.RefactoringRefactoring is the process of changing a software system in such a way that it does not alter the external behavior of the code yet imp
Georgia Tech - CS - 6330
What are Application Generators? They generate programs from high-level specifications Can also generate documentation and test data They have proven successful when they are confined to a limited domain (application area) This area used to be c
Georgia Tech - CS - 2008
Domain Engineering Domain Engineering is the activity of collecting, organizing, and storing past experience in building systems or parts of systems in a particular domain in the form of reusable assets (i.e., reusable work products), as well as pro
Georgia Tech - CS - 6330
Domain Engineering Domain Engineering is the activity of collecting, organizing, and storing past experience in building systems or parts of systems in a particular domain in the form of reusable assets (i.e., reusable work products), as well as pro
Georgia Tech - CS - 2008
ProductLineMetaprogramming (ExamplesfromCzarneckiandEisenecker) Metaprogramming,specificallyC+templates, canbeusedtobuildproductlinegenerators Thatis,theusercanspecifythevaluesfor opDons,andtheC+preprocessorwill automaDcallyconstructtheappropri
Georgia Tech - CS - 6330
ProductLineMetaprogramming (ExamplesfromCzarneckiandEisenecker) Metaprogramming,specificallyC+templates, canbeusedtobuildproductlinegenerators Thatis,theusercanspecifythevaluesfor opDons,andtheC+preprocessorwill automaDcallyconstructtheappropri
Georgia Tech - CS - 2008
Software MaintenanceThe process of modifying existing operational software while leaving its primary function intact - Barry BoehmThe Maintenance Problem 60-80% of total software cost is spent after delivery; 50% of total programmer time Many as
Georgia Tech - CS - 6330
Software MaintenanceThe process of modifying existing operational software while leaving its primary function intact - Barry BoehmThe Maintenance Problem 60-80% of total software cost is spent after delivery; 50% of total programmer time Many as
Georgia Tech - CS - 2008
Variation In support of abstraction and reuse, programming languages, as well as modeling notations, offer a variety of mechanisms to support variation The most obvious such mechanism is parameterizationthe ability to specify replaceable values in
Georgia Tech - CS - 6330
Variation In support of abstraction and reuse, programming languages, as well as modeling notations, offer a variety of mechanisms to support variation The most obvious such mechanism is parameterizationthe ability to specify replaceable values in
Georgia Tech - CS - 2008
Unit Testing Execution of source code by the original developer to verify correctness and nonfunctional properties The Extreme Programming community uses the XUnit framework to support unit testing Where X = {S, C+, or J} www.extremeprogramming.o
Georgia Tech - CS - 6330
Unit Testing Execution of source code by the original developer to verify correctness and nonfunctional properties The Extreme Programming community uses the XUnit framework to support unit testing Where X = {S, C+, or J} www.extremeprogramming.o
Georgia Tech - CS - 6330
JUnit JUnit is an object-oriented framework whose application domain is unit testing Define and run test; collect statistics Cook's Tour: literate program at the design level Literate programs (Knuth) present documentation along with code Patte
Georgia Tech - CS - 2008
Inheritance in C+ C+ supports inheritance-the ability of one program entity (class) to be defined in terms of another The derived class is said to inherit from the base class Defined features includes data members and member functions; definition
Georgia Tech - CS - 6330
Inheritance in C+ C+ supports inheritance-the ability of one program entity (class) to be defined in terms of another The derived class is said to inherit from the base class Defined features includes data members and member functions; definition
Georgia Tech - CS - 6330
Exercise( 1) ( 2) C ( 3) ( 4) ( 5) ( 6) ( 7) ( 8) ( 9) (10) (11) (12) (13) DOUBLE PRECISION FUNCTION SIN(X, E) THIS DECLARATION COMPUTES SIN(X)TO ACCURACY E DOUBLE PRECISION E,TERM,SUM REAL X TERM=X .LT. is less than * is exponentiation DO 20 I=3
Georgia Tech - CS - 2008
Object-Oriented Frameworks Domain-specific design reuse mechanism Reuse by subclassing Contrast with domain-specific languages and application generators Reuse by specification and generation Contrast with metaprogramming Reuse by instantiati