Questions
34) An independent team from your organization has identified wasted steps that are not necessary for...

34) An independent team from your organization has identified wasted steps that are not necessary for creating the product for your project. They have recommended a few actions for process improvement and have requested that some of the process documents be updated. Which of the following best describes what is being performed?

A.manage quality

B quality controlling

C.monitoring and controlling

D.directing and managing project work

2. While overseeing a new smartphone application development project, you notice your team members are measuring the quality if an item on a pass/fail basis. Which of the

following methods are the team members using?

A.Mutual exclusivity

B. Statistical independence

C Normal distribution

D.Attribute sampling

3. Which of the following process groups serve as inputs to each other?

A.Initiating, Planning

B.Initiating, Executing

C.Executing, Monitoring & Controlling

D.Monitoring & Controlling, Closing

4)You are having an issue with one of the manufacturing processes being used to create the requires parts for routers and switches that your company produces. What should you use to identify the cause of this issue and the effect it may have on your project?

A.Continuous improvement

B.Histogram

CIshikawa disgram

D.Flow chart

In: Operations Management

Analysis and Recommendation Who should be included? How can you get the information to everyone? How...

Analysis and Recommendation

Who should be included? How can you get the information to everyone? How can data visualization of data help, what type? Would the 5 step Business process apply here, which one? And why.

In: Economics

Write a function called remove_punct() that accepts a string as a parameter, removes the punctuation (',',...

Write a function called remove_punct() that accepts a string as a parameter, removes the punctuation (',', '!', '.') characters from the string, and returns the number of punctuation characters removed. For example, if the string contains ['C', 'p', 't', 'S', ',', '1', '2', '1', '.', 'i', 's', 'f', 'u', 'n', '!', '\0'], then the function should remove the punctuation characters. The function must remove the characters by shifting all characters to the right of each punctuation character, left by one spot in the string. This will overwrite the punctuation characters, resulting in: ['C', 'p', 't', 'S', '1', '2', '1', 'i', 's', 'f', 'u', 'n', '\0']. In this case, the function returns 3. Note: if the srtring does not contain any punctuation characters, then the string is unchanged and the function returns 0.

Please write in C

In: Computer Science

Do you think that there will come a point where potential employment candidates are expected to...

Do you think that there will come a point where potential employment candidates are expected to have a basic knowledge of IT security, and perhaps even risk assessment as part of a pre-employment evaluation and qualification?

In: Computer Science

A pension fund manager is considering three mutual funds. The first is a stock fund, the...

A pension fund manager is considering three mutual funds. The first is a stock fund, the second is a long-term government and corporate bond fund, and the third is a T-bill money market fund that yields a sure rate of 4.5%. The probability distributions of the risky funds are:

Expected Return Standard Deviation
Stock fund (S) 15% 35%
Bond fund (B) 6% 29%


The correlation between the fund returns is 0.0517.

What is the Sharpe ratio of the best feasible CAL? (Do not round intermediate calculations. Round your answer to 4 decimal places.)

SHARPE RATIO:

In: Finance

Add the following methods to the singly list implementation below. int size(); // Returns the number...

Add the following methods to the singly list implementation below.

int size(); // Returns the number of nodes in the linked list
bool search(string query); // Returns if the query is present in the list
void add(List& l); // // Adds elements of input list to front of "this" list (the list that calls the add method)

-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

// slist.cpp

#include <string>
#include "slist.h"

using namespace std;

Node::Node(string element) : data{element}, next{nullptr} {}

List::List() : first{nullptr} {}

// Adds to the front of the list
void List::pushFront(string element) {
Node* new_node = new Node(element);
if (first == nullptr) {// List is empty
first = new_node;
} else {
new_node->next = first;
first = new_node;
}
}

Iterator List::begin() {
Iterator iter;
iter.position = first;
iter.container = this;
return iter;
}

Iterator List::end() {
Iterator iter;
iter.position = nullptr;
iter.container = this;
return iter;
}

// Returns number of elements in the list
int List::size() {
// Q1: Your code here


}

// Returns if query is present in list (true/false)
bool List::search(string query) {
// Q2: Your code here


}

// Adds elements of input list to front of "this" list
void List::add(List& l) {
// Q3. Your code here

}

Iterator::Iterator() {
position = nullptr;
container = nullptr;
}

string Iterator::get() const {
return position->data;
}

void Iterator::next() {
position = position->next;
}

bool Iterator::equals(Iterator other) const {
return position == other.position;
}

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Use the following header file, and test program (not to be modified or uploaded!) to verify that your methods works correctly. The expected output is indicated slist.cpp

Note:

1. Please make sure to implement one method at a time (compile, and test). Comment out the unimplemented methods as you work along.

2. Please be sure to check that the code uploaded is indeed the one you intended to upload.

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------

// slist.h file

/* Singly linked list */
#ifndef LIST_H
#define LIST_H

#include <string>

using namespace std;

class List;
class Iterator;

class Node
{
public:
Node(string element);
private:
string data;
Node* previous;
Node* next;
friend class List;
friend class Iterator;
};

class List
{
public:
List();
void pushFront(string element);
Iterator begin();
Iterator end();
int size();
bool search(string query);
void add(List& l);
private:
Node* first;
friend class Iterator;
};

class Iterator
{
public:

Iterator();
string get() const;
void next();
bool equals(Iterator other) const;
private:
Node* position;
List* container;
friend class List;
};

#endif

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

// slist_test.cpp

#include <string>
#include <iostream>
#include "slist.h"

using namespace std;

int main()
{
List names1;

names1.pushFront("Alice");
names1.pushFront("Bob");
names1.pushFront("Carol");
names1.pushFront("David");

// names1 is now - David Carol Bob Alice

int numele = names1.size(); // Q1: TO BE COMPLETED
cout << "Number of elements in the list: " << numele << endl;

string query = "Eve";
bool present = names1.search(query); // Q2: TO BE COMPLETED
if (present) {
cout << query << " is present" << endl;
} else {
cout << query << " is absent" << endl;
}


List names2;
names2.pushFront("Eve");
names2.pushFront("Fred");

// names2 is now - Fred Eve

// Insert each element of input list (names1) to front of calling list (names2)
names2.add(names1); // Q3: TO BE COMPLETED

// Print extended list
// Should print - Alice Bob Carol David Fred Eve
for (Iterator pos = names2.begin(); !pos.equals(names2.end()); pos.next()) {
cout << pos.get() << " ";
}
cout << endl;
return 0;
}

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Thank you for your time and help

In: Computer Science

What is Information Technology Standards ? Please give a real world example

What is Information Technology Standards ? Please give a real world example

In: Computer Science

Hamilton stated in The Federalist No. 1 that he believed “the vigor of government is essential...

Hamilton stated in The Federalist No. 1 that he believed “the vigor of government is essential to the security of liberty.” Do you agree? If so, why? If not, why? What do you think he meant by “vigor”?

In: Psychology

What is Information Technology Standards? Please give a real world example?

What is Information Technology Standards? Please give a real world example?

In: Computer Science

Question 4 a) An aluminum wire 7.5m long is connected in parallel with a copper wire...

Question 4
a) An aluminum wire 7.5m long is connected in parallel with a copper wire 6m long. When a current of 5A is passed through the combination, it is found that the current in the aluminium wire is 3A. If the diameter of the aluminium wire is 1mm, determine the diameter of the copper wire. Assume the resistivity of copper to be 0.017μΩm and that of aluminium to be 0.028 μΩm.
b) Two capacitors A and B are connected in series across a 100V supply and it is observed that the p.ds across them 60V and 40V respectively. A capacitor of 2μF capacitance is now connected in parallel with A and the p.d across B rises to 90V. Calculate the capacitance of A and B in microfarads. EV[8marks]
c) Give four 1Ω resistors,state how they must be connected to give an overall resistance of (a) ¼ Ω (b) 1Ω (c) 4/3Ω (d) 5/2 Ω, all four resistors being connected

In: Electrical Engineering

Use the method of successive approximations to determine the pH and concentrations of H2A, HA–, and...

Use the method of successive approximations to determine the pH and concentrations of H2A, HA–, and A2– in a solution of 0.00250 M monopotassium fumarate (KHA). The pKa values for fumaric acid are 3.02 (pKa1) and 4.48 (pKa2). PH= ? [H2A]= ? [HA-] = ? [A2-]= ?

In: Chemistry

1. What is IT governance and what is a real world example?

1. What is IT governance and what is a real world example?

In: Computer Science

The APA ethics code expresses ethical standards for external factors including resolving ethical issues, human relations,...

The APA ethics code expresses ethical standards for external factors including resolving ethical issues, human relations, advertising and public statements, research and publication, and therapy. Why do you believe the APA established these standards? What is an ethical dilemma that could arise under one of these standards? Would the dilemma still exist if there was no established standard? Support your position.

In: Psychology

A 15/16 in. wide key has depth of 5/8 in. It is 12 inches long and...

A 15/16 in. wide key has depth of 5/8 in. It is 12 inches long and is to be used on a 200 hp, 1160 rpm, squirrel-cage induction motor. The shaft diameter of 3 7/8 inches. The maximum running torque is 200% of the full-load torque. Compute the maximum torque (ans: 21,733 in-lb) Please show solution.

In: Mechanical Engineering

6. Sketch how a 7-input LUT is configured in the standard Virtex 7 Series SLICEL design?

6. Sketch how a 7-input LUT is configured in the standard Virtex 7 Series SLICEL design?

In: Electrical Engineering