Provide a detailed example explaining the difference between passing an array to a method by value and passing an array to a method by reference.
400 words
Provide a detailed example explaining the difference between passing an array to a method by value and passing an array to a method by reference.
400 words
SQL Individual Assignment
Assume that Orion Star Sports & Outdoors Co. has engaged you as a consultant to advise them on business strategies to increase sales. Study the data tables from this perspective. The most important tables in this data set are:
+ orders + product_line
+ products + profit
1. Answer the following questions in general:
a) What are the key business questions that can be asked and answered using this data?
b) How does each table relate to answering those questions?
c) How do I have to link the tables in order to be able to answer those questions?
2. For each field in the four tables, answer the following specific questions:
a) Is this a question field, an answer field, or a link field? In other words, is this a key dimension along which I wish to analyze the data (question field), a data item that I want to “slice and dice” along selected dimensions (answer field), or a field that simply helps me link from one table to another?
b) What data type is represented by this field (e.g. integer, text, symbols, currency, etc.)?
c) Are there missing or null values in the data for this field?
d) For range fields (e.g. dates and numbers), what is the range of values in the data? What are the maximum and minimum values?
e) What do you think is the purpose of this field?
f) What questions would you ask the company about this field?
3. Prepare spreadsheets that answer the following questions:
a) What are the top 10 products for orders (by dollar volume)?
b) What are the top 10 countries for orders (by dollar volume)?
c) What are the top 10 selling products by units? By dollar volume?
d) For top two US states and top two countries (excluding the US) in questions 1 and 2, what are the 5 top selling products by units? By dollar volume?
e) Provide the customer ID’s, order dates, and order amounts for all customers who have ordered more than once.
Examine the decision-making process. Please discuss the following areas of the decision-making process in your paper.
The following are the items to discuss in the paper:
Paper requirements:
Binary Numbers CASE: You are attending a math conference with your fellow classmates. You see several individuals wearing t-shirts with the following saying: “THERE ARE 10 Kinds of people. Those who understand BINARY and those who DON’T.” TASK: 1. Create a new word processing document and save it as Binary Numbers. 2. In the first paragraph, explain what the binary number system is and how it is simply another way of describing an amount. 3. Add a table to your document that is two columns wide by five rows long. Add the following headings to the columns: Decimal Number and Binary Number. Add the following numbers to the first column, under Decimal number: 8, 25, 136, 1492. 4. Complete the rest of the information in the table without using a calculator. 5. Create another table in the document. This one should be two columns wide and seven rows long. The column headings are Decimal Number and Binary Number. In the Decimal column, type the numbers 25 through 30. Use the Windows calculator to convert the decimal numbers to their binary equivalents, and then enter the results in the table. 6. Below the table add a second paragraph that explains the t-shirt quote.
Based on your stellar project management skills, the team was able to reach its goal on time (and within budget). The team’s performance was such a success that you have been asked to give a presentation to other managers on your approach to leading a team.Create a 6- to 8-slide Microsoft® PowerPoint® presentation in which you:
Remember to add speaker notes to support your main points for each slide, with a minimum of 50 to 150 words per slide.
detfytdeeydeye
3 journals for :
write your reflections on the ethical issues in computing technology that you encounter or think about. These Journals are MANDATORY.
Please write a short paragraph of 250 words discussing any ethical issue that you come across at school, work or in your personal experience. Document what you are thinking and/or feeling as it relates to any ethical issues in computing or technology…any dilemmas that arise? Try to write a little about the issue and your feeling or ideas. If you are new to journaling, this may feel unusual. It is OK to be a little worried about the unknown, however, let the worry go and just explore the work and thoughts as they unfold.
1 Journal for:
Please write a short paragraph of 250 words discussing your reflections on how your awareness of ethical issues has changed, if any, over the course of the semester. Document what you are thinking and/or feeling as it relates to ethical issues in computing or technology and how you may handle any dilemmas that arise going forward. You may go back and review your earlier journals and see how your thoughts have unfolded or changed.
Discussion Responses
Our lead developer was recently certified in Scrum, one of the agile methodologies, and would like to try to manage this project using scrum.
In order for her to do this, she needs us to rewrite the requirements list you previously created as user stories. Just to remind you, a user story looks like this:
As a < type of user >, I want < feature > so that I can < functionality >.
For example: As a taxi driver, I want directions so that I can quickly get to my next customer.
Please rewrite all of your requirements as user stories and I will pass it on to our development team.
Compute the running time T(N) for the following codes for any n > 0: Show all (a) int sum(int n) { int sum=0: for (int i = n: i < 0: i++) { for(int j = 0: j < n: j++) { sum=sum + 1: } } return sum: } (b) int sum (int n) { int sum = 0: for (int i = 0: i < n: i++) { for(int j = i: j < n: j++) { sum=sum + 1: } } return sum: }