watch the videos and write a shot paragraph



Please watch the videos and write whether you believe the shop steward should be terminated or some other discipline according to the just cause principles . Only a short paragraph explaining your decision is required; not an essay.



write 2 page response paper for each exhibition

Write 2-page response paper for each exhibition, you can found information from the pdf/photos I upload, and also you can get more information from the website. Total 4 pages paper.

You can write about and etc.

l. What (meanings, values, etc.) was the artist trying to promote?

2. What is my personal position relative to the artist?

3. How has they on this affected/inspired you art experience?

4. Which part you like or dislike? Why?

columns architecture history

Must write a 10-page paper with 10 footnotes The paper will explore an architectural element of your choice (I picked columns). To study the nature of an element, you may compare two treatises, a treatise with an associated project, or a treatise with a contemporary project. It should synoptically present the idea of the paper. A brief (no more than one page) ekphrasis of the frontispiece must be also included.

I have already written the paper and submitted the draft, I got it back with a lot of feedback that needs to be fixed. My instructor also recommended books that I will have to scan and attach here.

I need someone to fix the paper and follow and guidelines + feedback from the instructor. I also need help with improving my frontispiece (it will be drawn by me) so it matches the final draft.

I will attach my original draft document + scans of instructors feedback (he also gave me a couple pages from a book that should be included) + scans of the other books

Vitruvius – Ten books on architecture: http://www.chenarch.com/images/arch-texts/0000-Vit…

The Four Books of Architecture, Andrea Palladio: https://archive.org/details/architecturePal00Pall/…
Roman Builders, Rabun Taylor: (attached)

The Dancing Column, Joseph Rykwert: https://transfernow.net/01ck21900xar

write a paper about a historical social movement in new york city 1

Write a paper about a historical social movement in New York City. For example, you could write about a specific social movement in New York City (civil rights movement, gay rights movement, women’s movement, the Latino activist group called the Young Lords). Another topic is the rich history of community murals in New York City by researching the organizations/artists that created them, and examine the social struggles and issues that the murals were part of

please complete the three parts based on the due dates

I will provide the project 4 essay

the internal validity of a research design is paramount to the interpretation of results

The internal validity of a research design is paramount to the interpretation of results. Kratochwill et al. (2010) discuss various threats to internal validity of SCRDs. Choose three of the threats to internal validity and provide a real-world example for each. Conclude your post with a discussion of the concept of measurement in SCRD as discussed on pp. 516-521 in the Smith (2012) article located in Course Documents.

itec2060 group project populate and validate data

Group Project: Populate and Validate Data

In this unit, you will work with your group to insert data into the tables.

To prepare for this assignment, review the Create Table statements from the previous unit.

Define data for all of the tables you were assigned in the previous unit. Include at least three data items for each table (parent table) on the one side of the one-to-many relationship and at least six data items for each table (child table) on the many side of the one-to-many relationship.
Complete the following tasks:

  • For the tables you were assigned, use the SQL Command Line utility to insert at least three data items into each table (parent table) on the one side of the one-to-many relationship and at least six data items into each table (child table) on the many side of the one-to-many relationship.
    • Each data item in the parent table must have at least one data item in the child table that it links to. (E.g. The production, accounting, and finance departments must each include at least one employee).
  • Execute one join command to display all of the data included in the two tables for each set of tables.
  • Include a screen shot to verify the successful completion of each Insert and Join command. Each Screen shot must be preceded by a comment that includes the student’s name, the instructor’s name, and the date the command was executed. You may group the insert commands for each table into one screen shot.
    • E.g. SQL>/* Student: John Doe Instructor: Sally Smith Date: 4/4/2021 */
    • Don’t forget the /* and */ at the start and end of the command to make it into a comment!!
    • The screen shot must include the SQL command and the output from the command.
    • Any errors while creating the comment or executing the SQL statement will require retyping the comment.

    Run SQL Command Line

By Day 7

individually submit a 2- to 4-page word document that contains the following:

  • Screen shots to verify the insertion of the required data items and execution of join commands on all tables you were assigned by the group.

Prepare: Intermediate SQL 2

The SQL SELECT command allows you to retrieve data from one or more tables. With the SELECT, FROM, and WHERE clauses, you can specify the sources of the data you want, the columns to display, and conditions for the rows to display. With these clauses and joins, you can identify, for example, all inventory items that are low in stock (stock count is less than 10), and the vendor who supplies those items.

In this Unit, you will learn more ways to express your data retrieval needs. You will learn about three additional clauses in the SQL SELECT command. These let you specify the sorting order for rows, to aggregate rows, and to operate on the aggregated data.

First, the ORDER BY clause lets you specify the sequence of the result rows. Suppose that the auto supply store has a list of inventory items that are in low supply. If you sort the results by vendor, all parts supplied by a particular vendor will appear together. This may simplify the task of placing orders with vendors.

Next, the GROUP BY clause lets you subdivide results into categories, and operate on the aggregated data in each category, rather than on single rows. Perhaps you want to know the number of items that you buy from each vendor, rather than a list of the particular parts. The GROUP BY clause aggregates results by the value in one or more columns and lets you perform the same calculation, such as MIN, MAX, or COUNT, on each group.

HAVING, the third SQL clause, is similar to the WHERE clause, except that its conditions apply to a group. For example, you can list only those vendors who supply fewer than 5 different items (HAVING COUNT < 5).

You will also learn how to use functions, expressions, and calculations with SQL statements. A column in a SELECT command can calculate a result based on values in other columns. For example, SQL can display the extended price as the product of the unit price of an item and the quantity ordered. Similarly, you can include expressions and SQL built-in functions to summarize (or aggregate) the data in a group.

Finally, you will see how a subquery permits you to perform a preliminary calculation, and then use that result as a criterion in a WHERE or HAVING clause. For example, you can list the inventory items whose cost is less than the average cost of all inventory items by calculating the average cost in a subquery. Subqueries easily identify entities that are not in a list—for example, all vendors who do not currently supply any parts. This subquery would return a list of vendors, rather than a single value. The main query would consider only vendors that are not in the list. SQL lets you use subqueries in WHERE, IN, HAVING, and FROM clauses.

Applications often use these techniques when they generate reports or analyze data.

Learning Outcomes

By the end of this unit, you will be able to:
  • Practice populating and validating database data
  • Evaluate alternative query strategies
  • Apply techniques for dynamically selecting and aggregating data
Group Project: Populate and Validate Data Coronel, C. & Morris, S. (2015). Database systems: Design, implementation, and management (11th ed.). Stamford, CT: Cengage Learning.

  • Chapter 7, “Introduction to Structured Query Language (SQL)”
    • Section 7-3, “Data Manipulation Commands”

https://www.1keydata.com/sql/sqlgroupby.html

ITEC 2060 Week 4 Group Project – Thoughts

The Week4 Group Project builds on the work we have been doing in the previous Project assignments.

Compared to the Applications, the Week 4 Group Project is relatively straight forward. You need to do the following:

  1. There are no specific individual contributions required by Day 4 of the Week 4 project. I still expect each of you to check in to the group discussion area by Day 4 with some substantive information to move the group forward this week. At a minimum, you could specify which tables you will be working with so the group can verify that all tables included in the final design are assigned to someone in the group. By Day 7, you must each submit your individual results.
  2. Create SQL statements to insert data into the Project tables you built in Oracle during Week 3. If you did not get the tables built, you will need to get that done before proceeding. If you continue to have problems creating the tables, you could use this opportunity to reach out to your group members for some assistance. I would like to see at least three rows of data per table. Some tables may have more.
  3. Some of you had problems related to foreign keys in the week 3 project. If you did not include foreign keys in your tables, you will need to use the Alter Table command to add them. Remember, FKs go on the many side of all one-to-many relationships. If you were one of the few who did not get the project tables created in week 3, you have a lot of work to get done this week. Again, you can use the group discussion forum to ask for assistance from your group.
  4. For each table in your design, please include the following in a Word Document. First, a copy of ONE of the successful Insert commands for each table. Second, a screen shot of ALL the data in the table (At least three data items per table). Use the Select * from Station; (Or whatever table name) to output the data to the screen. Please do not include more than this in the screenshots or it can get very confusing when grading.

corporate ethical issues in harassment discrimination whistleblowing

Why do you think that Harassment/Discrimination/Whistleblowing are the most important ethical issues facing organizations today? If you can, give examples of organizations being ethical or unethical with regard to that topic and explain why you think it is a good example of the point that you are trying to make.

answer the following questions each answer should be at least 200 words

Answer the following questions, each answer should be at least 200 words

1. Why is it important to consider the management of a hospitality enterprise in the context of the co-alignment model?

2. What have the forces driving change done to the requirements for today’s hospitality manager?

3. What is the function of organizational structure in regard to environmental scanning?

4. Discuss how the impact of technological advancements in the environment changes our lifestyle and the way that business responds to these changes?

5. What information sources do you think would be useful in tracking development in the technology for the travel industry?

q1 think of a time when someone has applied this concept to you at work school or at home q2 write a paragraph or two describing the situation and how it helped you solve a problem

Originally formulated by Heifetz (1994), adaptive leadership conceptualizes the leader not as one who solves problems for people, but rather as one who encourages others to do problem solving. Heifetz, Grashow & Linsky (2009), went on to say that his theory moves people to tackle tough problems and that they thrive for doing so.

Q1.Think of a time when someone has applied this concept to you at work, school or at home.

Q2. Write two paragraph describing the situation and how it helped you solve a problem.