What does cash on hand measure?
A. The value at which an asset is carried on the company’s financial “books” and shown on the Balance Sheet.
B. The cash generated by a company’s core operations.
C. Highly liquid assets, such as money market funds or government bonds, that are easily converted into cash within 90 days without risk of a change in value.
D. Cash on hand measures the amount of available cash and low-risk, liquid cash-like assets you can convert to cash in 90 days or less.
In: Accounting
In: Computer Science
You are constructing a portfolio for an investor with a risk aversion of A=10. You can invest their money in a riskless asset with a return of 0.015, or a risky asset with an expected return of 0.097 and a standard deviation of 0.06. What proportion of their assets should you put in the risky asset?
In: Finance
No handwriting or photo (tax accounting)
To make income taxable, income must be realized and recognized. Explain in your own words the difference between income realization and income recognition, then provide a short numerical example to indicate the difference
In: Accounting
The following statement is TRUE about Lean
A.Lean is about improving processes. All businesses have processes, so all businesses can improve and benefit from adopting lean.
B.Lean means forcing people to work faster and harder with fewer resources.
C.Lean is all about cost-cutting and results in much of the workforce getting fired.
D.Lean will cost a lot of money to introduce in an organization
E.
Just-In-Time is when parts/supplies arrive at the last possible moment. |
In: Operations Management
A critical dimension of the service quality of a call center is the wait time of a caller to get to a sales representative. Periodically, random samples of three customer calls are measured for time. The results of the last four samples are in the following table:
Sample | Time (Sec) | ||
---|---|---|---|
1 | 495 | 501 | 498 |
2 | 512 | 508 | 504 |
3 | 505 | 497 | 501 |
4 | 496 | 503 | 492 |
Suppose that the standard deviation of the process distribution is 5.77. If the specifications for the access time are 500±18500±18 seconds, is the process capable? Why or why not? Assume three-sigma performance is desired.
In: Operations Management
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 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 (',', '!', '.') 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 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 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 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
In: Computer Science
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?
In: Computer Science