UML CASE Tools
What requirements should a UML CASE tool meet?
May 20, 2012 at 8:34 AM
c++
Write 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
February 18, 2012 at 1:59 PM
C++
. 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;
};
February 18, 2012 at 1:58 PM
c++
Consider 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
February 18, 2012 at 1:57 PM
c++
Consider 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
February 18, 2012 at 1:56 PM
c++
Characterize 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
February 18, 2012 at 1:56 PM
c++
Characterize 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);
February 18, 2012 at 1:55 PM
c++
Consider 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;
}
February 18, 2012 at 1:54 PM
flow charts
draw a flow chart program with a user prompt of 5 numbers computing the maximum, minimum and average.
February 7, 2012 at 3:10 PM
Courirer managemnt
what is courier management? and what is new in this management
January 19, 2012 at 12:05 AM
hierarchy UML class diag
Shape
Square
Circle
Rectangle
class Shape
{
string name;
public:
Shape(string);
virtual void ToString();
virtual void Area()=0;
};
class Square :
December 18, 2011 at 12:14 AM
UML
Which is the best Book to learn UML?
December 16, 2011 at 9:55 PM
Entity Relationship Diagram 3
Task 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.
November 23, 2011 at 4:34 PM
Entity Relationship Diagram
Draw 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
November 23, 2011 at 3:58 PM
Entity Relationship
Draw 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
.
November 23, 2011 at 3:50 PM
UML case tools
Research 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
March 6, 2011 at 4:02 AM
Wt is easy way to learn UML
Hello Friends,
Please guide me,How to learn UML in easy way and efficent way.
Thanks in Adavance
Thanks,
Abiram
March 3, 2011 at 7:31 PM
assembly language
add 3 numbers then double the sum
October 14, 2010 at 2:35 PM
marie compilation
write 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 }
September 20, 2010 at 8:22 PM