A*A+B*B=C*C A=? B=8.1 C=6.1 Find A

A*A+B*B=C*C A=? B=8.1 C=6.1 Find A

Select the industry in which you work, worked or would like to work, or simply have an interest in..

Select the industry in which you work, worked or would like to work, or simply have an interest in. Which companies are the leaders in that particular industry?  What practices have made them become a leader?  What are the risks those companies face?

perf 110 music research report

In this written assignment, you will choose a significant musical work and discuss its history, its critical reception, aspects of its musical style, and your own subjective assessment as to its status as a “masterpiece”.

You will be evaluated on your ability to demonstrate both innovative thinking in assessing and responding subjectively to the artistic merit of the works at hand, and aesthetic sensibility by utilizing the appropriate terminology and stylistic considerations to support your claims.

TOTAL QUALITY MANAGEMENT WK 3

NEED ELABORATED ANSWERS.

Using the globalEdge website (globaledge.msu.edu), complete Exercise 1

Using the globalEdge website (globaledge.msu.edu), complete Exercise 1 

iLab 1

systems lab

Once the Application has started up and you are at the Start Page, select the create a new project option. When presented with the New Project window like the one below, be sure that you have highlighted Console Application under the Templates window. Now give the new project the name INV_GRAB in the Name field, and have the location field pointing to the F:SAI430 folder you have on the F: drive. The diagram below depicts what your New Project window should look similar to.

Once you have done this, select OK to complete this operation. You may get a “Microsoft Development Environment” message box stating that the project location is not a fully trusted .NET runtime location. You can ignore this and just select OK. You should now see your new project listed in the Solution Explorer window on the upper right hand corner of the editor window. You are now ready to begin setting up your form.

STEP 2: Setting Up a Database Connection

Back to Top

The first step now is to set up a database connection with Access and then a data set that can be used to transport the data from the database to the application to be written to a file. For the purposes of this lab and your project, you will only need data from two columns in the ITEMS table of the INVENTORY database, but we will control that with the code written later. The following steps will lead you through the process of setting up the connection.

    • To begin, you need to add the following three namespaces to the top of your application code:

using System.IO;

using System.Data;

using System.Data.OleDb;

Since you are going to be not only connecting to a database but also writing data to a file, you will need all three of these listed.

    • Now you can set up the connection to your Access database that you downloaded and put in your folder. The actual connection string is @”Provider=Microsoft.JET.OLEDB.4.0; data source=F:inventory.mdb”. This is a standard connection string for MS Access. You will want to precede this with the command – string conString = so that the finished connection looks like this.

string conString = @”Provider=Microsoft.JET.OLEDB.4.0; data source=F:SAI430inventory.mdb”;

This is simply defining a string variable named conString and assigning the connection string to it. We will use this variable later.

    • Now we need to define an OleDbConnection that will be used to connect to the database. To do this you will need to define a connection variable as a new OleDbConnection and point it to the connection string defined in the previous step. Your code should look like the following.

OleDbConnection conn = new OleDbConnection(conString);

Now you can connect and open the database with the following command entered right below the line above.

conn.Open();

    • Last, we need to declare a variable that will be used later on. Although this really has nothing to do with setting up the database connection, this is as good a place as any to do this. You need to define a single variable named rowCount as an integer and initialize it to zero. Your code should look like the following.

int rowCount = 0;

STEP 3: Setting Up a Data Set

Back to Top

Now you will need to set up a Data Set that will be used to hold the data that is pulled from the database so that it can be processed. This dataset will hold all of the records from the item table. We will use this data to write out our inventory list to a file.

    • You will need to create a query string that will be used to get the data in the “item” table. This will be a simple select statement that will get all of the data from the table (we will be specific regarding what is needed later). You will need to define a string variable for this query string similar to what you did for the connection string. When finished, your new string should look like the following:

string selectStr = “SELECT * FROM item”;

There is a variable we will need to use later on, so we might as well define and initialize at this point. The new variable is an integer data type and needs to be named rowCount. Initialize it to zero.

    • Now you need a new OleDbDataAdapter to work with the dataset. To do this you will need to define an object named DataAdapter as a new OleDbDataAdapter and then use the selectStr created above and the connection variable create to load it. Your code should look like the following:

OleDbDataAdapter DataAdapter = new OleDbDataAdapter(selectStr, conn);

    • Now we can define the data set like the following:

DataSet dataSet = new DataSet();

This is a simple definition that we can use along with the DataAdapter Fill method to fill the data set like the following:

DataAdapter.Fill(dataSet, “item”);

    • We now have one more step that will allow us to define which columns we want to get data from later on. We need to define a DataTable object based on the new dataSet. To do this you will need the following code:

DataTable dataTable = dataSet.Tables[0];

STEP 4: Getting and Writing the Data

Back to Top

So far we have put everything together to get the data from the database into our program. Now we need to deal with writing the data out to a file. To do this we will be using the StreamWriter class and some of its objects.

We must declare a new instance of the StreamWriter so that we can obtain its methods. At the same time we can also initialize the new writer to point to where we want the file to be written to. Your code should look like the following.

StreamWriter sw = new StreamWriter(@”F:sai430INV_GRB.txt”, false);

Now we are ready to set up the processing to loop through our data set, pull the data we need into a file, and print it out. To help with this there is a file in Doc Sharing named Lab1_code.txt. The code in this file can be copied and pasted into the area of the code section you are working, just below the line you added above. Be sure to change the directory path to match yours for the output file.

You are now ready to make your last build. If everything has been done correctly, you should end up with no error messages and clean build. Once this has been done then you are ready to execute the application by selecting Debug => Start from the main menu. If all goes well you should be able to find your output file in the location listed in the program.

STEP 5: Building the Application

Back to Top

You are now ready to make your last build, but first you need to make two changes to the properties for your project.

Changing the build option for 32-bit.

We need to build the application as a 32-bit application so it will work with the Microsoft ODBC drivers for Access; to do this you will need to select Project => INV_GRAB Properties from the main menu. Now select the Build tab on the side of the properties box, and then in the drop down list next to Program Target, select the X86 option. This will allow the application to build as a 32-bit application. Do not close the properties window yet though, because there is one more step.

Setting the Security option:

Now select the Security tab on the left side. Check the Enable ClickOnce Security Settings check box. This is a full trust application option, which is what you want.

Now select File => Save All from the main menu and then close the properties window.

Now you can either build or re-build the application. If everything has been done correctly, you should end up with no error messages and clean build. Once this has been done, you are ready to execute the application by selecting Debug => Start from the main menu. If all goes well you should be able to find your output file in the location listed in the program.

STEP 6: Testing Your Application

Back to Top

You first want to make sure that you have the Inventory.MDB database in the SAI430 folder on the F: of your directory structure in Citrix. This should also be the same location of your source code project and the location to which you have pointed the program to write the output file. In order to test the application and generate the output document you will need to turn in, do the following:

  1. Again, make sure the application, inventory.mdb, and the output path in the application are all using the SAI430 directory on the F: drive in Citrix.
  2. Execute your program.
  3. Check to make sure that the output file has the correct data in it.
  4. Submit this file along with your code to be graded

David Yaseen American Public University System March 03, 2019 Abstract Foreign capital and…

David Yaseen

American Public University System

March 03, 2019

Abstract

Foreign capital and investment is important for a business to expand in other markets of the world. The objective of this paper is to present the details regarding the operation and the entry strategy of DynCorp International which is one of the reputed aviation service providers in the world. This company is deciding to enter the markets of Bosnia, Bolivia and Somalia. Different details and information have been furnished in the analysis of the paper.

1. Examine the countries where your company does business according to where they rank on the Hofstede cultural dimensions. Think of some examples of how a U.S. manager would need to modify his or her behavior when communicating with associates from one or more of these foreign countries.

There are many countries with which DynCorp International does business. These include Bolivia, Somalia, Angola, Haiti, Kosovo and many more. Among these countries, Bolivia, Bosnia, and Somalia is the target country of the company. These countries are also members of the World Bank and IMF as well. Although Somalia is more active than the other two countries, they are no less involved in the operation of the World Bank and the IMF. Apart from that Bolivia is also associated with the World trade organisation as well. All the countries receive monetary assistance from the side of the institutions and hence abide by the rules and the regulations (Upson, Sanchez & Smith, 2017). A manager from the US needs to modify his behaviour while talking to officials of one these countries. Communication between the officials needs to be professional and polite.

2. Does your company operate in any countries that are considered very politically or economically risky?

Yes, DynCorp International operates in countries which are risky to operate. For example, Somalia has a lot of political turmoil inside the country. The country has not been able to perform in terms of economy in the last few years which have also reflected in the median income and the job growth of the country as well. Low job grown and decreasing median income has resulted in protest and unrest from the side of the people of the country. Apart from that, Bolivia is also moderately risky to operate as people of the country have a history to protest against the president of the country (Tulung, 2017). These protests can create a problem for the business and hence makes the operation of the company risky.

3. Does your company primarily operate in civil law or common law countries? What are some of the implications of this?

All three countries where DynCorp International is working are mainly following common law. Therefore, none of the countries have laws and regulations codified or written in the constitution. Apart from that, judicial decisions are binding in nature and hence different from the common law countries. One of the biggest advantages of common law countries is that nothing is prohibited if it is not against the interest of the nation as a whole. This gives flexibility to the company in terms of improvisation and operation (Klingebiel & Joseph, 2016). Another implication of the fact that DynCorp International operating in common law countries is that government laws have no out of the line influence on the operation of the company.

4. Has your company purchased any insurance from the U.S. Overseas Private Investment Corporation (OPIC)?

Yes, DynCorp International has purchased insurance from OPIC in order to secure the operation in the emerging countries. OPIC allows companies to have a strong foothold in the emerging economies of the world. OPIC also provides matching security to the investors which also ensure a healthy inflow of investment in the country where DynCorp International operates (Ahi, Baronchelli, Kuivalainen & Piantoni, 2017).  One of the biggest advantages of the OPIC is that it adheres to the laws and the regulations of human rights and hence pushes the clients towards a healthy operation as well.

5. What are some key intellectual property protections, if any, that your company possesses? When do these protections (e.g., patents) expire? How does your company intend to recoup lost revenues due to any patent or other intellectual property protection expirations?

There are a number of intellectual property protections by DynCorp International which increases the value of the goods and the services of the country. It holds the patent for the transportation of cargo within the selected countries. Apart from that, cargo operation and freight corridor management is also another area where the company has its intellectual property protected. That means no other company in these countries can claim the goods and the services until the patents expire (Williams & Vrabie, 2018). Most of the patents of the company expire in 5-7 years and the company is trying to use competitive pricing in order to increase the revenue so that lost revenues due to the patent can be recovered from the market.

6. Find the Corruption Perceptions Index (CPI) score for two countries where your selected company does business, one country with a relatively high score and one country with a relatively low score. Search for news stories about corporate financial scandals in these two countries. Prepare a short summary of news stories about financial scandals in these countries. Briefly describe what you perceive are the risks of corruption, such as paying bribes, that your selected company might face in these countries.

Somalia scores 10 out of 100 in the corruption perception index whereas Bosnia scores 38 which are comparatively better than that of Somalia. While different institutions of the government are using terrorist forces for a stronger foothold in the country (Ilhan-Nas, Okan, Tatoglu, Demirbag, & Glaister, 2018). According to reports the institutions in Somalia have been found to finance the terrorists in order to have greater control over the country. Although, the direct corruption in Bosnia is less it is still more than many other developed economies of the world. It not only harms the potential economic performance of the country but it also reduces the credibility of the economy as a likely destination for investment inflow.

7. Determine your company’s mode of entry into foreign markets. This should be based upon a serious analysis of your company’s risk-return tradeoff. In your opinion, has your company taken the right approach?

Risk-return trade-off determines the preferences of the company. Some of the companies are risk averse while some are risk takers and this influences the entry strategy of the companies in a new country. In this case, DynCorp International is a risk taker and wants to have a higher return in the long run even if it makes lower return or losses in the short run. This is also the reason for the choice of countries. Now given these preferences the country wants to undertake a Greenfield investment where the commitment and the involvement of the company are the most (Ang, Benischke & Doh, 2015). However, the investment and the risk associated with the Greenfield investment is high compared to the other means of entry. Given the aims of the company to earn a higher return in the future this entry method is perfect for DynCorp International.

8. Does your company have an exit strategy? Recall that exit strategies are to be determined before entry into the foreign market, rather than after entry.

Despite the risk-taking attitude of the company there are some of the exit strategies in place which can minimise the loss of the company. Given the fact that DynCorp International is introducing new technologies in the aviation industry of the respective countries, a merger or acquisition is the best exit strategy for the company (Fu, Lei, Wang & Yan, 2015). In the case of bankruptcy, the company will be compelled to associate itself with existing companies of the market. Liquidation is another exit strategy that the company is in place if the merger deal does not convince the management of the company. In this process, the company reduces the price points of each of the properties of the company so that it is sold in the market quickly.

9. Critically and objectively evaluate how ethical your company’s global operations are and determine if they are good corporate citizens (i.e., do they have a well thought-out corporate social responsibility program for the long term?).

DynCorp International is a good corporate citizen as it has ethical standards for the operation of the company. The company does not import labours and the workers from the source country and uses the local labours. In addition to that, the company also does not violate the rules and the regulations of the respective countries in which it operates. It also has incorporated corporate social responsibility as one of the important responsibility of the company in the countries as well. The company also have a plan to use a part of their profit to fund the education of the lower segment of the people of the country as well. Better education in the target countries would create more advanced labours in the market (Hollender, Zapkau & Schwens, 2017). This not only would help the company to produce a higher value but it can also allow the company to have an expanded customer base in the long run.

10. What is the corporate mission statement of your target company, assuming it has one? How well do the company’s actions adhere to its stated mission?

The mission of the company is to improve aviation support in the field of aviation in different parts of the world. The operations of the company are in line with the mission as it really focuses on different parts of the world. Its innovation and implementations are also in line with the mission statement of the company.

11. With respect to its strategy formulation, would you categorize your company as a shareholder model or a stakeholder orientation? Why?

As per the strategy formulation of the company, it is categorised as a stakeholder orientation model. One of the basic features of this model is that the focus of the management of the company remains on the well being and the interest of the stakeholders more than on the shareholders (Lee, Lee & Min, 2018). DynCorp International is not only providing services, but it also has the mission to influence the lives of the people as well. Therefore the business is oriented towards the interest of the stakeholders. In the initial years of operations in the selected economies, the company would not be able to generate returns for the shareholders as it would adhere to its mission statement.

12. Is the company a stateless corporation? If not, is the company on its way to becoming a stateless corporation?

DynCorp International is not a stateless corporation currently as its operation is mainly limited to the USA. A stateless corporation is a company that operates in different countries of the world. As per the mission of the company and the current activities to enter the new emerging markets, it can be said that the company is on its way of becoming a stateless corporation (Karakaya & Parayitam, 2018). The mission statement of the company also suggests that the company will also enter other types of economies in the future depending on the financial success of the company in the existing market.

13. What type of organizational structure is the company currently using?

Currently, the company is using a hierarchical structure for the operation of the company. In this structure, there are few low-level workers of the company who are supervised by an immediate manager of the company. Again these lower managers are groped and supervised by another mid-manager of the company. These mid-managers then report to the respective higher managers who work under the CEO, CFO, and CTO of the company. The company has been following this structure for a long time now and it does not have any intention to change it in the near future.

14. Do you think the company may benefit from a hybrid or matrix structure? Why or why not?

The company would be able to rip better benefits if it uses structures like a matrix as it categorises the managers and the employees based on the expertise. Surdu, Mellahi, Glaister & Nardella (2018) stated that different workers of the company are pooled as per their expertise under a manager. Apart from that, empirical studies have shown that matrix business structure has been a key influencer in the process of scaling up a business. DynCorp International has a clear focus on scaling up the business and enter the other markets of the world which can be easily realised by using the matrix organisational structure. Information inflow is a great fuel for the operation of DynCorp International. A matrix organisational structure helps in the rapid inflow of information into the organisation and hence it would be more helpful for the company.

Reference

Ahi, A., Baronchelli, G., Kuivalainen, O., & Piantoni, M. (2017). International Market Entry: How Do Small and Medium-Sized Enterprises Make Decisions?. Journal of International Marketing , 25 (1), 1-21.

Ang, S. H., Benischke, M. H., & Doh, J. P. (2015). The interactions of institutions on foreign market entry mode. Strategic Management Journal , 36 (10), 1536-1553.

Fu, X., Lei, Z., Wang, K., & Yan, J. (2015). Low cost carrier competition and route entry in an emerging but regulated aviation market–the case of China. Transportation Research Part A: Policy and Practice , 79 , 3-16.

Hollender, L., Zapkau, F. B., & Schwens, C. (2017). SME foreign market entry mode choice and foreign venture performance: The moderating effect of international experience and product adaptation. International Business Review , 26 (2), 250-263.

Ilhan-Nas, T., Okan, T., Tatoglu, E., Demirbag, M., & Glaister, K. W. (2018). The effects of ownership concentration and institutional distance on the foreign entry ownership strategy of Turkish MNEs. Journal of Business Research , 93 , 173-183.

Karakaya, F., & Parayitam, S. (2018). Market entry barriers and firm performance: higher-order quadratic interaction effects of capital requirements and firm competence. International Journal of Markets and Business Systems , 3 (2), 121-140.

Klingebiel, R., & Joseph, J. (2016). Entry timing and innovation strategy in feature phones. Strategic Management Journal , 37 (6), 1002-1020.

Lee, J. Y., Lee, C. W., & Min, J. (2018). Investment Climate in the EAEU and Korea’s Entry Strategy. KIEP Research Paper, World Economy Brief , 18-01.

Surdu, I., Mellahi, K., Glaister, K. W., & Nardella, G. (2018). Why wait? Organizational learning, institutional quality and the speed of foreign market re-entry after initial entry and exit. Journal of World Business , 53 (6), 911-929.

Tulung, J. E. (2017). Resource Availability and Firm’s International Strategy as Key Determinants Of Entry Mode Choice. Jurnal Aplikasi Manajemen , 15 (1), 160-168.

Upson, J. W., Sanchez, M. S., & Smith, W. J. (2017). Competitive Dynamics of Market Entry: Scale and Survival Abstract: Market entry is the essence of strategy and is largely viewed as a dichotomous event: entry or no entry. What has not been acknowledged is the uniqueness of each market entry. Our study highlights the scale of market entry in the context of multipoint competition. We assert that entry scale varies based on the risk of market incumbent retaliation. Theory suggests that when risk associated with retaliation are low, firms enter with large …. Management and Economics Review , 2 (1), 118-132.

Williams, C., & Vrabie, A. (2018). Host country R&D determinants of MNE entry strategy: A study of ownership in the automobile industry. Research Policy , 47 (2), 474-486.

Introduction: Type your introduction here. Remember to include an overview of what your manuscript..

Introduction:
Type your introduction here. Remember to include an overview of what your manuscript aims to do (e.g. research a problem, identify a new management concept, etc.). This section requires one paragraph in length.Background:
This is an informative paragraph that helps the reader understand why you chose this topic. Review the background of the topic and elaborate here. Use language such as, The following section will discuss the background of the topic. This should be one paragraph in length.General Problem Statement:
This paragraph piggybacks on the previous paragraph. Now that you have discussed the background, tell the reader what the general problem is and why you want to research it. Your general problem is a broad overview of the general problem. Oftentimes, the general problem is viewed at the national level with supporting evidence from governmental websites that provide quantitative statistics. The paragraph must begin with, The general problem is…Specific Problem Statement:
This paragraph piggybacks on the previous paragraph. Now that you have discussed the general problem, tell the reader what the specific problem is and why you want to research it. Your specific problem statement usually encompasses a specific population, demography, or geographic location. Oftentimes, the specific problem is viewed at the local level with supporting evidence that provides quantitative statistics. The paragraph must begin with, The specific problem is…Purpose Statement:
This paragraph simply tells the reader the purpose of your research. (Example: The purpose of this research is to determine whether a relationship exists between nursing assistant staffing levels and quality of care in skilled nursing facilities). The paragraph must begin with, The purpose of this research is…Research Questions:
This paragraph provides an overview of the specific research questions you plan to investigate. You are only required to have one research question; however, you may use more if needed. This section is where you unfold your research to the reader. What do you want to uncover? This is where you ask the question(s).
Use language such as: The research addressed the following research questions.RQ1: Ask your research question here.

RQ2: How does socioeconomic status relate to the level of quality in nursing homes?ReferencesRemember that any referencein your reference list must be present in your paper in the form of a citation (Author, year). Likewise, any citation in your paper must be present in your reference list. Refer to your APA Handbook 6thedition for more detailed information on developing a reference list. For your Assignment 1 you need a minimum of three (3)scholarly references. NO BOOKS. Online references that can be easily accessed.

Notice that Dell normally does not focus its annual report on marketing. Dell does not advertise its

Notice that Dell normally does not focus its annual report on marketing. Dell does not advertise its products excessively. Dell appears to be focused on demonstrating quality rather than promoting itself. Does this strategy make sense?