Answer:
d . all of the above
Explanation:
I want to say this because this is what iv learned but I may be wrong . and Im sorry if I am:)(
Answer:
B, C, D, E, A
Explanation:
1. The Third Punic War (The third Punic war was known as the last of the Punic Wars and occurred between 149-146 BCE)
2. Tiberius Gracchus is assassinated for trying to establish land reform (Tiberius was assassinated in June 133 BCE for trying to help poor farmers to establish land reforms. He was killed in the riot that resulted)
3. Gaius Marius reforms the Army (This reform was known to be implemented in 107 BCE by Gaius Marius)
4. The revolt of Spartacus and his fellow slaves (Spartacus and his fellow slaves revolted in 73-71 BCE and remains the most successful revolt from slaves in Rome's history)
5. Julius Caesar becomes dictator (Caesar was first appointed dictator in 49 BCE, with the aim of presiding over elections. He resigned after 11 days)
Answer:
C the September 11 ,2001 terrorist attacks
Answer:
MATLAB script is given below
Explanation:
/Practice with inheritance, polymorphism, and Abstract Data Types
//header file for Polygon class
#ifndef MYPOLY_H
#define MYPOLY_H
class myPoly
{
public:
//constructor
//const reference pass because the values w and h don't change and reference avoid the time it takes to copy large
// objects by value (if there were any)
myPoly();
myPoly(const float & w, const float & h);
//destructor
virtual ~myPoly();
//accessors
float getWidth();
float getHeight();
void setWidth(const float & w);
void setHeight(const float & h);
virtual float area() = 0;
private:
float width, height;
};
#endif