Hi I Need Help With Paraphrasing I Need The Following Two Small Tables To Be Par 1

Hi i need help with paraphrasing! I need the following two small tables to be paraphrased. That’s all 😀 in the same format

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hi I Need Help With Paraphrasing I Need The Following Two Small Tables To Be Par

Hi i need help with paraphrasing! I need the following two small tables to be paraphrased. That’s all 😀 in the same format

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hi I Need Help With Principles Of Management Discussion Board 1 And 2

hi I need help with principles of management discussion board 1 and 2

Surname 1Fist Name SurnameInstructorCourseDatePrinciples of ManagementPrinciples of managements are the factors or rather essentials that form the ultimatesuccessful management. These are…

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hi I Need Help With Questions 1 And 4 Could You Please Help Me Answer These

Hi,

I need help with questions 1 and 4. Could you please help me answer these?

For number four the strategy used would be focusing on the 20 largest projects instead of the smallest 100.

Thank you for your time and attention.

  • Attachment 1
  • Attachment 2
  • Attachment 3
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hi I Need Help With Questions On My Eastern Philosophy Exam According To Mengzi

Hi I need help with questions on my eastern philosophy exam

According to Mengzi, what are the “sprouts” or “hearts” of goodness, how are they related to virtues, and how are they cultivated or destroyed?

3.   What is nonaction (wuwei), why do Laozi and Zhuangzi think it works, and how do they attempt to encourage nonaction?

4.   How do Laozi and Zhuangzi view the natural world? Please be as thorough as possible.

5a. Summarize Han Feizi’s basic position on how to run a kingdom. Discuss both how a ruler should rule his ministers and how he should rule the common people.

5b. Summarize Han Feizi’s arguments against Confucianism.

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hi I Need Help With The Attached Packet For The Multiple Choice I Just Need The

Hi, I need help with the attached packet. For the multiple choice I just need the answer, for the others I need a

quick explanation. 

JOHN CARROLL UNIVERSITYDEPARTMENT OF ECONOMICS AND FINANCEEC 207 Business StatisticsPROBLEM SET 5 Name ______________________ PART ONE: MULTIPLE CHOICE. Please answer all questions choosing the…

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hi I Need Help With The Following Microeconomic Questions 2 How Does Monetary Po

Hi I need help with the following microeconomic questions:

2. How does monetary policy affect the share market?

3a. Referring to the above graph: Given that the economy has moved from A to B what would be the appropriate fiscal policy to achieve potential GDP and why?

3b. Referring to the above graph: If fiscal policy is successful at moving the economy from point B to equilibrium at potential GDP, what happens to unemployment and what impact will this have on the government’s budget?

Please note there are 4 questions!

Thank you!

  • Attachment 1
  • Attachment 2
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hi I Need Help With This Accounting Question Thank You Please Answer Change In C

Hi, i need help with this accounting question.Thank you

please answer change in common share equity, why there is a dividend at year 2022 for question two and for question three , explain

  • Attachment 1
  • Attachment 2
 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hi I Need Help With This Code When I Keep Having Error Message In Line 42 Array

Hi, I need help with this code. when I keep having error message in line 42 “array h”. how can you help me please?

here is the assignment and the code:

Reimplement class Array as a class template. I need to code a main driver program that S-22 A. I need to ask the user for integer values, store them in an integer Array, and then prints the values stored in the integer Array B. Then, ask the user for string values, store them in a string array, and then print the values stored in the string Array

array.h : —————>>>>>>>>>>>>

#ifndef ARRAY_H

#define ARRAY_H

#include<iostream>

using namespace std;

template<class T>

class Array{

private:

 size_t size;

 T *ptr;

 friend std::istream& operator>>(std::istream &in,Array<T> &other){

  for(int i = 0;i<other.getSize();i++){

 in>>other.ptr[i];

}

 }

 friend ostream& operator<<(ostream &out,const Array<T> &other){

  for(int i = 0;i<other.getSize();i++){

 out<<other.ptr[i]<<” “;

}

 }

public:

 explicit Array(int = 10);

 Array(const Array<T>&);

 size_t getSize() const;

 ~Array();

 const Array<T>& operator=(const Array<T>&);

 bool operator==(const Array<T>&) const;

 bool operator!=(const Array<T> &right) const{

  return (*this == right);

 }

 T& operator[](int);

 T operator[](int) const;

};

#endif

array.cpp : —————->>>>>>>>>>>.

#include “array.h”

#include<stdexcept>

#include<iomanip>

template<class T>

Array<T>::Array(int arraySize){

if(arraySize <= 0){

 throw invalid_argument{“Array size must be greater than 0”};

}

size = static_cast<size_t>(arraySize);

ptr = new T[size];

}

template<class T>

Array<T>::Array(const Array<T> &other){

size = other.size;

ptr = new T[size];

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

 ptr[i] = other.ptr[i];

}

}

template<class T>

size_t Array<T>::getSize()const{

return size;

}

template<class T>

T& Array<T>::operator[](int index){

if(index >= 0 && index < size){

 return ptr[index];

}else{

 throw out_of_range{“Subscript out of Range”};

}

}

template<class T>

T Array<T>::operator[](int index)const{

if(index >= 0 && index < size){

 return ptr[index];

}else{

 throw out_of_range{“subscript out of range”};

}

return 0;

}

template<class T>

bool Array<T>::operator==(const Array<T> &other) const{

if(size != other.size){

 return false;

}

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

 if(ptr[i] != other.ptr[i]){

  return false;

 }

}

return true;

}

template<class T>

Array<T>::~Array(){

delete[] ptr;

size = static_cast<size_t>(0);

}

template<class T>

const Array<T>& Array<T>::operator=(const Array<T> &other){

if(&other != this){

 if(size != other.size){

  delete[] ptr;

  size = other.size;

  ptr = new T[size];

 }

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

  ptr[i] = other.ptr[i];

 }

}

return *this;

}

arraycheck.cpp : ————->>>>>>>>>

#include “array.cpp”

int main(){

Array<string> str(3);

str[0] = “style”;

str[1] = “the”;

str[2] = “werty”;

cout<<str;

Array<int> intr(2);

intr[0] = 24;

intr[1] = 25;

cout<<endl;

cout<<intr;

}

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW

Hi I Need Help With This Question Can Someone Please Help Me Thank You Create A

hi I need help with this question can someone please help me thank you

create a algorithm using pseudocode for one of the following actions:

  • Prompting the user to input a set of grades and print the highest value, minimum value, and average.
  • Explain why you chose the type of control structures and/or loops used in your algorithm (if-else, for, while, etc.).
  • Explain how you might revise the algorithm you designed in Module Two based on any new information you learned here.

In Python language I need a Pseudocode and the code so I can see how to do it next time thank you please I need this to be done now thank you please I need help on this homework on how to make a pseudocode for this topic can someone please help me pleaseeeee I keep on asking questions and it keep canceling my questionss

 
"Looking for a Similar Assignment? Get Expert Help at an Amazing Discount!"
ORDER NOW