Premium Essay

Call to Write Assignment

In:

Submitted By tymk3553
Words 296
Pages 2
“A Call To Write” Assignment

I remember a situation that made me feel I had to respond in writing. Last summer I went to Japan for summer vocation. When the plane arrived at the airport, I tried to pick up my belonging at the

baggage carousel. With so many bags at the carousel, I patiently waited my luggage to come out. As

passengers started to pick up their bags, my luggages are nowhere in sight. Therefore, I reported the situation

to the airport staff right away. I gave him an accurate description of my baggage and told him the flight

number. But for some reason, I had trouble understanding him in English. I realized the situation would only

become worse if I continue talking to him in English. So I took out my notebook and wrote down the

description of my luggage and my flight number. I handed him the note and it seems like he understood my

situation. He took me to the baggage claim and called the airline crew. Finally, my baggage is found on the

next flight.

The reason I choose to write rather than to talk is because I realized that we both had trouble

understanding each other in English. In addition to that, I found sometimes writing is a more effective tool in

making other people understand your position.

My purpose in responding to the call to write was to make the airline staff understanding my

situation. The airline staff was my audience. I wanted to create a cooperative relation with my audience and I

would use humorous and reflective tone when writing to my audience. In order to make my audience

understand me, I would observe the situation carefully and analyze every perspective before I start to

Similar Documents

Free Essay

Data

...CMIS102 Homework Assignment 1 (Worth 13% of your grade) Student Name: Jorge Mazuera Class/Section:1202CMIS102 6380 Professor Name: Dr. Noni Bohonak Assignment due date: 08/31/2014 Problem definition: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. Problem= We are trying to find out what the square footage of each room of a house and the square footage of the entire house. The input would include the length and width of each room and the formula to find the answer. The output would need to include the square footage of each room and the total square footage of the house. If all the code is properly executed, we will be able to input any sized room and quickly be able to find the square footage. B. Program Design – Following the directions in the assignment, clearly write up your problem design in this section and comment your pseudocode. Main module Declare EntireHouse As String Declare LivingRoom, As Float Declare Kitchen As Float Declare BedRoom As Float Declare BathRoom As Float Write “Square Footage Program” Write “This program computes the square footage of individual rooms and” Write “the total area of houses” Call Input Data module Call Perform Calculations module Call Output Results module End Module ...

Words: 283 - Pages: 2

Free Essay

Cmis 102 Hw2

...CMIS102 Homework Assignment 2 Student Name: Class/Section: CMIS 102/ 3110 Professor Name: Assignment due date: 03 February 2014 Problem definition: Calculate the total price to purchase all the components required to build a state-of-the-art gaming computer from components available on the internet. A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. We are writing a program to calculate the total cost of a gaming computer system. The total cost the computer system should be calculated using the following formula (TotalCost= CpuChoiceCost + RAMChoiceCost + HardDriveCost + ComponentsCost). The cost will be represented by integers. The results should be placed in variable TotalCost. The inputs, for the program are: ComponentsCost, TotalCost, A to Q, Yes or No The output for the program is TotalCost As Float. B. Program Design – Following the directions in the assignment, clearly write up your problem design in this section and comment your pseudocode. Main Module Declare MotherboardCost, CpuChoiceCost, SounCardCost, GraphicsCardCost, CaseCost, MonitorCost, PowerSupplyCost, DVDDriveCost, HardDriveCost, RAMChoiceCost, OperatingSystemCost AS Character Declare A to R As Integer Display a Welcome message Write “Welcome to Computer World” // Prompt for and input start building your system: Write “Would you like to start building your System?” Input Yes OR No Display...

Words: 955 - Pages: 4

Free Essay

Qasws

...IS4670: Week 3 Assignment 1 Create Data and Password Recovery Plans © ITT Educational Services Page 1 Learning Objectives and Outcomes You will learn general process for examining and recovering data from a hard disk. You will create a data recovery plan for future use. You will learn how to write a procedure for recovering a password from a computer system. Assignment Requirements You are a computer forensics intern at AAA Computer Forensics, a small forensics investigations and data recovery firm. Today your manager receives a call from a client in the construction industry. The client reported that a disgruntled employee reformatted a hard disk that contained valuable blueprints for a current job. The computer is an ordinary laptop that was running Windows Vista. No backup is available. The client wants that data to be recovered and at the same time has requested that you create a procedure for using an appropriate password-cracking method. You have been asked to assist in the recovery of the data and to crack passwords. Create a data recovery plan outline that lists the steps to be performed in recovering the data in their order of importance. Create a document that lists the steps for recovering a password from a Windows Vista, Windows 7, or Linux system. The software used should be open source. You may have to research password recovery methods on the Internet to complete the assignment. Submission Requirements Format: Microsoft Word...

Words: 3649 - Pages: 15

Free Essay

C++ Case Statements

...CMIS102 Homework Assignment 2 (Worth 13% of your grade) Student Name: Ariel Cintron Class/Section: CMIS102 / 6383 Professor Name: Ronald Mcfarland Assignment due date: Feb 01 2012 Problem definition: Calculate the total price to purchase all the components required to build a state-of-the-art gaming computer from components available on the internet. A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. The input consists of computer base price (CompPrice), the CPU choice (CPU_choice), the RAM choice (RAM_choice), and the Graphics Card choice (VideoCard_choice). Once the customer has entered a choice of an option, the program will determine the corresponding cost of that option: CPU_cost, RAM_cost, VideoCard_cost. The only item output is the computer selling price (ComputerPrice). To determine the ComputerPrice, the following computation is: ComputerPrice = CompPrice + CPU_cost + RAM_cost + VideoCard_cost. B. Program Design – Following the directions in the assignment, clearly write up your problem design in this section and comment your pseudocode. Things the program must do: 1. Input the computer base price 2. Process the various options to compute the additional costs 3. Total all the costs 4. Display the final selling price The main Module will contain the following submodules: Compute_CPU_Cost Compute_RAM_Cost ...

Words: 908 - Pages: 4

Free Essay

Cmis 102 Hw 4

...Homework Assignment 4 Charles Black CMIS102-4015 Professor Dale Goode 27Sep15 Problem definition: Write a program, using functions, that calculates the area and perimeter of a rectangle whose dimensions (length and width) are provided by a user. A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. In this problem, we have to calculate and display the area and perimeter for set of input values, entered by user. We will take input from user for length and width. And then calculate the area and perimeter for rectangle for the numbers input. Desired Output: The desired output is area and perimeter of rectangle. Required Input: The required input consists of the length and width of the rectangle. The program asks user to input length and width of rectangle. Calculations: Variables used: length: (float) to store value of length of rectangle entered by user width: (float) to store value of width of rectangle entered by user Area: (float) to store area of rectangle Perimeter: (float) to store perimeter of rectangle Formula for Calculating Area of Rectangle Area = length * width Formula for Calculating Perimeter of Rectangle Perimeter = 2 *( length + width ) Sample Calculation Suppose we have following user input: Length =4.0 Width=8.0 Subprogram Calculate_Area (length,width...

Words: 1160 - Pages: 5

Premium Essay

Boolean

...provide a library of prewritten functions that perform commonly needed tasks. Library functions are built into the programming language and you can call them as needed. They are commonly performed tasks. Help Video: View the tutorial video titled, "lab7-1.wmv" to assist you in completing this lab assignment. Writing Your Own Function that Returns an Integer Step 1: A function contains three parts: a header, a body, and a return statement. The first is a function header which specifies the data type of the value that is to be returned, the name of the function, and any parameter variables used by the function to accept arguments. The body is comprised of one or more statements that are executed when the function is called. In the following space, complete the following: (Reference: Writing Your Own Functions, page 225). a. Write a function with the header named addTen. b. The function will accept an Integer variable named number. c. The function body will ask the user to enter a number and the add 10 to the number. The answer will be stored in the variable number. d. The return statement will return the value of number. Function a.Integer a.addTen (b.integer number) Display “Enter a number:” Input c.number Set c.number = number + 10 Return d.15 Step 2: In the following space, write a function call to your function from Step 1....

Words: 2530 - Pages: 11

Premium Essay

Homework1

...CMIS102 Homework Assignment 1 (Worth 13% of your grade) Problem definition: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. In order to determine the usable area of the house I must first find out what is the total square feet area of each of the four rooms. I know that to get the area of each room I have to multiply LengthFeet X WidthFeet and that will give me the area of a 1 Room. Then I must do this to all four rooms, therefore, the results of the total area of the four rooms will give me the usable area of the house. My output variables are: UsableAreaFeet (float variable), AreaOfRoomFeet (float variable). Input variables: Length (float variable) and Width (float variable) and AreaOfRoomFeet (float variable). Formulas need it: AreaOfRoomX=Length X Width Where X is rooms 1-4, UsableAreaFeet=AreaOfRoom1Feet + AreaOfRoom2Feet + AreaOfRoom3Feet + AreaOfRoom4Feet B. Program Design – Following the directions in the assignment, clearly write up your problem design in this section and comment your pseudocode. PseudoCode Input Data Module: Input: LengthFeet, WidthFeet, AreaOfRoomXFeet Perform Calculations Module Compute: AreaOfRoomXFeet Here the formula use will be AreaOfRoomX = Length X Width Compute: UsableAreaFeet Here I will use...

Words: 560 - Pages: 3

Free Essay

Housesqft Cmis102

...CMIS102 Homework Assignment 1 (Worth 13% of your gradeProblem definition: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. The primary goal is to calculate the square footage of a 4-room house. In order to do this, we need to know each room’s length and width, then calculate the area of each room and lastly find the sum of the area of each of the four rooms.  * Area of Room1=length1*width1 * Area of Room2=length2*width2 * Area of Room3=length3*width3 * Area of Room4=length4*width4 Total Number of Square Feet = Area of Room1+ Area of Room2+ Area of Room3+ Area of Room4 B. Program Design – Following the directions in the assignment, clearly write up your problem design in this section and comment your pseudocode. We need to output the value of the total area of the house after finding and summing the areas of each room. For this to be possible, we will define the input and output variables. Variables Length of Room 1 = length1 (Float) (followed to) Length of Room 4 = length4 (Float) Width of Room 1 = width1 (Float) (followed to) Width of Room 4 = width4 (Float) Additional Variables Area = length*width Area1 = length1 * width1 (float variable) Area2 = length2 * width2 (float variable) Area3 = length3 * width3...

Words: 640 - Pages: 3

Premium Essay

Rhetorical Analysis of a Public Document Assignment

...Draft of a Rhetorical Analysis of a Public Document Assignment Goal Write a 750-1,000-word essay that analyzes the rhetorical situation of a public document. This public document is the Centers for Disease Control’s (CDC) website on Attention Deficit/Hyperactivity Disorder (ADHD) found at: http://www.cdc.gov/ncbddd/adhd/facts.html. Your analysis should include at least TWO scholarly sources outside of class texts. Directions Complete a close reading of the assigned public document. Then, write a cohesive essay that: 1. Introduces and summarizes the CDC website on ADHD. 2. Analyzes the rhetorical tools used on the site (here, you will want to incorporate ideas from your preanalysis below). For instance, your essay could analyze the CDC’s use of ethos, pathos, and logos. 3. Evaluates the site’s effectiveness (again, ideas from your preanalysis below will be helpful). This essay is NOT simply an expository or descriptive essay or an analysis of ADHD. It is an analysis of the site and how effectively the site uses rhetorical tools to get its point across. Use Chapter 2 in The Call to Write and the sample rhetorical analysis on pages 57-60 as a guide. First Draft Grading * You will receive completion points for the first draft based upon the successful submission of your draft. * Because your first draft is a completion grade, do not assume that this grade reflects or predicts the final grade. If you do not consider your instructor’s...

Words: 921 - Pages: 4

Premium Essay

Calculate the Total Price to Purchase All the Components Required to Build a State-of-the-Art Gaming Computer from Components Available on the Internet.

...7.1 $90 Graphics Card MSI N650-MD1GD5/OC GeForce GTX 650 1GB $110 Operating System Microsoft Windows 7 Ultimate $190 BaseCost = 1, 028 RAM | Purchase Code | Price | G.SKILL Ripjaws Series 4GB | G | $48 | G.SKILL Ripjaws Series 8GB | R | $75 | G.SKILL Ripjaws X Series 16GB | X | $155 | DVD | Purchase Code | Price | SAMSUNG Black 18X DVD-ROM | S | $17 | SuperMicro Black 8X DVD-ROM | M | $51 | HP Black SATA Slim DVD-ROM | H | $74 | Monitor | Purchase Code | Price | Asus VE248H Black 24" 2ms Full HD HDMI LED | A | $185 | Asus VE228H 21.5" Full HD HDMI LED | V | $135 | Asus VE278Q Black 27" 1920x1080 2ms Full HD HDMI LED | L | $245 | 1. A.    Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. For the state of the art gaming computer, the user has already identified fixed items that will be required on any computer, regardless of the other options. This will be identified by the input, BaseCost ($1,028). The other inputs for this program are the ram cost (RamChoice), DVD cost (DvdChoice), and monitor (MonitorChoice). One the options are decided on, the program must determine the cost of these items. The output for the program will be the total of the computer, TotalCost. TotalCost will be calculated by BaseCost + RamCost + DvdCost + MonitorCost.   1. B.     Program Design – Following the directions in the...

Words: 775 - Pages: 4

Free Essay

Homework

...CMIS102 Homework Assignment 1 (Worth 13% of your grade) Student Name: Class/Section:CMIS102 / Data-type, input/output Professor Name: Assignment due date: 11/4/2012 Program Analysis In this program the overall goal is to obtain the overall square feet in a four bedroom house. In order to calculate the correct output we will need the correct input. I will obtain the required output from the given input by multiplying length x width to find the number of square feet in each room and then add the amount of the four rooms together. • Room1 = Room1Length * Room1Width • Room2 = Room2Length * Room2Width • Room3 = Room3Length * Room3Width • Room4 = Room4Length * Room4Width • TotalSquareFeet = Room1 + Room2 + Room3 + Room4 Input data: Input the variable Room1Length, Room1Width, Room2Length, Room2Width, Room3Length, Room3Width, Room4Length and Room4Width Calculations: TotalSquareFeet = Room1 + Room2 + Room3 + Room4 Program Design Main Module Declare Room1 As Float Declare Room2 As Float Declare Room3 As Float Declare Room4 As Float Write “Total Square feet Program” Call Input Data module Call Perform Calculations module Call Output results module End Program Input Data Module //Get the value of the dimensions Write “What is the length of...

Words: 421 - Pages: 2

Premium Essay

Problem

...Problem definition: Calculate the usable area in square feet of house.   Assume that the house has a maximum of four rooms, and that each room is rectangular. A. Problem Analysis – Following the directions in the assignment, clearly write up your problem analysis in this section. In order to determine the usable area of the house I must first find out what is the total square feet area of each of the four rooms. I know that to get the area of each room I have to multiply LengthFeet X WidthFeet and that will give me the area of a 1 Room. Then I must do this to all four rooms, therefore, the results of the total area of the four rooms will give me the usable area of the house. My output variables are: UsableAreaFeet (float variable), AreaOfRoomFeet (float variable). Input variables: Length (float variable) and Width (float variable) and AreaOfRoomFeet (float variable). Formulas need it: AreaOfRoomX=Length X Width Where X is rooms 1-4,   UsableAreaFeet=AreaOfRoom1Feet + AreaOfRoom2Feet + AreaOfRoom3Feet + AreaOfRoom4Feet B. Program Design – Following the directions in the assignment, clearly write up your problem design in this section and comment your pseudocode. PseudoCode Input Data Module: Input: LengthFeet, WidthFeet, AreaOfRoomXFeet Perform Calculations Module Compute: AreaOfRoomXFeet   Here the formula use will be AreaOfRoomX = Length X Width Compute: UsableAreaFeet         Here I will use the this equation: UsableArea = AreaOfRoom1 + AreaOfRoom2 +...

Words: 285 - Pages: 2

Free Essay

Visual Programming

...Faisalabad Visual Programming – Assignment 2 Functions and Control Sructures Instructions for Submission Submission Guidelines: • Your code must be properly commented and your code should be neat and nested format. • All the steps involved in solution of each question should be written. Just Answers are not required • Try NOT to copy paste data from your friends etc. • This is an individual assignment. PLAGIARISM IS NOT ACCEPTABLE! In case of plagiarism you will get ZERO MARKS for that question • Please do not copy paste program from your friend. • Complete the assignment nicely and submit .cpp files on email you can zip all program in one file then submit that file • Submit files in format like “yourname_yourclass_q1.cpp, yourname_yourclass_q2.cpp”, other file naming convention will not be accepted. • Submit files on uzairsaeed@riphahfsd.edu.pk • Other questions except program can be solved on Microsoft Word or alike, and plagiarism is 30% with proper reference is allowed only • Last date of submission 02-October-2013 11:55 pm Question 1: Write a function that receives 5 integers and returns the sum and average of these numbers. Call this function from main( ) and print the results in main(). Question 2: A 5-digit positive integer is entered through the keyboard, write a function to calculate sum of digits of the 5-digit number. Question 3: A positive integer is entered through the keyboard and taking input and terminates on sentinel value, write a function primeFactor that...

Words: 516 - Pages: 3

Free Essay

Calculate the Usable Area in Square Feet of House. Assume That the House Has a Maximum of Four Rooms, and That Each Room Is Rectangular

...CMIS102 Homework Assignment 1 Student Name: Abel Patrick Assizo Class/Section: CMIS 102 Section 7986 Professor Name: Jose Romero Assignment due date: April 1, 2012 Assignment: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. 1) Problem analysis This Program is intended to compute the area of a house composed of four rectangular rooms. Indeed, for this problem, we need to output the value of the total area of the house after finding and summing the areas of each room. For this to be possible, we will define output and input variables. Therefore, for this program, we will need to output the value of the following variable: * The value of the area of the house total_area (a Float variable) We will also need to input the value of the length and width of each room, subsequently the following variables: * The value of the length of the first room length1 (a Float variable) * The value of the width of the first room width1 (a Float variable) * The value of the length of the second room length2 (a Float variable) * The value of the width of the second room width2 (a Float variable) * The value of the length of the third room length3 (a Float variable) * The value of the width of the third room width3 (a Float variable) * The value of the length of the fourth room length4 (a Float variable) * The value of the width of the fourth room...

Words: 801 - Pages: 4

Free Essay

Calculate the Usable Area in Square Feet of House. Assume That the House Has a Maximum of Four Rooms, and That Each Room Is Rectangular.

...CMIS102 Homework Assignment 1 Student Name: Neal Fowler Class/Section: CMIS 102 Section 6385 Professor Name: Marie Arvi Assignment due date: 6 January 2014 Problem definition: Calculate the usable area in square feet of house. Assume that the house has a maximum of four rooms, and that each room is rectangular. A. Problem Analysis: What is the required output? Total square footage of a house (in square feet) What is the necessary input? Room 1, 2, 3, and 4 length and width. How will we obtain output from input? Each room length and width input multiplied. Next all four rooms total add together for output. B. Program Design: 1. Input data: Input the variables Rm1L, Rm1W, Rm2L, Rm2W, Rm3L, Rm3W, Rm4L, Rm4W 2. Perform calculations: where… Rm1sqft = Rm1L * Rm1W, Rm2sqft = Rm2L * Rm2W, Rm3sqft = Rm3L * Rm3W, Rm4sqft = Rm4L * Rm4W, where… Housesqft = Rm1sqft + Rm2sqft + Rm3sqft + Rm4sqft 3. Output results: Display the total square feet (Housesqft) of the house // House Measurement Computation // Programmer: Neal Fowler Main module // Declare Variables Declare Rm1L Declare Rm1W Declare Rm2L Declare Rm2W Declare Rm3L Declare Rm3W Declare Rm4L Declare Rm4W Declare Rm1sqft Declare Rm2sqft Declare Rm3sqft Declare Rm4sqft Declare Housesqft Write “Home Measurement Program” Write “This program computes the total” Write “square feet (living space) of a house.” Call Input Data module Call Perform Calculations module Call Output Results...

Words: 472 - Pages: 2