Analyzing quot Writing Assignment Help. Analyzing quot Writing Assignment Help.
(/0x4*br />
Read this book (The Rose Metal Press Field Guide to Writing Flash Nonfiction): “Introduction”; Mysterious, Ambitious, and Intimate” (4 chapters); “No Ideas but in Things” (5 chapters)—pp. XIII-56
You have to read this book from the beginning to page 56 to answer the assignment.
Craft Group prompts should be discussion starters that explore some specific quote from The Rose Metal Press Field Guide to Writing Flash Nonfiction chapters assigned for this week. This is your chance to grapple with the notions that Moore and other writers suggest about writing in general or the flash nonfiction specifically. Think of craft as the deliberate choices writers make when creating their work. Be sure to
(1) introduce and include a quotation from the chapter, video, or podcast you’re discussing that exemplifies the craft element you want to explore.
(2) Tell us what you think about the quote, then
(3) ask an open-ended question that refers to it.
You’ll need all three elements to get full credit. These prompts should be ideas that get us started thinking and discussing.They should not be questions that can be answered with a fact or with a yes or no.
This is an example to clarify the assignment for you.
Example: In The Rose Metal Press Field Guild to Writing Flash Nonfiction, Dinty Moore writes, “The brief essay, in other words, needs to be hot from the first sentence, and the heat must remain the entire time.” He goes on to explain that “the heat might come from language, from image, from voice or point-of-view, from revelation or suspense, but there must always be a burning urgency of some sort, translating through each sentence, starting with the first.” All this heat is a daunting imperative, but I think it’s important for writers to get adept at finding the heat of their ideas and stories in order to write engaging prose. Where do you find heat in Lia Purpura’s essay “Augury,” which we had to read for this week? Does the heat come from more than one source?
This is the link for the book:
https://read.amazon.com/?asin=B009GK410K
Analyzing quot Writing Assignment Help[supanova_question]
Need Help with my code Programming Assignment Help
My code is currently not working out like I want it to , it is supposed to split up the three components of a floating point number into the sign, exponent and fraciton part of a 32 bit int. Here is the code:
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <assert.h>
#include “floats.h”
uint32_t u;
uint32_t sign;
uint32_t exponent;
uint32_t fraction;
// separate out the 3 components of a float
float_components_t float_bits(uint32_t f) {
sign = ((f>> 31) & 0x1);
exponent = ((f >> 30) & 0x7F);
fraction = ((f >> 23) & 0xFFFFFF);
}
Floats.h
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <assert.h>
/// We use `union overlay’ to obtain the raw bits of a `float’-type
/// value, by storing the `float’ in the `f’ field and then using the
/// `u’ field to obtain the bits.
union overlay {
float f;
uint32_t u;
};
/// A struct suitable for storing the three components of a `float’.
typedef struct float_components {
uint32_t sign;
uint32_t exponent;
uint32_t fraction;
} float_components_t;
/// For the `float_bits’ exercise:
float_components_t float_bits(uint32_t bits);
int is_nan(float_components_t f);
int is_positive_infinity(float_components_t f);
int is_negative_infinity(float_components_t f);
int is_zero(float_components_t f);
/// For the `float_2048′ exercise:
uint32_t float_2048(uint32_t f);
/// For the `float_less’ exercise:
uint32_t float_less(uint32_t bits1, uint32_t bits2);
/// For the `float_print’ exercise:
void float_print(uint32_t f);
Test Float_bits
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <assert.h>
#include “floats.h”
int main(int argc, char *argv[]) {
for (int arg = 1; arg < argc; arg++) {
union overlay input;
input.f = atof(argv[arg]);
float_components_t c = float_bits(input.u);
printf(“float_bits(%.9g) returnedn”, input.f);
printf(“sign=0x%xn”, c.sign);
printf(“exponent=0xxn”, c.exponent);
printf(“fraction=0xxn”, c.fraction);
printf(“is_nan returned %dn”, is_nan(c));
printf(“is_positive_infinity returned %dn”, is_positive_infinity(c));
printf(“is_negative_infinity returned %dn”, is_negative_infinity(c));
printf(“is_zero returned %dn”, is_zero(c));
}
return 0;
}
I am really stuck and not sure what to do please any help would be much appreciated
[supanova_question]
Global Supply Chain Management OPER 8340 Assignment #2Global Supply Chain Management OPER 8340 Assignment #2 Business Finance Assignment Help
Global Supply Chain Management
OPER 8340
Assignment #2
Using the information provided in your text for GoGreen biofuels (pages 15-16, and at the end of each chapter), address the following:
- Describe the actions that GoGreen should take to evaluate its suppliers. Be specific and provide examples.(10 marks)
- As an importer of bioethanol, what are some of the major risks that GoGreen faces with the supply chain? Be specific and provide examples. (10 marks)
- Evaluate the impact of each risk (use tables 12.2, 12.3 and 12.4) that you have identified.Explain your rationale.Be specific. (15 marks)
- Describe strategies that GoGreen can take to mitigate security risks associated with its supply chain.Be specific and provide examples.(10 marks)
[supanova_question]
Week 5- Evaluating Learning Styles Writing Assignment Help
You have become a reflective practitioner and have learned, applied, and evaluated teaching theories as well as analyzed and evaluated different models of learning styles. For this assignment, you will watch segments from the videos: The school that turned Chinese: Episode 1, Episode 2, and Episode 3. The videos are about a British school that experimented with two different teaching styles: the method they had been using, a more student-centered approach; and the Chinese method, a more teacher-centered approach. The school brought in five teachers from China to complete the experiment. The videos document this experiment with assessment and analysis of each approach.
Watch the following segments:
Episode 1: Segments 5, 6, 12, & 15
Episode 2: Segments 6 & 10
Episode 3: Segments 5, 6, 11, 14, & 17
As you watch each segment, answer the following questions:
- Was the method teacher-centered or student-centered?
- How did the students respond to the method?
- Were the students’ responses academic or behavior related? How can you tell?
- Based on question 1: When another approach was utilized by the teacher (or another teacher), did it change the response of students?
- If you answered yes to #4, explain why you think a change occurred. If you answered no, why did no change occur?
- Was there a match between teaching style and learning style demonstrated in any segments? Explain.
Using your notes from the segments you viewed of The School that Turned Chinese, it is now your turn to present an argument using evidence from your notes for or against learning styles. You must support your conclusion with at least five scholarly resources from peer-reviewed journals. Please also provide examples from the video that support or contest these learning styles. Make a clear a compelling argument for your point of view.
Length: 5-7 pages.
Your paper should demonstrate thoughtful consideration of the ideas and concepts presented in the course by providing new thoughts and insights relating directly to this topic. Your response should reflect scholarly writing and current APA standards where appropriate. Be sure to adhere to Northcentral University’s Academic Integrity Policy.
[supanova_question]
How to generate netlist for SR Latch using Nand Gate.? Engineering Assignment Help
1) Begin by creating a netlist for SR-Latch. Latch should have two inputs (S and R) and two outputs (Q and QN). Be sure to also include ground and VDD. Make each transistor of your latch minimum-sized (use the minimum width and length for each transistor).
2) Simulate SR-latch to ensure that it works properly (use a transient analysis)–test setting Q to 1, holding this output value, resetting Q to 0, holding this output value, asserting set and reset at the same time, and holding this output value. I suggest that you create a subcircuit (in Spice, this is .SUBCKT) of your latch.
3) Then we need to modify the code to create a fanout-of-4 (FO4) at each output of SR-latch–this is one common way to add load to a circuit in order to more accurately measure its performance. To create a FO4 configuration, use two additional, identical copies of your latch as loads. Connect your Q output to both the S and R inputs of one of your load latches and connect your QN output to both the S and R inputs of your other load latch. Then we must measure the performance of your first latch and just use the other two copies as loads. You must also use a separate DC source for the VDD of each latch (this will ensure that you only measure the current of the first latch when calculating power and energy performance).
Note:
i) Measure and record the rise-time of output Q (from 10% to 90% of VDD) and propagation delay (from S to Q) for the set operation. Also measure and record the fall-time of output Q (from 90% to 10% of VDD) and propagation delay (from R to Q) for the reset operation. I recommend using CosmosScope to make these measurements.
ii) Measure and record the average current required (the current from the supply voltage, VDD) during your SR-Latch’s (1) hold operation, (2) set operation, and (3) reset operation (again, I recommend using CosmosScope to make these measurements). Calculate the average power dissipated during your SR-Latch’s (1) hold operation, (2) set operation, and (3) reset operation. Also calculate the average energy dissipated during your SR-Latch’s (2) set operation and (3) reset operation.
iii) Obtain waveform of your inputs (S and R) and outputs (Q and QN) showing you first asserting set and reset at the same time, and afterwards, immediately performing the hold operation. Describe what behavior you are observing and why this is occurring.
Note: >Now resize your transistors (change the NMOS and/or PMOS widths) to obtain equal rise- and fall-times. Do this in your Spice subcircuit (to ensure that all of your latches (the SR-Latch being measured and the two load latches) are still identical). Now obtain the following information from the FO4 simulation of your resized SR-Latch.
iv) List and explain the widths you chose for each of your transistors
- For example: what calculations did you perform, what was the sequence of changes/simulations you performed which led you to your final transistor values, etc.
- v) Compare and explain these results with your initial, minimum-sized SR-Latch
- For example: how did the delays change (what percent increases/decreases and why?), how did the powers change (what percent increases/decreases and why?), etc.
[supanova_question]
[supanova_question]
Task 2: The Financial Statement Learn about financial statements, how to conduct a financial analysis, and begin to forecast. Read Part 2 of Corporate Finance: Theory and Practice, Third Edition Business Finance Assignment Help
Task 2: The Financial Statement
Learn about financial statements, how to conduct a financial analysis, and begin to forecast.
-
-
-
-
-
-
-
-
-
-
- Read Part 2 of Corporate Finance: Theory and Practice, Third Edition
- Watch Section 2 of the LinkedIn Learning course – of Section 2 – Understanding Financial Statements from the course: Finance Foundations with Kay Stice and Jim Stice
- Read about Finance Statements in Study Session 7,8 (reading 22-28) of CFA Level I Exam Companion
- Read Part 1, chapters 1-3, of The Portable MBA in Finance and Accounting, Fourth Edition
-
-
-
-
-
-
-
-
-
Research Companies’ Financial Reports
- Review Ford Motor Company’s Financial Report
-
- Research Ford’s Financial Report
- Read Ford’s success story in chapter 18 of Enterprise Risk Management: From Incentives to Controls, Second Edition
-
- Review Fiat Chrysler Automobiles’ Financial Report
- Review General Motors’ Financial Report
Often companies, in an attempt to be transparent, created a one page infographic overview of the financial report.
Have you ever made an infographic? Use the resources and tutorials at Piktochart.com to learn how.
Task 2: The Financial Statement Learn about financial statements, how to conduct a financial analysis, and begin to forecast. Read Part 2 of Corporate Finance: Theory and Practice, Third Edition Business Finance Assignment Help[supanova_question]
Practical Connection Assignment on Business Intelligence related to my work as a Business Analyst in 20 minutes Computer Science Assignment Help
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.
[supanova_question]
Read the follwoing article create a powerpoint presentation on global health/public health systems Health Medical Assignment Help
There are six building blocks in the health system, focus more on the health workforce (human resource).
our presentation will be graded using the following rubric:
Criteria
|
Points
|
Presentation summarizes the week’s readings, highlights key concepts associated with the readings, and define key terms associated with the concepts.
|
25
|
Presentation provides at least one relevant current event (news item, research report) related to topic/content covered in the readings.
|
25
|
Presentation connects the topic/content to life experience e.g., current or future job.
|
25
|
Presentation has approximately 20 slides.
|
25
|
Presentation poses two open-ended questions that will guide class discussion for the week.
|
25 |
[supanova_question]
write about either American and french revolution or karl marx Humanities Assignment Help
i chose prompt ONE: comparing american and french revolutions!
write minimum 1000 words
Choose ONLY ONE prompt from the below list to write a short paper in two single-spaced pages (about 1000 words). Before writing your paper, mark all relevant sections from your text book, read them thoroughly –more than once, if necessary-, structure and organize information, and compose your paper as your own account of the subject. Make sure you address all the questions and issues raised in the prompt in a coherent and structured essay. Use your own words and sentences in your explanation and analysis. DO NOT copy-paste or insert bulk quotes. Use your textbook and lecture notes only! The use of external sources, printed or online, is strictly prohibited.
1.Compare the American and the French Revolutions. Pay attention and discuss the social, cultural, and economic contexts in the US and France. What led to these revolutions, how they unfolded, and what were the major consequences?
2.Explain and discuss the Marxist critique of capitalism. What aspects of capitalism Karl Marx and other socialist thinkers targeted? In what ways socialism was proposed as an alternative to capitalism? Why did socialism find such popular support in the latter half of the nineteenth century but failed to replace capitalism?
Textbook link: ( the answers to these questions would be found from chapter 15-17)
make sure to use the text book and ppt only to answer the question ! also im pretty sure that chapter 15 along with the ppt on chapter 15 will have the answers for the first question on the american and french revolution
[supanova_question]
Read the case and answer the questions Business Finance Assignment Help
Case Instructions–4 pages maximum
1. ( 25 points) How did Apple amass so much cash?
In the Apple Financial Policy case, it is stated that so much cash was created because of high profitability, the reduction of product costs, and efficient management of Apple’s capital structure.
As a supply chain analyst, you want to verify those claims. Use the data in Exhibit 5 to compare the the two years of 2002 and 2012.
a. Create a a data table comparing the growth rate of the following for the two years of 2002 and 2012:
- Revenue, COGS, SG&A, Gross Profit, EBIT, Inventory, and Cash
- Compare the growth rate of the following: COGS, SG&A, Gross Profit, EBIT as percentages of revenue.
b. Based on the data table, what is your analysis of how Apple’s supply chain strategy has changed in that decade in order to generate so much cash? You can address and/or chart how the supply chain strategy has changed relative to key concepts: product characteristics (functional vs innovative product supply chain design), channel characteristics (online vs retail), customer value proposition, customer segments, economies of scale vs forecast uncertainty, lead time, push-pull boundary etc.
2. (25 points) Cost Structure
Using the sec.gov/edgar financial database, compare Apple (APPL), HP Inc (HPQ), and Dell Technologies (DELL) over the most recent three completed fiscal years for which 10-K filings are available (2019, 2018, 2017).
a. Cost Structure: Create a table comparing the cost structures of the three companies over the most recent fiscal year (2019) for which 10-K were submitted.
b. What are the significant differences in the cost structures of the three companies and why are they different?
3. (25 points) CCC and Inventory Turns
a. Using three years of 10-K financial data, calculate the annual inventory turns for each company for each of three years. What is the percentage change of each company’s turns over the three year time frame, and how do the companies compare to each other? What is your analysis of their operating strategy?
b. Using the same three years of data, chart each company’s DIO, DSO, DPO, and overall CCC. What can you infer about the supply chain strategy among these three companies?
[supanova_question]
https://anyessayhelp.com/
make sure to use the text book and ppt only to answer the question ! also im pretty sure that chapter 15 along with the ppt on chapter 15 will have the answers for the first question on the american and french revolution