Course Learning Outcomes-Covered
Question - Develop a hypothetical technological company of your own choice(1) Ikea 2) Nike 3) Seventh Generation 4) Panasonic 5) IBM 6) Unilever 7) Allergan 8) Patagonia 9) Adobe) in any field which follows the concept of ‘Sustainable Development’. Draw an outline of your company’s basic fields of operation and explain how it makes use of various sustainable techniques for its development. (Minimum 3 elements of Sustainable Development should be present in your company’s techniques.)
NOTE:
In: Operations Management
Write a 200-300 word entry describing in your own words (showing you understand the physiology) of how positive pressure therapy can affect one of the factors below:
|
Positive pressure effects on intrathoracic pressures |
|
Pressure and distribution of airflow into the alveoli |
|
Pressure, stretch, and the lung |
|
Surfactant functions |
|
Positive pressure and cardiac output |
|
Pulmonary capillary blood flow |
|
Positive pressure and the lymphatics |
|
Positive pressure and organ system function |
In: Anatomy and Physiology
Need answer for all the questions
Assessment 9.0: Soil Mechanics
Produce a 300 word report which identifies the cause and effect of slips in embankments and cuttings and the affect it might have on safety of the line.The report should include the theory behind soil mechanics – soil saturation, subsidence, inappropriate mineral extraction, overloading of embankment by neighbouring construction and subterranean fires. Include a range of potential solutions to embankment stability risks.
In: Civil Engineering
Please type down (easy to copy and paste) your response (agree or disagree why?) 150 word +
In this ted talk video, “The era of blind faith in big data must end”, Cathy O`Neil discusses about algorithms and how they do not make things fair at all. Cathy O`Neil is a Mathematician and a data scientist that also talks about the big data, and showing how algorithms could in fact reinforce human bias. In the beginning of this video, she talks about all of the bad data science things. At the end, Cathy O`Neil talks about the good data science and talks about the features of a good data science. You can find so many bad and good examples of everything. What really matter is the big picture of the good and bad things. I agree that big data has many drawbacks but all the examples and the “thought experiments” were either gender or race based (O`Neil, 2017).
Algorithms can be very useful in different aspect. Algorithms are useful by giving people an idea of how to reach a particular goal. For an example, algorithms would not function without online dating and book recommendation or even travel websites. Algorithms are most invisibly aids, augmenting human lives in incredible ways. There is so much science that is so good out there that we don't even realize it. In general, to use science and data science usefully we all need to have a better understanding of it.
In: Psychology
Please answer the following open-ended questions using a minimum word count of 1,500 words total for the complete assignment
Chapter 4 – Critical Thinking Questions (25
points)
1. “Emotional intelligence is more important than cognitive
intelligence in influencing an individual’s success.” Do you agree
or disagree with this statement? Fully support your
perspective.
2. Recall a traumatic personal event, such as losing a loved one
due to an accident or illness, receiving a rejection for an
important job or school application, or failing an important
assignment. Based on what you have learned in Chapter 4, discuss
what has happened to you in terms of your cognitive reasoning, your
emotional reactions, and your ability to logically deal with these
stressful situations.
In: Psychology
Answer the following questions in a 400-600 word response [total for both] or 200-300 words each question. 1. The analysis of standard cost systems begins with the development of standards for direct materials, direct labor, and manufacturing overhead. Discuss standard costs and indicate how they can be used by management in planning and control. 2. Why is it important to consider the relationship among cost, quality, and selling prices when establishing standards for direct materials?
In: Accounting
**I need rewrite the answer with unique word ... thank you
Q1:
What strategic competitive benefits do you see in a company’s use of extranets?
Answer :
An extranet can increase the value of your organization by helping you convey and work together more viably with customers, clients, and accomplices. Especially in the business-to-business market, an extranet can give your organization an edge over the opposition and set aside you cash by smoothing out conventional business capacities and reducing overhead expenses.
Extranets accomplish a similar work as an intranet, however it additionally takes into account correspondence on the planet. An extranet permits client, sellers and providers to get to the data through the PC framework. The organizations use extranets to get strategic like:
1. Expanded efficiency: As you mechanize measures that were generally done physically, bottlenecks will vanish and your organization's profitability will increment. Basic data won't lose all sense of direction via the post office or covered in an email inbox, and occupied representatives won't miss or overlook key functions. An extranet can, for instance, screen business exercises and trigger explicit activities, for example, naturally submitting a request with a provider when your stock dips under a specific level.
2. More limited chance to advertise: In the event that your business isn't moving at "Web speed," you hazard being abandoned. An extranet can assist you with getting your items to showcase all the more rapidly by making proposition and determinations accessible to providers, and surrendering customers and accomplices to-date data on current undertakings.
3. Construct client loyalty : Extranets make business simpler for your clients. The more you make convenient, precise data accessible to your clients, the more probable it is you'll keep their business
4.Reduced stock : One of the signs of a business-to-business extranet is its effect on flexibly chain the board. By connecting your stock framework straightforwardly to a provider, you can handle arranges when the framework realizes you need them, in this manner lessening the stock you keep available and making the acquirement cycle more proficient.
Q2:
Data Modelling is the primary step in the process of database design. Compare and contrast Conceptual data model versus Physical data model. Illustrates with help of example to list down data (entities), relationship among data and constraints on data.
Data modelling is the first step in database design. It is the process of creating a data model for the data to be stored in a database. It is considered as the high level. It is also referred as the conceptual design. Data modeling helps in the visual representation of data and enforces business rules, regulatory compliances, and government policies on the data. Data Models ensure consistency in naming conventions, default values, semantics, security while ensuring quality of the data..It describes the data contained in the database, relationship between data items and the constraints on the data.
Conceptual data model
This Data Model defines WHAT the system contains. The purpose is to organize, scope and define business concepts and rules. It is an organized view of database concepts and their relationships.. It does not have the complete data of the database. It is used to create entities, their attributes, and relationships.
·Includes the important entities and the relationships among them.
·No attribute is specified.
·No primary key is specified.
Physical Data model
This Data Model describes HOW the system will be implemented using a specific DBMS system. The purpose is actual implementation of the database.It offers database abstraction and helps generate the schema. The physical data model also helps in visualizing database structure by replicating database column keys, constraints, indexes, triggers and other schemas.
In: Computer Science
Exception handling to detect input string vs. int
The given program reads a list of single-word first names and ages (ending with -1), and outputs that list with the age incremented. The program fails and throws an exception if the second input on a line is a string rather than an int. At FIXME in the code, add a try/catch statement to catch ios_base::failure, and output 0 for the age.
Ex: If the input is:
Lee 18 Lua 21 Mary Beth 19 Stu 33 -1
then the output is:
Lee 19 Lua 22 Mary 0 Stu 34
---------------------------------------------------------
#include
#include
using namespace std;
int main(int argc, char* argv[]) {
string inputName;
int age;
// Set exception mask for cin stream
cin.exceptions(ios::failbit);
cin >> inputName;
while(inputName != "-1") {
// FIXME: The following line will throw an ios_base::failure.
// Insert a try/catch statement to catch the exception.
// Clear cin's failbit to put cin in a useable state.
cin >> age;
cout << inputName << " " << (age + 1) <<
endl;
cin >> inputName;
}
return 0;
}
In: Computer Science
Write a 525- to 700-word detailed outline of your Market Research Implementation Plan in which you address the following:
In: Operations Management
Item 1
In the case below, the original source material is given along with a sample of student work. Determine the type of plagiarism by clicking the appropriate radio button.
Original Source Material | Student Version |
APT was compared with numerous extant methodologies, including the linear models approach and event history analysis. The fundamental difference between APT and these other approaches is that no particular mathematical model is assumed in APT. In APT a model is viewed simply as a temporal pattern, whereas in most other approaches parameters of a mathematical model are estimated from data in which variables are measured separately. Moreover, in APT probabilities of temporal patterns are estimated by relative frequency and duration. References: | In this study, Frick (1990) clarified the distinction between statistical linear models and Analysis of Patterns in Time (APT). Compared to the linear models approach (which includes particular mathematical models), APT is a straightforward way to create temporal maps and analyze them for recurring patterns of events. Moreover, in APT probabilities of temporal patterns are estimated by relative frequency and duration of those events. References: |
Which of the following is true for the Student Version above?
Word-for-Word plagiarism
Paraphrasing plagiarism
This is not plagiarism
Item 2
In the case below, the original source material is given along with a sample of student work. Determine the type of plagiarism by clicking the appropriate radio button.
Original Source Material | Student Version |
But what are reasonable outcomes of the influence of global processes on education? While the question of how global processes influence all aspects of education (and who controls these forces) is multidimensional and not completely testable, there appear to be some theories of globalization as it relates to education that can be empirically examined. References: | Rutkowski and Rutkowski (2009) ask "what are reasonable outcomes of the influence of global processes on education?" (p. 138). This question is not entirely testable and has multiple dimensions but theories of globalization's impact on education exist and provide means of empirical analysis. References: |
Which of the following is true for the Student Version above?
Word-for-Word plagiarism
Paraphrasing plagiarism
This is not plagiarism
Item 3
In the case below, the original source material is given along with a sample of student work. Determine the type of plagiarism by clicking the appropriate radio button.
Original Source Material | Student Version |
Educational researchers, policymakers, and practitioners agree that educational research is often divorced from the problems and issues of everyday practice--a split that creates a need for new research approaches that speak directly to problems of practice (National Research Council [NRC], 2002) and that lead to the development of "usable knowledge" (Lagemann, 2002). Design-based research (Brown, 1992; Collins, 1992) is an emerging paradigm for the study of learning in context through the systematic design and study of instructional strategies and tools. We argue that design-based research can help create and extend knowledge about developing, enacting, and sustaining innovative learning environments. References: | A decade later, researchers interested in studying learning in naturalistic settings (inspired by Brown's approach) began a concerted effort to define the standards and argue the legitimacy of this type of research through design. For example, the Design-Based Research Collective defined design-based research (DBR) as "an emerging paradigm for the study of learning in context, through the systematic design and study of instructional strategies and tools" (DBRC, 2003, p. 5). References: |
Which of the following is true for the Student Version above?
Word-for-Word plagiarism
Paraphrasing plagiarism
This is not plagiarism
Item 4
In the case below, the original source material is given along with a sample of student work. Determine the type of plagiarism by clicking the appropriate radio button.
Original Source Material | Student Version |
The technological tools available today for creating computer-based learning materials are incredibly more powerful than those introduced just a few years ago. We can make our own movies with camcorders in our homes; we can publish our own books.Soon teachers and students will be able to use computer-video technology to produce their own learning materials. All it takes is time, know-how, and some funds. References: | Frick (1991) claimed that computers would become so powerful that K-12 educators and students would able to produce their own multimedia and Web-based learning materials. He further predicted that they would just need to take the time required to learn to use the authoring tools and related technologies such as digital cameras and camcorders.
|
Which of the following is true for the Student Version above?
Word-for-Word plagiarism
Paraphrasing plagiarism
This is not plagiarism
Item 5
In the case below, the original source material is given along with a sample of student work. Determine the type of plagiarism by clicking the appropriate radio button.
Original Source Material | Student Version |
There is a design methodology called rapid prototyping, which has been used successfully in software engineering.Given similarities between software design and instructional design, we argue that rapid prototyping is a viable method for instructional design, especially for computer-based instruction. References: | Tripp and Bichelmeyer (1990) suggested that rapid prototyping could be an advantageous methodology for developing innovative computer-based instruction. They noted that this approach has been used successfully in software engineering; hence, rapid prototyping could also be a viable method for instructional design due to many parallels between software design and instructional design.
|
Which of the following is true for the Student Version above?
Word-for-Word plagiarism
Paraphrasing plagiarism
This is not plagiarism
In: Psychology