Questions
Which atom (Ge or C) has the smaller first ionization energy? Enter the chemical symbol in the space provided.

1. Complete the following table.

Element

Zeff

Atomic orbital designation
for highest energy
valence electron (i.e., 2s)

Ge



C




2. Which atom (Ge or C) has the smaller first ionization energy? Enter the chemical symbol in the space provided.



3. Which one of the following statements best explains the trend observed in part 2?

A. Ionization energy increases down a group. The valence electrons occupy a higher energy atomic orbital, thereby requiring more energy to remove the valence electron.
B.Ionization energy decreases down a group. Elements lower in a group have larger atomic radii. The valence electrons are further from the nucleus so that the attraction between the valence electrons and nucleus is decreased and the energy required to remove the valence electrons is less.
C. Ionization energy decreases to the right across a period. Within a period the increasing number of valence electrons result in stronger electron-electron repulsion thereby decreasing the amount of energy required to remove the valence electrons.
D. Ionization energy increases to the right across a period. Within a period valence electrons of elements to the right have a largerZeff and therefore feel a stronger attraction to the nucleus, requiring more energy to remove the valence electrons.

In: Chemistry

Gross Domestic Product (GDP) is the final goods and services produced in an economy or country,...

Gross Domestic Product (GDP) is the final goods and services produced in an economy or country, within a specific period of time. It does not include the distribution of resources in the economy (Mankiw 2017). After viewing the power point provided I would say that using the GDP method would not give a good measurement of the national economic well-being. For example, GDP does not include intermediate goods: this is when an ingredient or service is used to help make the product, nonmarket products: this includes products that customers do not pay for, illegal goo0ds, and bad and resource depletion: this is environment pollution, water contamination and resources that are depleted. When you think of quality of life, you think of the way one would consider what a meaningful life is. To enjoy life sometimes you have to do things that will be in your leisure time, or enjoying things that you would not pay for, or even just purchasing products that will be able to entertain you. These may not all include spending money however, if leisure time is not included in the GDP  how can it accurately measure the economics well- being. In 2017 the top country with the highest GDP is the USA with a nominal GDP of 19.39 trillion dollars, while the country ranking number is China with a nominal GDP of 12.01 trillion dollars.  

Comment on this article in about 120 words

In: Economics

Cost of Quality Report Meagher Solutions Inc. manufactures memory chips for personal computers. An activity analysis...

Cost of Quality Report

Meagher Solutions Inc. manufactures memory chips for personal computers. An activity analysis was conducted, and the following activity costs were identified with the manufacture and sale of memory chips:

a. Identify the cost of quality classification for each activity.

Quality Activities Activity Cost Quality Cost Classification
Correct shipment errors $150,000
Disposing of scrap 95,000
Emergency equipment maintenance 125,000
Employee training 50,000
Final inspection 80,000
Inspecting incoming materials 60,000
Preventive equipment maintenance 40,000
Processing customer returns 90,000
Scrap reporting 45,000
Supplier development 15,000
Warranty claims 250,000
Total $1,000,000

b. Prepare a cost of quality report. Assume that the sales for the period were $4,000,000. If required, round percents to one decimal place.

Meagher Solutions Inc.
Cost of Quality Report
Quality Cost Classification Quality Cost Percent of Total Quality Cost Percent of Total Sales
Prevention $ % %
Appraisal % %
Internal failure % %
External failure % %
Total $ % %

c. The category with the fewest number of quality activities is . Nearly fifty percent of the quality activity costs are . The highest single cost is warranty claims, which is a(n) . Disposing of scrap, emergency equipment maintenance, and scrap reporting are all .

In: Accounting

Modified Du Pont System Integrated Analysis of a Company’s Profitability LAURA Incorporation (LAR) is a well-established...

Modified Du Pont System

Integrated Analysis of a Company’s Profitability

LAURA Incorporation (LAR) is a well-established and reasonably successful company in the rather-competitive apparel business, focusing on streetwears. In spite of its outstanding position in its industry (e.g.with the highest number of followers on Instagram and Facebook in comparison to other streetwears merchants/houses), LAR managers wish to assess the firm’s strengths and/or weaknesses for managerial purposes. Details of LAR and its industry are given as follows:

LAR Industry
EPS $ 9.5 $ 5.5
ROE N/A 12%
Profit Margin N/A 4%
Total asset turnover N/A 1
Equity multiplier N/A 3
Stock price $ 77 -
# of shares outstanding (shrs) 1,000,000 - -
Equity book value per share $40 - -
Sales $ 70,000,000 -
Total Asset $ 100,000,000 -

(Note: N/A stands for “not available” and that you need to calculate it.)

Questions:

1) Identify whether investors would be happy with LAR performance based on Modified DuPont System. Identify the firm’s strengths and weaknesses.

2) Provide a suggestion/note to LAR management on how the firm should improve or maintain various aspects of their corporate finance (based on Modified DuPont System) through a 3-page executive summary document. Be insightful and clear as much as possible.

In: Finance

5. Eastview’s police department hires a new class of 50 trainees every quarter to begin the...

5. Eastview’s police department hires a new class of 50 trainees every quarter to begin the 3-month police academy program. Four nearby communities have struggled in running their own police academies, partly due to their own city funding but also because their class size is much smaller (ranging from 5 to 15 trainees in each city). Eastview’s newspaper recently ran a story about the city’s intent to build a new training facility for the police academy. The four communities want to partner with Eastview to have Eastview provide their academy program rather than hosting it themselves. Using the information in Worksheet 8.3, analyze how the cost would vary from the lowest enrollment to the highest enrollment if Eastview and the four surrounding communities cooperated on a joint academy. The academy provides room and board to all trainees for a period of 11 weeks.

Trainees Eastview Only All- Low All High
Room cost per person p/week $110.00
Food cost per person p/week $94.90
People per classroom 55
Cost estimate per classroom p/week $1,000.00
Instructor per classroom p/week $1,500.00
Academy material per person total $5,000.00
Number of weeks 11
Total

In: Finance

in the c programming language input is given in the form The input will be of...

in the c programming language input is given in the form The input will be of the form [number of terms] [coefficient k] [exponent k] … [coefficient 1] [exponent 1] eg.

5 ─3 7 824 5 ─7 3 1 2 9 0

in this there are 5 terms with -3x^7 being the highest

/* 
  Initialize all coefficients and exponents of the polynomial to zero.
 */
void init_polynom( int coeff[ ], int exp[ ] )
{

   /* ADD YOUR CODE HERE */

}  /* end init_polynom */


/*
  Get inputs from user using scanf() and store them in the polynomial.
 */
void get_polynom( int coeff[ ], int exp[ ] )
{

   /* ADD YOUR CODE HERE */

}  /* end get_polynom */


/*
  Convert the polynomial to a string s.
 */
void polynom_to_string( int coeff[ ], int exp[ ], char s[ ] )
{

   /* ADD YOUR CODE HERE */

}  /* end polynom_to_string */



/*
  Evaluate the polynomial for the value of x and store the result p(x) in variable result.
 */
void eval_polynom( int coeff[ ], int exp[ ], double x, double *result )
{

   /* ADD YOUR CODE HERE */

}  /* end eval_polynom */



/*
  Add two polynomials and the result is stored in the first polynomial (arrays co1[] and ex1[]).
 */
void add_polynom( int co1[ ], int ex1[ ], int co2[ ], int ex2[ ] )
{

   /* ADD YOUR CODE HERE */

}  /* end add_ polynom */

In: Computer Science

Please Write-In Python Language (Topic: Word frequencies) Method/Function: List<Token> tokenize(TextFilePath) Write a method/function that reads in...

Please Write-In Python Language (Topic: Word frequencies)

Method/Function: List<Token> tokenize(TextFilePath)
Write a method/function that reads in a text file and returns a list of the tokens in that file. For the purposes of this project, a token is a sequence of alphanumeric characters, independent of capitalization (so Apple, apple, aPpLe are the same token). You are allowed to use regular expressions if you wish to (and you can use some regexp engine, no need to write it from scratch), but you are not allowed to import a tokenizer (e.g. from NLTK), since you are being asked to write a tokenizer.

Method:  Map<Token,Count> computeWordFrequencies(List<Token>)
Write another method/function that counts the number of occurrences of each token in the token list. Remember that you should write this assignment yourself from scratch so you are not allowed to import a counter when the assignment asks you to write that method.

Method: void print(Frequencies<Token, Count>)
Finally, write a method that prints out the word frequency count onto the screen. The print out should be ordered by decreasing frequency (so, the highest frequency words first).

Print the output in this format:

<token> -> <freq>

Please give me some notes about the codes, thanks!!!

In: Computer Science

Guthrie Enterprises needs someone to supply it with 142,000 cartons of machine screws per year to...

Guthrie Enterprises needs someone to supply it with 142,000 cartons of machine screws per year to support its manufacturing needs over the next five years. It will cost $1,820,000 to install the equipment necessary to start production; you’ll depreciate this cost straight-line to zero over the project’s life. You estimate that in five years this equipment can be salvaged for $152,000. Your fixed production costs will be $267,000 per year, and your variable production costs should be $9.60 per carton. You also need an initial investment in net working capital of $132,000. The tax rate is 22 percent and you Year Market Value ($ millions) 1 $ 14.70 2 11.70 3 9.20 4 1.95 4 | P a g e require a return of 12 percent on your investment. Assume that the price per carton is $16.20. a. Calculate the project NPV. b. What is the minimum number of cartons per year that can be supplied and still guarantee a zero NPV? Verify that the quantity you calculated is enough to at least have a zero NPV. c. What is the highest fixed costs that could be incurred and still guarantee a zero NPV? Verify that the fixed costs you calculated are enough to at least have a zero NPV. Show step by step solution

In: Finance

1. A method of comparing job worth that uses broad written descriptions and definitions to place...

1. A method of comparing job worth that uses broad written descriptions and definitions to place jobs into "levels" is:

Job classification

Point factor

Factor comparison

Job ranking

2.

What is the first step in the training process?

Group of answer choices

Select appropriate training methods

Determine specific training needs

Determine training learning objectives

Evaluate transfer of training

3.

Financial compensation, benefits, and non-financial compensation like appreciation together make up __________.

Group of answer choices

non-discretionary compensation

indirect compensation

full compensation

total compensation

4.

In manufacturing firms where work is organized around teams, it is common for employees to be paid more as they learn how to do different jobs within the team. Tying pay to the ability to do different jobs is an example of __________.

Group of answer choices

commission pay

lump sum pay

merit pay

skill-based pay

5.

Pay mix refers to:

Group of answer choices

The difference between the highest and lowest paid employees in the company

The extent to which pay is spread out among employees in the same job

The way a person's total compensation is broken down into different types

The number of grades in a company's pay structure

In: Operations Management

An accounting professional requires at least two skill sets. The first is to be technically competent....

An accounting professional requires at least two skill sets. The first is to be technically competent. Knowing how to capture, manage, and report information is a necessary skill. Second, the ability to assess manager and employee actions and biases for accounting analysis is another skill. For instance, knowing how a person is compensated helps anticipate information biases. Draw on these skills and write a half-page memo to the financial officer on the following practice of allocating overhead.
Background: Assume that your company sells portable housing to both general contractors and the government. It sells jobs to contractors on a bid basis. A contractor asks for three bids from different manufacturers. The combination of low bid and high quality wins the job. However, jobs sold to the government are bid on a cost-plus basis. This means price is determined by adding all costs plus a profit based on cost at a specified percent, such as 10%. You observe that the amount of overhead allocated to government jobs is higher than that allocated to contract jobs. These allocations concern you and motivate your memo.

In: Accounting