THE TEXT BASED LEARNING APPROACH AND THE SLA THEORY BEHIND THAT
I need three paragraphs on the Text-Based Learning Method and the SLA (Second Language Theory) behind it. It has to be critical and not be confused with the Task-Based method, because it is a different one despite the identical abbreviation. In the additional materials I added the lesson plan and complete lesson that I developed through one of my modules. The objective is tie the activities with the text based learning method and equivalent theory. In the references, I need you to quote the book from Rodgers that specifically mentions text based learning method (I think it is the Approaches in Language Acquisition but I am not sure).
Discuss some changes that have occurred regarding terrorism. Use the information in Box 1-2 to discuss the differences of “old” and “new” terrorism.
All information to answer the question is attached in a file directly from the textbook. Please use this as your main source of information and reference.500-600 wordsBegin each writing assignment by identifying the question number you are answering followed by the actual question itself (in bold type).• Use a standard essay format for responses to all questions (i.e., an introduction, middle paragraphs, and conclusion).• Responses must be typed double-spaced, using a standard font (i.e. Times New Roman) and 12 point type size.Review the material in the textbook related to the question. You may also want to use other sources to help you answer the question, but the primary source for answering the question should be your textbook. The faculty wants to be sure you understand the concepts covered in the textbook.Citation StylesThe majority of your response should be your own original writing based on what you have learned from the textbook. However, students may also use outside materials if applicable. Be sure to provide a reference (or citation) for any materials used, including the required textbook. The following points are designed to help you understand how to provide proper references for your work:References are listed in two places.The first reference is briefly listed within your answer. This includes identifying information that directs the reader to your list of references at the end of your writing assignment.The second reference is at the end of your work in the list of references section.All references cited should provide enough identifying information so that the reader can access the original material.
Question 2500 words; Harvard referencing; with introduction and conclusion; if it helps we
2500 words; Harvard referencing; with introduction and conclusion; if it helps we use Essentials of Human Anatomy
What is propaganda, who uses it, and how do terrorists
Question What is propaganda, who uses it, and how do terrorists publicize their cause?
Do you think that the media in democracies are more
Question Do you think that the media in democracies are more prone to manipulation by terrorists? Why or why not?
Question 1. IntroductionThe final goal of this project is to produce a crowd
1. IntroductionThe final goal of this project is to produce a crowd simulation software to evaluate real world crowd behaviour in library. Therefore, the project must give user ability to visualise the agent walking inside the library.Unity3D is a game production software design for games which offer a hierarchical integrated development environment, visual editing, detailed property editor and dynamic game preview. As Unity offer primary scripting API in C#, this makes JAVA developer easier to get started. Unity editor provide drag and drop function which is easy to operate and understand.Our team first intend to use the unity platform to simulate the library and make the project have board space for development.Since crowd simulation system covering a wide range of ideas. The author narrowed down several topics that might be studied, and finally decided to develop a Agent-based crowd system using the Templeman library as the library model. This dissertation will evaluate the author’s contribution to this project. Including:- Simulation Architecture- Scenes Design- AI behaviour systems- Integrating functions- Systems performance evaluation1.1 Architecture of SimulationCrowds simulation involves many components including agent behaviour, agent logic modelling, crowd movement and animation/rendering. We need a platform to apply those features, such as make real-time path calculation, support multiple path planning algorithms. Provide user good visual effect with broad space of development and free to use.After many investigation and research, we found Unity3D has meet the requirement, as the user amount of Unity platform has raised sharply these years. We intend to use this platform to develop our simulation project. 1.2 ObjectivesThe purpose of this project is to provide a direct experience with developing a goal-driven Unity3D Crowd simulation software — simulate people movements and behaviours inside a virtual building. We divide this project into 2 main stage (can be found in the work logs) with Minimum viable product as prototype and additional functionality that can extend the project content. Some of the section might have overlap with other group members, as the normal behaviour and emergency behaviour are design by different people.The author’s Main Objectives are:- Agent behave like a normal person, Including, Agent normal behaviour inside library and switch of situation, Agents behaviour before emergency happens. Agent reach their goal and complete action successfully. – Agent behaviour systems (Not including evacuation sections) meets the requirement. Including agent path planning in normal situation, logic design, Individual collision avoidance, agent exits.- Combination with other group members section. Ensure that the final systems without big bugs. Including, code integration, fix bugs, scene’s render. – The Final software meet all the run-time update requirements. 1.3 Chapter OverviewChapter 2: A methodology research and literature review about the agent behaviour design, covered all area that author has contribute to the project.Chapter 3: Describe the design and implementation of components with figure and UML diagram. Interpretation of the development and optimization of components. Chapter 4: Explain the idea and steps of project testing, with set of evidence.Chapter 5: Evaluate the degree of completion to the initial project objectives, and the performance of observe from the testing.Chapter 6: Summarize the work done and the progress achieved.Chapter 7: Suggest some method to improve the performance, for future develop. 2. Methodology2.1 Crowd simulation architecturesThe Crowd simulation is aim to summarized the uncertainty of the crowd. To produce a crowd simulation, we need to firstly understand the crowd simulation systems, there are two main type of crowd simulation systems: Macroscopic and microscopic. Macroscopic models focus on the big systems. Microscopic models study the behaviour and decisions of individual pedestrians and their interaction with other pedestrians in the crowd. Macroscopic model makes the population as a model object, regardless of interaction between individuals (Fluid mechanics model). Microscopic models describe the detailed behaviour of pedestrians. Microscopic model can be further divided into Continuous type and Discrete type.2.1.1 AI Crowd DynamicsThe behaviour of real-world crowd has two important aspects that guide the motion of real people: – Goal Seeking: Finding the destination of each action.- Least-Effort strategy: Tendency of people to reach the destination along a ‘least-effort path’.According to the two aspects, people traveling along a smooth trajectory, as this require less steps to reach the destinations. Agent simulation requires the agent’s destination, agent’s speed, and collision avoidance between agents, since those factors can affect the ‘least effort’.The concept of personal space can be also considered as an important factor when simulating crowds’ dynamics. The personal space can be thought of as an invisible circle surrounding each agent, which should not be enter by others. The size of this area is depending on serval factor, such as environment, situations, roles etc. the personal space decide the minimum distance that should be maintained among agents. 2.1.2 Agent-based modelMost of today’s crowd simulation algorithms are make crowd as one (Flow-based Approach) then use algorithms to control the individual movement. They produce a crowd logic control system then divide into agent movement section. Agent-based model simulate crowd from low level (individual agent) to high level (group of agents).Agent-based model is a kind of microscopic model that predict complex phenomena by simulating simultaneous actions and interactions of multiple agents. Pedestrian decision-making and action patterns with agent-based model are more in line with human behaviour. The key to this model is that simple behavioural rules can produce complex behavioural outcomes. Agents have been given a degree of intelligence and goal-oriented, their action are depending on their individual rule, which gives more customisability.2.1.3 Design factors review- Crowd: group of peopleRefers to the number of individuals that the system can simulate in real time.Some systems focus on simulating realistic human behaviour within a crowd. They usually work with smaller groups and study the interaction both between individuals and with the environment.- Goal: DestinationRefers to whether individuals have one main task, such as walk toward one exit, or whether they have several routes to follow. Systems that focus more on individual behaviours may also have some sub-goals within the simulation, such as going through via points, helping others to an exits or to performing some specific actions- Roles: Leader/policeSimulating realistic human behaviour within a crowd implement microscopic approaches where individuals have different decision. Those characteristics are generally given by a set of parameters whose values are assigned in a probabilistic manner or by the scenario author.- Reaction Trigger: Interaction between individuals and environment.Some systems using alarms to start the evacuation.- Behaviour method: directional movement choicesBased on few numbers of techniques: rule-based models, physical models, cellular automata and finite state machines.- Environmental types: SurroundingFor example: home, station, ship2.2 Graph Theory and Exist Path Planning Algorithms 2.2.1 Graph TheoryThe Graphs in this context refers to a collection of nodes and edges which can be considered as many nodes representing locations and edges as paths connecting them. A graph can be undirected that means the paths between nodes can be traversed in both directions or directed, in which case the paths are one way. Both nodes and edges can have associated values. These values could be the distance between nodes or the time it takes to complete an action. The individual working inside the graph cost such value to complete an action.In order to work with a graph there needs to be an efficient method of searching through the node. There are two basic high-level algorithms for searching through nodes.The first is called a breadth-first search: The Agent marks its current location as 1, then it numbers all adjacent nodes as 2 etc, until the destination node has been reached. It then counts backwards in ones to the start to find a path to the goal.Breadth first search examines all possible nodes in the graph to find the best path but due to its thoroughness it’s time consuming and not optimal The second is called a depth first search which is much simpler and quicker, but less effective. Instead of finding the best path, it finds a path beginning at the agent position an adjacent node is found a numbered and then an adjacent node to this is found and numbered. This continues until a dead end is reached at which time we return to the last node where there was another direction to try and head off in that direction. when the destination is found the nodes are then counted backwards again to give the path.2.2.2 A* algorithmsBasic pathfinding problem is to generate a continuous path that connect between a start point S and a goal point G, while avoiding collision with known obstacles. Around the proposition of path finding, some algorithms have been generated.A* is one of the most popular algorithms use to find a path. A* is a directed breadth-first search and combines the advantages of uniform-cost and greedy searches using a fitness function: f (n)=g(n) h(n);where g(n)denotes the accumulated cost from the start node to node n and h(n) is a heuristic estimation of the remaining cost to get from node n to the goal node. The section below is an example of A* Operation.Example of A* OperationFirst, all the nodes in the graph are numbered row by column. We then create two lists, an open list and a closed list. These will keep track of the nodes that we visited and persist. Each node is given full values that are used in calculating the path. An estimate value(E) which is the cost for agent get to the destination will then be calculated, this can be measure in linear or any other way. Another second is the movement cost. This value is essentially the utility in moving to the node from another node which could be based on the actual distance from one node to another. we then store a calculation that adds together the two values and store the Nodes parent which is the closest node along the path. Start by placing the starting node into the closed list, since the starting node have been already visited, all the nearby node that aren’t blocked or in the closed list will be add into the open list. Then calculate the estimated cost(E) for each of the node inside the open list, and look at the movement cost to calculate the sum. While we’re doing this calculation, all the neighbours are linked back to the current node as their starting node repeat the process, node their parent we will need to examine in the open list we now get the node in the open list with the lowest sum. This node becomes a new location to start searching the neighbours again the new location node is added to. The process has been repeated until it reaches one node away from the destination, agent will have a link of parents all the way back to the start point, with minimum cost.2.2.3 NavMeshNavMesh stand for AI Navigation Meshes, NavMesh are built in Unity feature used to divide an environment into navigable area which the A* algorithms can then be used on for path finding. NavMesh divides the model into a series of polygons and assign a cost to each, this cost is considered in the pathfinding algorithm in determining the best path for an agent to take. NavMesh has several tabs, Agent; Area; Bake; Objects. The first defines the Agent which contain four main properties, that use to define agent size and movement abilities such as step height. The area tabs are where to define different costs for different parts for NavMesh, the cost is used for A* Algorithms to calculate the best path across the mesh from one location to another. The Bake tab turns the mesh into navigation meshes. This determines where the agent should be able to travel using the baked agent’s size. The last object tab is where you can align specific area types to different parts of the mesh. This tab also allows you to specify which parts of your scene you want to create mesh.NavMesh calculate A* algorithms per frame. Agent speeds is representing the move distance of agent each frame. NavMesh give such movement a direction and destination. NavMesh agent is one of the components relate to the NavMesh, this allow the agent search for a path to a certain goal, NavMesh agent contain several factors to control individuals including speed, size, acceleration, Avoidance Priority etc.2.3 AI algorithms and Finite State Machines2.3.1 Finite State MachinesA finite state machine (FSM) is a conceptual machine that can be in exactly one of any given number of finite States at any time. FSM is used in the field about artificial intelligence to define among other things. the behaviours of agents are represented as a graph with nodes that represent their states and transitions that define the path from one node to the next, once a state has been entered. The agent stays in that state until a condition on the transition is met. For example, If the Agent is in a state, it will continue performing the associated behaviours until a condition is met on any of the transitions exiting the state, as another condition is met the agent transitions into that state.2.3.2 Goal-Oriented Action PlanningGoal-orientated action planning (GOAP) is an AI technique that has all the elements of a finite state machine but works with them very differently. FSM defined behaviour and conditions to drive the agent at fulfilling some goal. In particular, FSM could have one massive graph or divided into smaller units. However, GOAP also uses graphs for its processing but differs from FSM which actions and goals are decoupled. Actions are free elements within the system that are mixed and matched to make goals. When they are presented, instead of having a set list of actions that need to be performed to achieve a goal, GOAP allows for number of solutions to be chosen from. In FSM state are moving from one to another if one has achieved. However, in GOAP systems state are depends on agent’s current status. GOAP has a precondition and in effect the precondition is a state that must be met before the action can take place. The effect is how the action leaves the status of the agent or the world after it has occurred a set of actions forms a kind of puzzle or set of dominoes where the preconditions can be matched with effects and the effects match with preconditions to create action chains. The conceptualisation of a GOAP system contain actions, goals and world state, those factors being fed into a Planner then generate plan according to the goals and starting States to determine which plans are achievable. Then planner uses a pathfinding algorithm to find the best path. Once a plan has been generated, the agent achieving its goal using FSM that basically moves the agent to where the action needs to take place and then performs the action. The systems will keeps checked to see if the plan is still valid, if the plan is not valid, then the entire plan will be discarded and planner will try to gives another one. GOAP systems contain high customisability and flexibility. As more and more action can be added to the pool, those action can still be picked by the planner automatically, which means very little extra code to recognize graphs like the ones in complete set ups of FSM as the graphs generated on the fly by the Planner.- GOAP Agent classThe GOAP agent is the regulator for the GOAP system which takes care of the basic agent actions and make sure that it’s going to run the plan up that it’s looking for goals that it’s keeping track of the world state as it changes. The GOAP agent is a component that relate to the FSM, as it works as a Converter that convert plan into agent action and load the actions which form the agent basic behaviour structure. The GOAP Agent class should not including the physical reaction taken by the agent, this is because those physical components should depend on the types of agent, as an example, Agent has different size, therefore different obstacle avoidance distance.The GOAP agent class will initialize the queue, planner, action list and the state machine, then it creates an idle state which would get the state and the goal that planner plan for, If the planner has a plan then the FSM will be switch to perform action state then the Agent will move to the goal. However, if there is no plan found by the planner, the agent will stay at its current location, looping inside the idle state until planner gives it a new plan. There won’t be any action perform until agent reach the goal, as function ‘requiresInRange’ will keeps checking the distance between the agents and the destination. Once the agent reaches the goal range, the action will perform, the queue will keep checking if the action has finished. After the action has been done, the pervious action will be removed from queue and state machine will return to its idle state. A complete finite state machine with GOAP structure has done.- GOAP Planner class‘GOAP planner’ plans what actions can be completed to fulfil a goal state. However, it is different compare to the GOAP Agent class, as GOAP agent class converts the plan into actions state. Firstly, the planner builds a HashSet that stores all the usable actions could running based on the ‘CheckProceduralPrecondition’ which is the agent status. Then a Node class has been introducing to the systems, with ‘cost’, ‘parent node’, ‘state’ and ‘action taken’. A list of nodes can be considered as leaves in a tree, which will provide a solution to the goal. As there are leaves, list of usable actions, cost of each action, the planner can construct a graph based on those factors. The Graph is set to Boolean value, it will test through all the leaves and see if the parent state has the conditions for this leaf’s preconditions, if at least one solution was found then return true. Moreover, we can calculate the cheapest cost action plan from those factors. Once the cheapest plan has been found, those plans will be put into the queue and send to the GOAP agents.- GOAP Action classThe Design of GOAP Action is the specification of action. Each action will inherit from GOAP Action class. GOAP Action class inherit a whole bunch of actions even if they don’t get used, the GOAP Agent class which work together with GOAP planner will then push the action as a state. Hence, the agent will perform the action state. GOAP Action in the system can be inherit as many times as needs, if another newly action needs to be added, this class concise the structure of code. GOAP Action will not connected to anything at all, it’s just sort of sitting there itself and has preconditions and has a fix. When there’s a goal that comes in, the planer gathers up all these actions and tries to paste them all together to see where the preconditions and the effects join to make a chain which becomes a new plan. However, if they don’t have preconditions in a fix that will join with other actions which mean they might never get to that plan.- GOAP Listener classIn order to make the GOAP system be versatile, a ‘format’ is required in order to differentiate between different agent types. This ‘format’ contains common features in agents with different logics. Since, all types of agent will have their state of doing action. Therefore, a GOAP listener interface has been introduce to the systems. The GOAP listener is a plan-collecting interface that collect the world data for the agent which used for GOAP planning. It contains serval components. The following components are been set as the common features.- ‘Get World State’ define the starting state of this agent and the world state. Supply what states are needed for actions to run.- ‘Create Goal State’ Give the planner a new goal, so it can figure out the actions needed to fulfil it.- ‘Plan Found’; ‘Plan Failed’, ‘Plan aborted’, ‘Action finished’ Those are the action for further develop, provide a way for adding feature to the agent when some fortuitous event happens.- ‘Move Agent’ This function design to control the movement action taken by the agents, called during update, move the agent toward the target for the next action to be able to perform, also return true if the agent has reach the target then the next action can perform. 3. Design
3.Evaluate the following limits, or explain why they do not
Question 3.Evaluate the following limits, or explain why they do not exist. Make sure to show all working. Attachment 1 Attachment 2 ATTACHMENT PREVIEW Download attachment attachment_08102019.png 2. For this question, we define the rules f(x) = ex, g(x) = sin(2x) cos(3x) and h(x) = vx 2. (a) Write out the following explicitly. You do not need to give a domain and codomain. i. (foh)(r) iii. g(x?) ii. (hog)(x) iv. f(a y) (b) For the rule f defined above, give a domain and the corresponding range. (c) What is the range of the function k : R – R, where k(x) = 3 – sin 091 [12 marks] ATTACHMENT PREVIEW Download attachment attachment_08102019.png 2. For this question, we define the rules f(x) = ex, g(x) = sin(2x) cos(3x) and h(x) = vx 2. (a) Write out the following explicitly. You do not need to give a domain and codomain. i. (foh)(r) iii. g(x?) ii. (hog)(x) iv. f(a y) (b) For the rule f defined above, give a domain and the corresponding range. (c) What is the range of the function k : R – R, where k(x) = 3 – sin 091 [12 marks]
Does the protection of one domestic industry harm another? Can
Question Does the protection of one domestic industry harm another? Can you please provide the reference you used so I can do further research?
is torture ethical in terrorism investigations? What if it saves
Question is torture ethical in terrorism investigations? What if it saves hundreds of lives?How will ethics play in the future of law enforcement and related decision making?should there be mandatory ethics courses? Why or why not? If so, how often should they be attended?
Are there any police departments currently requiring mandatory ethics training
Question Are there any police departments currently requiring mandatory ethics training on an annual basis? If so what departments?
Summary
I have a summary
Question If you were to ask 10 people what they believe to be
If you were to ask 10 people what they believe to be the most significant issue facing healthcare today, you might get 10 different answers. Escalating costs? Regulation? Technology disruption?These and many other topics are worthy of discussion. Not surprisingly, much has been said in the research, within the profession, and in the news about these topics. Whether they are issues of finance, quality, workload, or outcomes, there is no shortage of changes to be addressed.In this Discussion, you examine a national healthcare issue and consider how that issue may impact your work setting. You also analyze how your organization has responded to this issue.To Prepare: Review the Resources and select one current national healthcare issue/stressor to focus on. Reflect on the current national healthcare issue/stressor you selected and think about how this issue/stressor may be addressed in your work setting.By Day 3 of Week 1Post a description of the national healthcare issue/stressor you selected for analysis, and explain how the healthcare issue/stressor may impact your work setting. Then, describe how your health system work setting has responded to the healthcare issue/stressor, including a description of what changes may have been implemented. Be specific and provide examples.referencesPoghosyan, L., Norful, A.,
Question In clinical settings, some of the most common questions that patients ask
In clinical settings, some of the most common questions that patients ask are Why do I have this? What caused this disorder? Will it ever go away? These emotional questions can be difficult to ask and to answer. However, for patients to come to terms with their diagnoses and adhere to treatment plans, they must have an understanding of factors that might have caused, or continue to impact, their disorders. As an advanced practice nurse, it is important that you are able to explain disorders, associated alterations and symptoms, and changes that might occur within your patients’ bodies.To Prepare Review this week’s media presentation with Dr. Terry Buttaro. Laureate Education, Inc. (Executive Producer). (2012d). Introduction to advanced pathophysiology. Baltimore, MD: Author. Reflect on the importance of developing an in-depth understanding of pathophysiology. Select a disorder from the following list: Adrenal insufficiency (Addison’s disease) Atherosclerosis Cholelithiasis (gallstones) Colon cancer Cystic fibrosis Hemophilia Nephrolithiasis (kidney stones) Osteoporosis Parkinson’s disease Tuberculosis Select one of the following patient factors: genetics, gender, ethnicity, age, or behavior. Reflect on how that factor might impact your selected disorder, as well as potential associated alterations and symptoms. Identify the pathophysiology of the associated alterations, including the normal and altered cellular function. Consider both intra- and extra-cellular changes that occur.Post a brief description of a patient scenario involving the disorder and the factor you selected. Explain how the factor might impact your selected disorder, as well as potential associated alterations and symptoms. Finally, explain the pathophysiology of the associated alterations, including changes in cellular function.
Question Locate a news article that strikes you as exemplifying someone acting ethically.2.
Locate a news article that strikes you as exemplifying someone acting ethically.2. Initial Post Describe whether the individual in question is using a teleological theory or a deontological theory.
Question Write a 2,200, 2,500 word argument essay in which you identify a
Write a 2,200, 2,500 word argument essay in which you identify a facet of modern technology that’s debatable or controversial because people may or may not rely on it too much. Persuade audience that this facet either should or shouldn’t be limited to people’s reliance on it. Use at least six secondary sources to support. min. of 3 from articles from expanded academic ASAP,a nd min 4 from other secondary sources. Full instructions attached to order
Question In 500 words or more (no less), research the trolley problem and
In 500 words or more (no less), research the trolley problem and tell me why you would or would not pull the lever. Make sure you use the concepts introduced in the material above. You may use examples, but you will still need to include a full scholarly definition of each, with commentary. You may use any scholarly source other than a dictionary, to include online video lectures. You may use Wikipedia as a starting point, but be aware that Wikipedia is not a scholarly source and therefore can never be quoted in your paper or counted as 1 of your 5 bibliographic citations. You will need to include inline citations in your essay (last name, date, pg#) and must still cite any sources beyond the five required that you use to write your paper in the references section of your essay. If you include an inline citation, there must be a corresponding entry in the reference list or bibliography. You can find tools and examples of APA citation formats at the Purdue University Online Writing Lab.You are required to submit a separate annotated bibliography. Using the resource center and the scholarly research tools I listed in the course introduction, for your research. With that information, create an annotated bibliography with 5 sources related to the ethical theory of the week.
HiThese are my homework questions and I need answers so
Question HiThese are my homework questions and I need answers so I can check with my answers to see if the are correct.Please give 4 requirements from the problem (1) and 4 risks associated with the project (3).And please also give SDLC to be used and explanation for each step.I really hope that you explain each step clearly so I can understand.Thanks. ATTACHMENT PREVIEW Download attachment qa_attachment_1565410983914.jpg 2. Problem Description: An automatic patient monitoring system is needed to be developed for a home-bound patient. The system is required to read out the patient’s blood pressure and heart rate and compare them against previous best readings or safe ranges. The system also has activity sensors to detect when the patient is exercising and adjust the safe ranges. In case an abnormality is detected. the system must alert the nearest hospital. (Note that the measurements cannot be taken continuously. since heart rate is measured over a period of time. and it takes time to inflate the blood-pressure cuff.) The system must also (1′) check that the analog devices for measuring the patient’s vital signs are working correctly and report failures to the hospital; and. (if) alert the owner when the battery power is running low. 3. Requirements: 1. Outline the four requirements for the given problem description in (2) above and prioritize them. 2. Apply different phases on life cycle in the task given above and list down associated activity for each step. 3. What are some of the risk associated with the project?
1) A food manufacturer included the following claim on the
Question 1) A food manufacturer included the following claim on the label: “Helps maintain normal iron levels.” If you evaluated the claim, you would:Select one:a. be suspicious because this is a structure function claim requiring no advance approvalb. know this is an accurate statement because it was reviewed by FDA before being put on the labelc. know that the manufacturer has done extensive research on the claimd. be aware that the USDA has done research on the manufacturer’s claim2)If a person has inherited genetic coding that is related to heart disease, what effect might dietary practices have on this person’s health?Select one:a. no effect because development of the disease has been predeterminedb. differing effects dependent upon the type of genetic messagesc. completely reverse the genetic coding that has been inheritedd. will work the same way for everyone who has heart disease.3) In the USDA Food Patterns, one ounce of meat is equal to all of the following except:Select one:a. 1 oz cooked fishb. 1 eggc. 1 tsp peanut butterd. 1 cup cooked legumese. 1/2 oz nuts or seeds4) Oils are not a food group but are important because they contribute vitamin E and essential fatty acids to the diet.Select one:a. use oils instead of solid fats when possible in your dietb. butter contains the same food ingredients as margarinec. solid fats include salad dressing, peanut oil and margarined. a and b5) When planning a vegetarian diet:Select one:a. will be difficult when using USDA recommendationsb. the vegetable group contains legumes (beans), which provide a source of proteinc. all soy foods and soy milk contain the same nutrients as cows milkd. nuts and seeds are high in fat and should be limitede. vegetarians don’t need as much protein and non-vegetarians6) If a nutrient does not have a Tolerable Upper Intake Level:Select one:a. it is safe to consume in any amountb. insufficient data exist to establish a valuec. no caution is required when consuming supplements of that nutrientd. it is safe when supplemental levels are added to foods.
Business Ethics
Dear writer, Please see attached. Compare the decision-making styles of the others with your mine. Where are my styles complementary, and in what ways my styles differ? How would you approach working together to make an ethical decision? What strengths and weaknesses of each style should be considered during the decision-making process?
Question Submit an analysis of the organization that will use the database developed
Submit an analysis of the organization that will use the database developed for the final project. Select one of the scenarios provided for the final project. Using the selected scenario, analyze the organization to determine the problem/challenge, business requirements, and limitations of the current system(s). Explain how the problem or challenge impacts the various departments and operations within the organization. Specifically, the following critical elements must be addressed: Organization A. Problem: Analyze the organization to determine the problem/challenge, business requirements, and limitations of current system(s). B. Departments and Operations: Explain how the various departments and operations within the organization are impacted by the issue or challenge. Guidelines for Submission: Your paper must be submitted as a three- to five-page Microsoft Word document using appropriate modeling language and/or diagrams. It should use double spacing, 12-point Times New Roman font, and one-inch margins. It should include at least three sources, which should be cited in APA format.
What are key structures of the organizational structure for international
Question What are key structures of the organizational structure for international trade?
The post THE TEXT BASED LEARNING APPROACH AND THE SLA THEORY BEHIND THAT appeared first on Smashing Essays.