Executive Program Personal Connection Assignment

 

Assignment:
Provide a reflection of at least 500 words (or 2 pages double spaced) of how the knowledge, skills, or theories of this course have been applied, or could be applied, in a practical manner to your current work environment. If you are not currently working, share times when you have or could observe these theories and knowledge could be applied to an employment opportunity in your field of study. 

Requirements:

Provide a 500 word (or 2 pages double spaced) minimum reflection.

Use of proper APA formatting and citations. If supporting evidence from outside resources is used those must be properly cited.

Share a personal connection that identifies specific knowledge and theories from this course.

Demonstrate a connection to your current work environment. If you are not employed, demonstrate a connection to your desired work environment. 

You should NOT, provide an overview of the assignments assigned in the course. The assignment asks that you reflect how the knowledge and skills obtained through meeting course objectives were applied or could be applied in the workplace. 

In pseudocode

  

In pseudocode, declare a 2-dimensional array of integers that would store the multiplication table of up to 10×10. (100 elements total need to be stored) Use a nested repetition loop of your choice to store each of the values. Be sure to walk through your code and make sure it is properly calculating each of the elements.

assigment

 Homework #3 MCIS 5103: Advanced Programming Concepts Instructor: Dr. Justin L. Rice Due Date: 3/1/2023  Please refer to the code in the Appendix (pages 3 – 4) to answer the following questions.  1. Write the output for each section of print statements. (10 points) 2. Which Rectangle constructor does instance box1 call? Why? What concept does this demonstrate? Explain [in  four sentences or less].(10 points) 3. Which Rectangle constructor does instance box2 call? Why? What concept does this demonstrate? Explain [in  four sentences or less]. (10 points) 4. Which Rectangle constructor does instance box3 call? Why? What concept does this demonstrate? Explain [in  four sentences or less]. (10 points) 5. What is the connection between box2 and box4? What happens (memory wise) when both box2 and box 4 are  declared null? Explain [in three sentences or less]. (20 points) 6. In the Main class, there are two variables named z. What is the difference between the two variables? What  concept does the output of the last three print statements demonstrate? Explain [in four sentences or less]. (20 points) 7. In the Rectangle class, explain the implementation of the Rectangle(int l, int w) constructor. Explain [in four  sentences or less]. (10 points) 8. In the Rectangle class, explain the implementation of the Rectangle(Rectangle other) constructor. Explain [in  four sentences or less]. (10 points) APPENDIX RectangleVolume.java public class RectangleVolume { public int length; public int width;  public int height;  public RectangleVolume(int l, int w, int h) {  length = l;  width = w;  height = h;  }  public RectangleVolume(int l, int w) {  this(l, w, 5);   }  public RectangleVolume(RectangleVolume other) {  this(other.length, other.width, other.height);   }  public int calcVolume(){  return length * width * height;   } } Main.java class Main {    static int z;  public static void main(String[] args)  {    RectangleVolume box3 = new RectangleVolume(3,4,5);  RectangleVolume box1 = new RectangleVolume(box3);  RectangleVolume box2 = new RectangleVolume(3,4);  RectangleVolume box4 = box2;    box1 = null;  System.out.println(“n”);    System.out.println(“box(l,w,h) = (” + box3.length + “,” + box3.width + “,” + box3.height + “)”);  System.out.println(“box(l,w,h) = (” + box4.length + “,” + box4.width + “,” + box4.height + “)”);  System.out.println(“box(l,w,h) = (” + box2.length + “,” + box2.width + “,” + box2.height + “)”);    box2 = null;    System.out.println(“n”);    z = 34;  System.out.println(“z = ” + z);  int z;  z = box3.calcVolume();  System.out.println(“z = ” + z);  System.out.println(“z = ” + Main.z);  } } 

discussion

 Discuss the implications of the strength of relationships on the strength of the entities. Provide examples. 

 Discussion Guidelines
You must provide an original response of 300+ words of your own 

Textbook:

 Printed Textbook: Database Systems: Design, Implementation, and Management, 13th edition, Coronel and Morris. 

Case Study 6.1

 Read the article https://www.bloomberg.com/news/features/2020-04-08/trader-joe-s-employees-say-virus-response-was-haphazard-chaotic?srnd=premium and answer the following questions. Provide a short answer to each question.

  1. Who are the main competitors of Trader Joe’s?

 2. What strategy the company has utilized: Cost leadership, Differentiation or Blue Ocean? Explain in details.

3. Define the competitive advantage of TJ’s.

4. How you will explain the definition of the TJ’s  customer :” Our ideal customer is overeducated and underpaid”.

5. How the company responds to the current   pandemic (COVID)  situation?  

6. What recommendations would you give to the TJ’s CEO to compete better with the rivals?

Writing Requirements

  • 2 – 3 pages in length  (excluding the cover page, abstract, and reference list)