1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Anna [14]
3 years ago
12

Discuss 7 habits of highly effective people and how important are ethics in today's society​

Engineering
1 answer:
kompoz [17]3 years ago
7 0

Answer:

Explanation:

The 7 Habits of Highly Effective People, is a book written and first published in 1989. It is a business and self-help book that was written by Stephen Covey. The seven habits include

Being proactive

Starting anything with the end in mind

First things first

Always thinking towards a win-win situation

Seeking initially to understand, then going on to want to be understood

Synergize, and lastly

Growing

You might be interested in
A "type 30" brake chamber has a diaphragm diameter of 8" which gives it
Montano1993 [528]
The piston makes four strokes in the crankshaft makes two revolutions between combustion firings. The diameter of the piston, and the inside diameter of the cylinder, is called a bore, so the area of the head of the piston is pi times the diameter squared divided by four.
5 0
3 years ago
Will give brainly
Ksivusya [100]

Answer:

Here you go!!

Explanation:

If I were to write a book I would write my steps down as in figuring out what I what to talk about. Have an Introduction- Using an introduction is needed because you need to Describe your main idea, or what the essay is about, in one sentence. ... Develop a thesis statement, or what you want to say about the main idea. ... List three points or arguments that support your thesis in order of importance (one sentence for each). I would also use a Rising action- This is needed because, To construct the plot, nearly any story can be said to use increasing action. It serves the following purposes: It generates suspense and enhances the sense of urgency around the story's central conflict or problem. Then I would do a Climax- The object of a climax is not to provide the most possible conflict or action. It's also not just about producing the character's greatest reversal of fortunes. Too often we mistake the fortunes of our character with the story's arc, and although fortune is involved, it's not our story arc's key criterion. After that, I would just add finish touches and finish it off before it needs to be shipped off to make copies.

8 0
3 years ago
6. True or False? Common materials used in media
erastova [34]

Answer:

its false

i think it is right

4 0
3 years ago
For this lab you will be creating a auto-expanding dynamic-array. This array will explicitly hold std library strings. As with a
Inessa05 [86]

Answer:

Explanation:

Program is divided into 3 files. stringVector.h , stringVectory.cpp (implementation file) and main.cpp (testing file)

stringVector.h

#include<iostream>

using namespace std;

class stringVector {

private:

string * data;

unsigned length;

unsigned allocated_length;

public:

stringVector();

virtual ~stringVector();

unsigned size();

unsigned capacity();

void reserve(unsigned new_size);

bool empty();

void append(string new_data);

void swap(unsigned pos1, unsigned pos2);

stringVector &operator = (stringVector const &rhs);

string& operator[](unsigned position);

void sort();

};

stringVector.cpp

#include<iostream>

#include<stdexcept>

#include"stringVector.h"

stringVector::stringVector()

{

data = NULL;

length = 0;

allocated_length = 0;

}

stringVector::~stringVector()

{

delete [] data;

}

unsigned stringVector::size()

{

return length;

}

unsigned stringVector::capacity()

{

return allocated_length;

}

void stringVector::reserve(unsigned new_size)

{

string *temp = new string[new_size]; // Create a new array

 

/*Copy the contents of the array*/

for(int i =0; i < new_size; i++){

if(i < length){

temp[i] = data[i];

}

else

break;

}

 

delete []data ;// Delete previous array

data = temp;

allocated_length = new_size;

if(length > new_size){

length = new_size;

}

}

bool stringVector::empty(){

return (length == 0) ? true : false;

}

void stringVector::append(string new_data)

{

string *temp = NULL;

if(length == allocated_length){

if(allocated_length == 0){

data = new string[10];

allocated_length = 10;    

}

else{

temp = new string[2 * allocated_length]; // Create a new array with double the size

for(int i = 0; i < length ; i++){

temp[i] = data[i];

}

allocated_length = 2 * allocated_length;

 

if(data != NULL)

delete []data;

data = temp;

}

}

data[length] = new_data;

length++;

}

void stringVector::swap(unsigned pos1, unsigned pos2)

{

string str;

if((pos1 >= length) || (pos2 >= length)){

cout << "Index Out of bounds" << endl;

return;

}

str = data[pos1];

data[pos1] = data[pos2];

data[pos2] = str;

}

stringVector& stringVector::operator = (stringVector const &rhs)

{

delete [] data;

length = rhs.length;

allocated_length = rhs.allocated_length;

this->data = new string[allocated_length];

for(int i=0 ; i < length; i++)

this->data[i] = rhs.data[i];

}

string& stringVector::operator[](unsigned position)

{

if(position > length){

throw std::out_of_range("Position out of range");

}

return data[position - 1];

}

void stringVector::sort()

{

string str;

for(int i= (length - 1) ; i > 0; i--){

for(int j = 0; j < i; j++){

if(data[j].compare(data[j+1]) > 0){

//Swap

str = data[j];

data[j] = data[j+1];

data[j+1] = str;

}

}

}

}

main.cpp

#include<iostream>

#include<stdexcept>

#include"stringVector.h"

void printVector(stringVector &);

int main()

{

stringVector vector;

string str1("California");

string str2("Alabama");

string str3("Oklahoma");

string str4("Texas");

vector.append(str1);

vector.append(str2);

vector.append(str3);

vector.append(str4);

cout << vector.size() << " - " << vector.capacity() << endl;

printVector(vector);

cout << endl;

vector.reserve(3);

cout << vector.size() << " - " << vector.capacity() << endl;

printVector(vector);

cout << endl;

vector.append(str4);

cout << vector.size() << " - " << vector.capacity() << endl;

printVector(vector);

cout << endl << "Copied vector : " << endl;

stringVector vector2 = vector;

printVector(vector2);

cout << endl;

vector.sort();

cout << "Vector 1 after sorting" << endl;

printVector(vector);

return 0;

}

void printVector(stringVector &vec)

{

cout << "Vector : ";

for(int i = 1 ; i <= vec.size(); i++){

cout << vec[i] << " ";

}

cout << endl;

}

OUTPUT:

[[email protected] cppProg3]$ ./main

4 - 10

Vector: California Alabama Oklahoma Texas

3 -3

Vector: California Alabama Oklahoma

4 - 6

Vector: California Alabama Oklahoma Texas

Copied Vector:

Vector: California Alabama Oklahoma Texas

Vector 1 after sorting

Vector: Alabama California Oklahoma Texas

8 0
3 years ago
Four important biogeochemical cycle<br>​
olga55 [171]

Answer:

The four important biogeochemical cycle are:

1 Water Cycle or Hydrologic Cycle

2 Carbon-Cycle

3 Nitrogen Cycle

4 Oxygen Cycle.

3 0
3 years ago
Read 2 more answers
Other questions:
  • Assume that the heat is transferred from the cold reservoir to the hot reservoir contrary to the Clausis statement of the second
    13·1 answer
  • Describe the distribution of laminations used in the fabrication of a glulam member that is to be used principally as a bending
    13·1 answer
  • Locução adjetiva e de portuges ou istoria
    8·1 answer
  • Comparing cold working to hot working, flow stress is usually lower in _____ Question 19 options: Cold working Hot working
    10·1 answer
  • Fill in the correct answer.
    13·1 answer
  • You have discovered an element that is a poor conductor of electricity, has a low melting point, and is a gas at room temperatur
    6·1 answer
  • The distillation column in Figure 3 is set up for so-called boil-up (V) control. It has
    10·1 answer
  • Select the correct answer. Which physical quantity measures the rate at which an object’s velocity changes?
    11·1 answer
  • The majority of adults now own smartphones or tablets, and most of them say they use them in part to get the news. From 2004 to
    7·1 answer
  • As a new engineer hired by a company, you are asked evaluate an existing separation process for ethyl alcohol (ethanol) and wate
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!