in C++,
#include<iostream>
using namespace std;
const int NUM = 10;
void prepareArr(int a[]);
int countEven (int b[]);
int main() {
int arr[NUM];
// write a statement to call prepareArr to set values for the array
// write a statement to call countEven and print the data returned
for(int i = 0; i<NUM; i++)
cout << arr[i] <<" ";
cout <<endl;
return 0;
}
void prepareArr(int a[])
{
//randomly generate NUM integers in the range [0,99] and save them in the array parameter.
}
int countEven (int b[])
{
//count the number of even integers in the array parameter and return the number, note that the size of the array is specified with NUM.
}
Previous
In: Computer Science
Change Management is a process used to ensure that overall business risk is minimized by responding to customers business requirements while minimizing value and reducing incidents, disruption, and re-work. Of the following is seven Rs of Change Management (Raised; Reason; Return; Risks; Resources; Responsible; Relationship) Discuss.
In: Operations Management
Analyze the cost data below for the Costbusters Company.
Graph the percent of quality costs by product?
What are the dollar costs for each cost of quality category, by product? Graph
How might this information be used to help define a Six Sigma project?
| PRODUCT A | PRODUCT B | PRODUCT C | |
| Total Sales | |||
| Total quality cost as a percent of sales | 24% | 19% | 15% |
| External Failure | 35% | 22% | 8% |
| Internal Failure | 52% | 29% | 24% |
| Appraisal | 10% | 38% | 38% |
| Prevention | 3% | 11% | 30% |
Can this problem be solved in minitab with graphs or Excel showing each steps? This is for my lean six sigma class
In: Computer Science
A vapor-compression refrigeration system for a household
refrigerator has a refrigerating capacity of 1650 Btu/h.
Refrigerant enters the evaporator at -15°F and exits at 20°F. The
isentropic compressor efficiency is 75%. The refrigerant condenses
at 125°F and exits the condenser subcooled at 100°F. There are no
significant pressure drops in the flows through the evaporator and
condenser.
For Refrigerant 134a as the working fluid, determine:
(a) the evaporator and condenser pressures, each in
lbf/in.2
(b) the mass flow rate of refrigerant, in lb/min.
(c) the compressor power input, in horsepower.
(d) the coefficient of performance.
In: Mechanical Engineering
3) Why is the new law allowing the sale of marijuana in Colorado so controversial?
4) Why are the surrounding states suing the state of Colorado?
5) What are the short-term and the long-term effects of smoking marijuana 3-7 times per week for 3 years or more? ..... cognition/memory; male sexual reproduction; motivation Search entries or author
In: Economics
Objective: Upon completion of this program, you should gain experience with overloading basic operators for use with a C++ class.
The code for this assignment should be portable -- make sure you
test with g++ on linprog.cs.fsu.edu before you submit.
Task
Create a class called Mixed. Objects of type Mixed will store and manage rational numbers in a mixed number format (integer part and a fraction part). The class, along with the required operator overloads, should be written in the files "mixed.h" and "mixed.cpp".
Details and Requirements
Mixed m1(3, 4, 5); // sets object to 3 4/5 Mixed m2(-4, 1, 2); // sets object to -4 1/2 Mixed m3(0, -3, 5); // sets object to -3/5 (integer part is 0). Mixed m4(-1, -2, 4); // bad parameter combination. Set object to 0.
The other constructor should expect a single int parameter with a default value of 0 (so that it also acts as a default constructor). This constructor allows an integer to be passed in and represented as a Mixed object. This means that there is no fractional part. Example declarations:
Mixed m5(4); // sets object to 4 (i.e. 4 and no fractional part). Mixed m6; // sets object to 0 (default)Note that this last constructor will act as a "conversion constructor", allowing automatic type conversions from type int to type Mixed.
integer numerator/denominator
i.e. the integer part, a space, and the fraction part (in numerator/denominator form), where the integer, numerator, and denominator parts are all of type int. You may assume that this will always be the format that is entered (i.e. your function does not have to handle entry of incorrect types that would violate this format). However, this function should check the values that come in. In the case of an incorrect entry, just set the Mixed object to represent the number 0, as a default. An incorrect entry occurs if a denominator value of 0 is entered, or if an improper placement of a negative sign is used. Valid entry of a negative number should follow this rule -- if the integer part is non-zero, the negative sign is entered on the integer part; if the integer part is 0, the negative sign is entered on the numerator part (and therefore the negative sign should never be in the denominator). Examples:
Valid inputs: 2 7/3 , -5 2/7 , 4 0/7 , 0 2/5 , 0 -8/3 Invalid inputs: 2 4/0 , -2 -4/5 , 3 -6/3 , 0 2/-3
Examples: 0 , 2 , -5 , 3/4 , -6/7 , -2 4/5 , 7 2/3
Mixed m(1, 2, 3); // value is 1 2/3 Mixed z; // value is 0 Mixed r = m / z; // r is 0 (even though this is not good math)
Mixed m1(1, 2, 3); // 1 2/3 Mixed m2(2, 1, 2); // 2 1/2 cout << m1++; // prints 1 2/3, m1 is now 2 2/3 cout << ++m1; // prints 3 2/3, m1 is now 3 2/3 cout << m2--; // prints 2 1/2, m2 is now 1 1/2 cout << --m2; // prints 1/2 , m2 is now 0 1/2
In: Computer Science
Change management is an important part of business management. Using Change Management, organizations can respond to customer requirements while minimizing value and reducing incidents and disruption. Why is organizational change management important? What are the benefits, risks, and impacts?
In: Operations Management
Explain why this approach was taken by considering the stage in the product life cycle as well as the promotion objectives. TOPIC BOBBI BROWN
SUBJECT: MARKETING
In: Operations Management
The seniors at Weseltown High School are voting on where to go for their senior trip. They are deciding on Angel Falls(A), Bend Canyon(B), Cedar Lake(C) or Danger Gap(D). The results of the preferences are:
DABC = 120
ACBD = 100
BCAD = 90
CBDA = 80
CBAD = 45
a. Who is the Condorcet candidate?
b. Is there a majority winner? If not, is there a plurality winner? Does this violate the Condorcet criterion?
c. Who wins the Borda count? Does this violate the Condorcet criterion?
d. Who wins using the Hare method? Does this violate the Condorcet criterion?
e. Who wins using the pairwise comparison method? Does this violate the Condorcet criterion?
In: Mechanical Engineering
Suppose you worked at a company that implemented a new wellness policy that required that you take health screenings each year for weight, cholesterol, tobacco use, and other health indicators. According to the wellness policy, if you do not achieve a high enough wellness score you will be required to make changes in your diet, exercise habits, or eliminate tobacco. Those who do not comply with the wellness policy face financial penalties. How would this wellness policy make you feel about working for this employer? Would you feel better (the employer is being unfair by trying to regulate my health), worse (the employer is being unfair by trying to regulate my life), or indifferent to your employer for having this wellness policy? How would the policy affect your job behavior? Would you increase you effort, maintain it, decrease it, or start looking for another job? What explains your positive or negative reactions to this wellness policy?
In: Operations Management
Cancer is considered by many a primarily genetic disease. However,what role does a lifestyle choice, such as smoking or a high cholesterol diet, play in the development of cancer? (CLO 4) Support your post through proper citations.
In: Biology
IN Java please
1. Define a class called ListExercise containing one data field: a list of integer. Create two constructor methods, one accessor(getter) method and one mutator(setter) method for the ListExercise class.
2. Implement a reverse(int[] a) method to reverse the elements in the list. For example, reverse(Arrays.asList(new int[ ]{1,2,3})) should return {3,2,1}.
3. Implement a swapValue(List a, int i, int j) to swap the values in index i and j.
4. Implement a pickMost(int[] a) method to pick the most frequent value. For example pickMost(Arrays.asList(new int[] {1, 2, 3})) returns 1 or 2 or 3 and pickMost(Arrays.asList(new int[]{1,1,2})) returns 1.
5. Implement a checkPathenthesis(String exp) method to check if a string has matching pairs of parenthesis. For example, checkPathenthesis(“)))(((“) should return false and checkPathenthesis(“(())“) returns true.
In: Computer Science
In: Math
In: Computer Science
Instructions
Write a program in C++ that create a LookupNames project.
In the main function:
Ask the user to enter a number of names, X to quit input.
Store the names in an array.
Also use a counter variable to count the number of names
entered.
Write a function displayNames to display the
names.
The function must receive the array and the counter as
parameters.
Write a function called lookupNames.
The function must receive the array and the counter as
parameters.
Ask the user to enter a letter.
Display all the names with the letter that was entered as the first
letter of the name.
Call the displayNames and lookupNames functions from the main function.
Tip: declare your functions above the main() function:
void displayNames(char array[][60], int count)
{
// function code here
}
int main()
{
// main code here
displayNames(names, number);
// possible more code here
}
Tip2: make sure your function parameter matches the data type
you send as an argument to that function.
In the above example, names and array should have
the same data type, and number and count should
have the same data type.
Enter name (X to quit input): John Peterson
Enter name (X to quit input): Diane Lee
Enter name (X to quit input): James Smith
Enter name (X to quit input): Frank Xaba
Enter name (X to quit input): Jacky Mokabe
Enter name (X to quit input): x
List of Names
John Peterson
Diane Lee
James Smith
Frank Xaba
Jacky Mokabe
Enter a letter: J
Names starting with the letter J
John Peterson
James Smith
Jacky Mokabe
In: Computer Science