What requirements should a UML CASE tool meet?
Posted on: May 20, 2012 at 8:34 AMWrite the definition of the class dayType that implements the day of the week in a program. The class dayType should store the day, such as Sunday for Sunday. The program should be able to perform the following operations on an object of type dayT
Posted on: February 18, 2012 at 1:59 PM. Consider the definition of the following class: class CC { public: CC(); //Line 1 CC(int); //Line 2 CC(int, int); //Line 3 CC(double, int); //Line 4 . . . private: int u; double v; };
Posted on: February 18, 2012 at 1:58 PMConsider the following declarations: class xClass { public: void func(); void print() const; xClass (); xClass (int, double); private: int u; double w; }; xClass x; a. How many members does class xClass have? b. How many private members does class
Posted on: February 18, 2012 at 1:57 PMConsider the following declarations: class xClass { public: void func(); void print() const; xClass (); xClass (int, double); private: int u; double w; }; xClass x; a. How many members does class xClass have? b. How many private members does class
Posted on: February 18, 2012 at 1:56 PMCharacterize the following algorithm in terms of Big-O notation. for (int i = 1; i <= n; i++) for (int j = 1; j <= n; j++) for (int k = 1; k <= n; k++) cout << i + j + k
Posted on: February 18, 2012 at 1:56 PMCharacterize the following algorithm in terms of Big-O notation. Also find the exact number of additions executed by the loop. (Assume that all variables are properly declared.) for (int i = 1; i <= n; i++) sum = sum + i * (i + 1);
Posted on: February 18, 2012 at 1:55 PMConsider the following function: int funcExercise7(int list[], int size) { int sum = 0; for (int index = 0; index < size; index++) sum = sum + list[index]; return sum; }
Posted on: February 18, 2012 at 1:54 PMdraw a flow chart program with a user prompt of 5 numbers computing the maximum, minimum and average.
Posted on: February 7, 2012 at 3:10 PMwhat is courier management? and what is new in this management
Posted on: January 19, 2012 at 12:05 AMShape Square Circle Rectangle class Shape { string name; public: Shape(string); virtual void ToString(); virtual void Area()=0; }; class Square :
Posted on: December 18, 2011 at 12:14 AMWhich is the best Book to learn UML?
Posted on: December 16, 2011 at 9:55 PMTask 3 Activities: Identify all entities and attributes from the given scenario. Draw entity relationship diagram of the given from scenario. Determine primary key and foreign keys from given scenario.
Posted on: November 23, 2011 at 4:34 PMDraw only entity relationship diagrams for the following scenario. Include any attributes you think should be represented. . Each engineer works on a number of projects. For every engineer a record is kept of his number, name title and sal
Posted on: November 23, 2011 at 3:58 PMDraw entity relationship diagram for the following scenario. A university has many departments whereas each department belongs to that particular uni.That uni has also many buildings whereas each building belongs to that particular uni .
Posted on: November 23, 2011 at 3:50 PMResearch available UML case tools. Test one of the UML case tools that you researched. Select one of the free tools, or one that is currently used in your workplace. Install the tool and try to input at least one class diagram and one interactio
Posted on: March 6, 2011 at 4:02 AMHello Friends, Please guide me,How to learn UML in easy way and efficent way. Thanks in Adavance Thanks, Abiram
Posted on: March 3, 2011 at 7:31 PMcan u plz help me plz
Posted on: October 15, 2010 at 2:22 PMadd 3 numbers then double the sum
Posted on: October 14, 2010 at 2:35 PMwrite a program using assembly language that execute(performs) the following algorithm while(n>1){ if (n is even) n=n/2 else n=3*n+1 }
Posted on: September 20, 2010 at 8:22 PM