3 Pages

CSE240 - Midterm 1 cribsheet

Course: CSE 240, Spring 2008
School: ASU
Rating:
 
 
 
 
 

Word Count: 1240

Document Preview

Imperative/procedural Paradigms - expresses computation by fully-controlled/specified manipulation of named data in a step-wise fashion. Foundation of these is the stored program concept. Languages include Fortran, Algol, Pascal, C. Object-oriented - Basically the same as imperative, but related variables and operations on variables are organized into classes called objects. Access privileges of vars and methods...

Register Now

Unformatted Document Excerpt

Coursehero >> Arizona >> ASU >> CSE 240

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Imperative/procedural Paradigms - expresses computation by fully-controlled/specified manipulation of named data in a step-wise fashion. Foundation of these is the stored program concept. Languages include Fortran, Algol, Pascal, C. Object-oriented - Basically the same as imperative, but related variables and operations on variables are organized into classes called objects. Access privileges of vars and methods (operations) in objects can be defined to reduce (simplify) the interaction among objects. Objects considered the main building blocks of programs, which support features like inheritance, class hierarchy, polymorphism. Smalltalk, C++, Java, C# Functional/applicative - Expresses computation in terms of mathematical functions. Supposed to be easy to understand, simple to use. No concept of memory locations in functional programming languages. Each function takes in a number of values as input (parameters) and produces a single return value. Return values not stored. ML, SML, Lisp/Scheme Logic/declarative - Expresses computation in terms of logic predicates. A logic program is a set of facts, rules, questions. Programs compare a question to each fact and rule in given fact and rulebase. Receive yes/no. Prolog. Program Performance/Features Orthogonality, control structures, data types and data structures, syntax design, support for abstraction, expressiveness, type equivalence, strong vs weak type checking, exception handling, aliasing. Reliability, readability, writeability, reusability, efficiency. features\performance Efficiency Readability/reusability Writeability reliability orthogonality/ simplicity control structures data type/structures syntax design support for abstraction expressiveness strong checking restricted aliasing X X X X X X X X X X X X X X X X X X X X X X exception handling X Lexical Structure Lexical structure defines the vocabulary of a language. Units include: Identifiers(var names), Keywords (e.g. final, const), Operators (+,-,<, >, AND, NOT), Separators (space, comma), Literals (values that can be assigned to vars of diff types. e.g. integer literals are integer numbers), comments Syntactic Structure Defines the grammar of forming sentences or statements using the lexical units. An imperative language includes: Assignments (int a = 5), Conditional statements (if (blah) {} else {}), Loop statements (for-loop, while-loop) Contextual Structure aka static semantics Defines program semantics before dynamic execution. Includes var declaration, initialization, type checking. Some imperative languages require all vars be initialized when declared at the contextual layer, while others don't. Semantic Structure Describes the meaning of a program, or what the program does during execution. In most imperative languages, there is no formal definition of semantic structure. INformal descriptions normally used to explain what statement does. Semantic structures of functional/logic languages are defined based on whatever math/logic foundation the program is based on. Data type/type checking C uses structural equivalence, C++/Java use name equivalence. In a truly strongly typed language: every name in a program must be associated with a single type known at compile-time, name equivalence is used, and every type inconsistency must be reported. Orthogonality Compositional: If a feature of S1 can be combined with one of set S2, then all S1 can be with S2 Sort 1: If a feature of S1 can be combined with one of S2, THAT feature can be with any in S2 Sort 2: " " " " " ", THAT feature of S2 can be with any S1 Program Processing/Pre-processing Interpretation is direct execution of a program one statement at a time sequentially by interpreter. Compiling compiles code to machine code, and that prog is loaded into an execution environment. Hybrid does both (comp.,>interpret comp'd code). Macros are always pasted in, inline is done when compiler deems it possible Data in a program consists of several properties Type: what values and operations are allowed Location: where data are stored in memory (heap, stack, or static) Address: an integer associated to a location Name: a name associated to a location Value: what stored in memory Visibility and Scope: who can this see data item and its lifetime forward declaration = prototypes C defines five basic types: Character (char) Integer (int) Floating-point (float) Double precision floating-point (double) Valueless (void) - void pointer, return type of a function C++ adds two types: Boolean (bool) Wide-character (wchar_t) - 16 bits Several of these basic types can be modified using one or more of these modifiers: signed, unsigned, short, long Declaring an Array (static) Correct declarations int a[3] : an integer array of size 3 int a[ ] = {x, y, z} Incorrect declarations int a[2] = {3, 4, 5} int[ ]; STRINGS IN C There is no string type predefined; You have to define your own string; A string is an array of characters; In other words, an array of characters may have two meanings: array, string An array is defined by an initial address and the size: no terminator is needed A string is defined by an initial address and a special character at the end, which is called terminator '\0' This difference occurs when the value is assigned to such variable Two ways to declare: char s1[] = {'h'...'o'} = [h]...[o]. char s2[] = "hello" = [h]...[o][\0] In C, string operations only work with strings, not char arrays REFERENCE VAR PROG #include<iostream> using namespace std; int main(){ int myInt = 10; int& myIntReference = myInt; cout<<"myInt:"<<myInt <<"\t" <<"myIntReference:" <<myIntReference <<endl; myIntReference=60; cout<<"myInt:"<<myInt <<"\t" <<"myIntReference:" <<myIntReference <<endl; cout<<"&myInt:"<<&myInt <<"\t" <<"&myIntReference:" <<&myIntReference<<endl; return 0;} output: myInt:10 myIntReference:10 myInt:60 myIntReference:60 &myInt:0012FF60 &myIntReference:0012FF60 If passing by reference, the ACTUAL VARIABLE will be modified, not the temp in a method. Pointers #include<stdio.h> int main () { int x = 500; int * y = NULL; // initially not pointing to any data variable printf("address of x= %d\t content of y= %d\n",&x ,y); y=&x; // assigning the address of x to y printf("address of x= %d\t content of y= %d\n",&x ,y); *y = 200; // changing the value of x to 200 printf("content of x= %d\t dereferencing y = %d\n",x, *y); y = y + 2; // changing the content of y , y++ *y = 300; // changing the content of the memory location pointed by y printf("content of y= %d\t dereferencing y= %d\t content of x = %d\n",y, *y, x); return 0;} Program Output: address of x= 1245024 content of y= 0 address of x= 1245024 content of y= 1245024 content of x= 200 dereferencing y = 200 content of y= 1245032 dereferencing y= 300 content of x = 200 Pointers for strings #include<stdio.h> int main () { char *p = "hello", *s = "this is a string"; printf("content of p= %d\t content of s= %d\n", p , s); p = s; printf("content of p= %d\t content of s= %d\n", p , s); printf("%s\n", p); printf("%c\n", *p); printf("%c\n", * (++p)); printf("%c\n", * (++p)); return 0;} Program Output: content of p= 4282408 content of s= 4282388 content of p= 4282388 content of s= 4282388 this is a string t h i Memory Allocation C++ has new and delete commands to allocate and de-allocate memory dynamically C has malloc and free command to allocate and de-allocate memory dynamically C++ example: #include <iostream> using namespace std; int main (){ int i,n; char * buffer; int * intbuff; printf ("Please enter the size of the array? "); cin >> i; buffer = new char[i+1]; // alloc. mem. for char array // buffer = (char*) malloc (i+1); // alloc mem for a char array intbuff = new int[i]; // alloc.mem. for an int array //intbuff = (int *) malloc(i); // allocate memory for an integer array for (n=0; n<i; n++) buffer[n]=rand()%26+'a'; buffer[i]='\0'; for (n=0; n<i; n++) intbuff[n]=n; cout << buffer << "\n"; for (n=0; n<i; n++) cout << intbuff[n] <<"\t"; delete (buffer); // free(buffer); delete (intbuff);//free (intbuff); return 0;}
Textbooks related to the document above:
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

ASU - IEE - 380
Inference on the Means of 2 Populations, Variances Known Assumptions: Both samples are random samples, independent, and are normal (if not normal, C.L.T. apply) E(Xbar1 Xbar2) = E(Xbar1) E(Xbar2) = 1-2 V(Xbar1-Xbar2)=V(Xbar1)+V(Xbar2)=12n1+22n2Z=
ASU - IEE - 380
Type I error: Rejecting H0 when it is true. Type II error: Failing to reject H0 when it is false. =P(type I error) = P(reject H0 when H0 is true) P-value is smallest level of significance that would lead to rejection of H0. 1) Parameter of interest 2
ASU - IEE - 380
I+.05 method: for kth %ile. Returns item place in array of ordered set. K as integer. N+1 method: . K in decimal form. For interpolators (e.g. 3.5), ipart + fpart(larger-smaller). Sample mean is just average Sample variance PDFs: P(a&lt;x&lt;b) =1) F(x)
ASU - IEE - 380
I+.05 method:(i-0.5)n*100=k for kth %ile. Returns item place in array of ordered set. K as integer.N+1 method: kn+1= i. K in decimal form. For interpolators (e.g. 3.5), ipart + fpart(larger-smaller). Sample mean is just average Sample variance s2=
ASU - IEE - 380
Type I error: Rejecting H0 when it is true. Type II error: Failing to reject H0 when it is false. =P(type I error) = P(reject H0 when H0 is true) P-value is smallest level of significance that would lead to rejection of H0. 1) Parameter of interest 2
ASU - IEE - 380
E(Y|x)=Y|x=0+1x Simple Linear Regression Model: Y=0+1x+ Assumes random, independent, mean 0, constant variance Method of Least Squares: Yi=0+1xi+i, i=1, 2, , n where:Null/Alt.: H0/1=/0 Test: Reject if: P-value is probability beyond f0 in F1,n-2 di
ASU - IEE - 380
Inference on the Means of 2 Populations, Variances Known Assumptions: Both samples are random samples, independent, and are normal (if not normal, C.L.T. apply) E(Xbar1 Xbar2) = E(Xbar1) E(Xbar2) = 1-2 V(Xbar1-Xbar2)=V(Xbar1)+V(Xbar2)= Alt. Hyp: !=
ASU - IEE - 380
E(Y|x)=Y|x=0+1x Simple Linear Regression Model: Y=0+1x+ Assumes random, independent, mean 0, constant variance Method of Least Squares: Yi=0+1xi+i, i=1, 2, , n where:Y|x0=y0=0+1x0, x0is some specified value VY|x0=21n+x0-x2Sxxse(Y|x0)=sqrt(V[Y|x0]
ASU - CSE - 360
Communicationproject initiation requirement gatheringPlanningestimating scheduling trackingModelinganalysis designConstructioncode testDeploymentdelivery support f eedbackClassic waterfall approach above Problems Real projects rarely
USF - PHY - 2049
hopkins (tlh982) HW02 criss (4908) This print-out should have 16 questions. Multiple-choice questions may continue on the next column or page nd all choices before answering. 001 (part 1 of 2) 10.0 points A skyrocket explodes 126 m above the grou
University of Texas - CH - 310n
Problem of the Day #04 Answer KeyDeadline: 3:00 p.m., Friday, 7/18/08 LATE WORK WILL NOT BE ACCEPTED OR GRADED!This problem is worth a total of 20 raw points. Compound A, a hydrocarbon having molecular formula C6H12, has the IR and 1H NMR spectra
University of Texas - CH - 310n
Problem of the Day #02 Answer KeyDeadline: 3:00 p.m., Wednesday, 7/16/08 LATE WORK WILL NOT BE ACCEPTED OR GRADED!This problem is worth a total of 20 raw points. Each part is worth 10 points. In each part below, an infrared spectrum is shown. To
University of Texas - CH - 310n
Problem of the Day #10 Answer KeyDeadline: 3:00 p.m., Wednesday, 7/30/08 LATE WORK WILL NOT BE ACCEPTED OR GRADED!This problem is worth a total of 20 raw points. In each part below, propose a sequence of reactions to synthesize the target compoun
University of Texas - CH - 310n
Problem of the Day #08 Answer KeyDeadline: 3:00 p.m., Monday, 7/28/08 LATE WORK WILL NOT BE ACCEPTED OR GRADED!This problem is worth a total of 20 raw points. In lecture, we discussed the Wolff-Kishner reduction, which occurs when an aldehyde or
University of Texas - CH - 310n
Problem of the Day #06 Answer KeyDeadline: 3:00 p.m., Tuesday, 7/22/08 LATE WORK WILL NOT BE ACCEPTED OR GRADED!This problem is worth a total of 20 raw points. Consider the overall transformation given below:H 3C OH C N O CH3+KOH+KCN
University of Texas - CH - 310M
Lecture 5Organic Chemistry IProf. Jonathan L. Sessler310/318M Pre-Health Professionals Unique numbers: 54410, 54435, 54440, 54445, and 54655Notes: Monday recitations start PAI 4.28 right after class. Also, homework due at the start of class on
University of Texas - CH - 310M
OHClH NH NN N M N N NH NH NO OO OO OO OOHOrganic Chemistry I310/318M Pre-Health Professionals, TIPS, ChemEs Unique numbers: 54110, 54655, 54435, 54440, and 54445Prof. Jonathan L. SesslerN N H HN HN NH H N NN NH N HN HN NH N
University of Texas - CH - 310M
Lecture 2Organic Chemistry IProf. Jonathan L. Sessler310/318M Pre-Health Professionals Unique numbers: 54410 (there was a typo in syllabus), 54435, 54440, 54445, and 54655NOTE: IF YOU MISSED WEDNESDAY, GO TO BLACKBOARD AND GET THE CLASS MATERIA
University of Texas - CH - 310M
Lecture 3Organic Chemistry IProf. Jonathan L. Sessler310/318M Pre-Health Professionals Unique numbers: 54410, 54435, 54440, 54445, and 54655Simplified View of Bonding Coulombs law of electric charge: Opposite charges attract each other Like
University of Texas - CH - 310M
Lecture 6Organic Chemistry IProf. Jonathan L. Sessler310/318M Pre-Health Professionals Unique numbers: 54410, 54435, 54440, 54445, and 54655Notes: 1st homework due at the start of class today. 2nd homework (on Blackboard) due in one week! Wel 2
University of Texas - CH - 310M
Lecture 4Organic Chemistry IProf. Jonathan L. Sessler310/318M Pre-Health Professionals Unique numbers: 54410, 54435, 54440, 54445, and 54655Apparent Exceptions to the Octet Rule Molecules that contain atoms of Group 3A elements, particularly
University of Texas - CH - 310M
Lecture 7Organic Chemistry IProf. Jonathan L. Sessler310/318M Pre-Health Professionals Unique numbers: 54410, 54435, 54440, 54445, and 54655Combining VB &amp; MO Theories VB theory views bonding as arising from electron pairs localized between ad
University of Texas - CH - 310M
Lecture 8Organic Chemistry IProf. Jonathan L. Sessler310/318M Pre-Health Professionals Unique numbers: 54410, 54435, 54440, 54445, and 54655Note: Homework 2 will be due on the 24th, not this Wednesday. Note: Prof. Sesslers office hours will end
City University of Hong Kong - ABA - 102
LS22114 W1 Tutorial English Communication Skills for Business (2008/09 Semester A)Prepared by Joey MaToday Agenda Knowmore about Your tutor Your classmates Your course handbook Your textbook Your assignment Your examinationToday Agenda
City University of Hong Kong - ABA - 123
LS22114 Lecture 3Barriers to Effective CommunicationBarriers Climate of the organization Status within the organization Problems of communication overload Defensiveness2Climate ControlOrganizational climate established can determine
City University of Hong Kong - ABA - 123
Chapter28 UnemploymentandItsNaturalRateMULTIPLECHOICEiThenaturalrateofunemploymentis a. zeropercent. b. therateassociatedwiththehighestpossiblelevelofGDP. c. theamountofunemploymentthattheeconomynormallyexperiences. d. thedifferencebetweenthelong
City University of Hong Kong - ABA - 123
Topic 10 : Benchmarking Technology : ( ) Marshall BreedingDirector for Innovative Technologies and Research Vanderbilt University http:/staffweb.library.vanderbilt.edu/breedingRedefining Libraries: Web 2.0 and other ChallengesMay 2007 Xia
City University of Hong Kong - ABA - 123
PRINCIPLES OF MACROECONOMICSChapter 28 UnemploymentOverview In this chapter, we will examine broadly the labor market and see how full utilization of our labor resources improves the level of production and our standard of living. We will see how
City University of Hong Kong - ABA - 123
Mankiw Macroeconomics Chapter 15 (28)Unemployment and its Natural RateA Roadmap for Chapter 151. 2. 3. 4. Background Long Run vs. Short Run Unemployment Unemployment - Generally Speaking Determinants of Long-Run UnemploymentHow to think about l
City University of Hong Kong - ABA - 123
Mankiw Macroeconomics Chapter 15 (28)Unemployment and its Natural RateA Roadmap for Chapter 151. 2. 3. 4. Background Long Run vs. Short Run Unemployment Unemployment - Generally Speaking Determinants of Long-Run UnemploymentHow to think about l
Michigan - SOC - 101
Sociology (&quot;our lives are structured, constrained, and contained in ways we are unconscious of, take granted of, and naturalize.&quot;) Sociological Social Psychology Social Psychology Psychological Social Psychology Social Psychology Social Influence
Michigan - HIST - 260
Abbot Low Moffat Served as the head of the Division of Southeast Asian Affairs from 1944-47 In 1946 met with Ho Chi Minh HCM: first a nationalist, and second a Communist. Interested in the independence of his people and the best thing for them was th
Rochester - ME - ME121
Single gauge:Forward StrainGauge factor: 2.085Backwards Strain1 2 3 4 5 6 7 8 9 1014 in/in 30 45 61 77 93 109 124 141 156140 in/in 124 108 92 76 59 43 27 12 -.2 Dim=.01 inRosette:Turns Gauge 1Gauge factorGauge 2(1) 2.065Gauge 3
Berkeley - L&S - 20A
1 L&amp;S 20A November 13, 2007Jabberwocky: Making Sense of Nonsense &quot;Jabberwocky,&quot; written by Lewis Carrol, is an interesting poem, because it tells a story using made up words. Despite the use of nonsense, readers can still understand the general sto
Syracuse - IST - 616
VIDEO RECORDING: _ OCLC NEW _ Visual Materials Replaced 20041018 _ Type g Ctrl _ BLvl m | MRec _ Desc | | Dates 040 050 | 049 1| |_ 245 00 246 | 260 Entertainment, c 1999 300 4| | 511 |_ Phillips, Jacqueline Kim. 6| | 6| | 7| |_ 7| |_ 8| | 856 4| _ n
Syracuse - IST - 616
Print Material: My MARC record:Print Material: Found MARC record:Sound Material: My MARC record:Sound Material: Found MARC record:Video Recording: My MARC record:Video Recording: Found MARC record:Internet Resource: My MARC record:Inter
N. Illinois - ACCY - 360
Chapter 01 An Introduction to Assurance and Financial Statement AuditingCHAPTER 1An Introduction to Assurance and Financial Statement Auditing Answers to Review Questions1-1 The study of auditing is more conceptual in nature compared to other ac
Iowa State - ACCT - 285
Accounting 285 Final Exam Fall 2004\NOTE - THERE WILL BE MORE QUESTIONS FROM CHAPTERS 9 THAN APPEAR ON THIS FINAL. SEE OLD EXAM II FOR EXAMPLES. Use the following information for the next three questions. Robertson Company planned to produce 60,00
Iowa State - ACCT - 285
Accounting 285 Exam I Fall 2007Name (please print) Section (circle one) Whittle MWF at 11:00 Duffy TR at 12:40 Exam Instructions: 1. Use a number 2 pencil to complete the answer sheet. You may use a FOUR FUNCTION calculator or a TI BA II+. NO comm
Gainesville State - HIST - 2111
Us History Study Guide 3 Ben WynneDavid Wilmot- Pennsylvania &quot;Wilmot Proviso&quot; Prohibited slavery in any territory acquired as a result of the Mexican war. Western Territories and slavery options Extending the Missouri Compromise line to the Pacific
Gainesville State - HIST - 2111
Us History Study Guide 2 Ben Wynne George Washington President at the time Hands off the government to next candidate Believed in separation of powers and shouldn't be political parties o Two parties emerge regardless Federalists Wanted centralized g
Gainesville State - HIST - 2111
U.S. History Study Guide 3 Ben WynneSupreme Order of the Star Spangled Banner- referred to themselves as the &quot;know nothings&quot; Founded by Charels B. Allen, Feared and hated Catholics and immigrants who weren't anglo-saxon Erie Canal- opened in 1825, c
Gustavus - REL - 255
Casey Dynan Islam December 5, 2007 Professor Dille The Chruch and the Crescent: The Relationship between the Catholic Church and Islam under Pope Benedict XVI One unsettling fact dominates the relations between Christianity and Islam, namely, that di
Gustavus - E/M - 282
ACKNOWLEDGEMENTS I would like to acknowledge the valuable contribution of several people to the overall effort this project. Henry Hays, Ph.D., professor of my Economic Development and World Resources course at Gustavus Adolphus College, provided inv
Gustavus - POL - 110
Casey Dynan POL-110 Professor Gilbert March 17, 2008 Extra Credit Assignment U.S. Politics for the Week of February 11th 2008 Barack Obama extended his lead over Hillary Clinton in the race for the Democratic presidential nomination by winning severa
Gustavus - POL - 110
News Summary #5 2008 Presidential Politics: Overall Theme: Senator John McCainCasey Dynan POL-110-001Article #1 McCain Takes Aim at Climate Change; Parts Company with President on 'Challenges' Joseph Curl Washington Post On May 12, 2008 in Port
Gustavus - POL - 110
Cigler 9.1 The Federalist, No. 10 by James Madison Addresses the question of how to guard against &quot;factions,&quot; groups of citizens with interests contrary to the rights of others or the interests of the whole community. Madison argued that a st
Gustavus - POL - 110
Ciglar 5.4 Politics and the &quot;DotNet&quot; Generation by Scott Keeter, p. 186-193. In this selection, Keeter examines the participation patterns and political perspectives of the newest generation of voting-age citizens born between 1977-1987. DotNets for
Gustavus - E/M - 282
AN ANALYSIS OF ECONOMIC DEVELOPMENT IN THE KINGDOM OF SAUDIA ARABIAby Casey M. DynanforEM284 Economic Development and World ResourcesDr. Henry HaysDecember 14, 2007 Gustavus Adolphus College St. Peter, MN
Gustavus - POL - 110
Ciglar 1.1 A Tradition Born of Strife by Jack N. Rakove, p. 3-8. In writing a new constitution the Framers concluded that the Union needed to be completely reconstituted and that the states individual constitution-building experiences provided a ser
Gustavus - REL - 399
What is Theology? It has been defined as reasoned discourse about God or the gods, or more generally about religion or spirituality. Theologians use various forms of analysis and argument (philosophical, ethnographic, historical) to help understand,
Gustavus - POL - 110
O'CONNOR CH. 13, PUBLIC POLICY Definition of public policy An intentional course of action followed by government in dealing with some matter of concernTwo fundamental questions: 1. How should we be governed? (Who holds the power and who makes pol
Gustavus - POL - 130
The Irrelevance of Nuclear Weapons By: Casey Dynan I. Introduction A) Fear of escalation and terror of nuclear weapons B) Continued existence of the weapons promises eventual catastrophe C) Mueller takes issue with both of these points in this articl
Gustavus - REL - 399
Teaching Theological Reflection Well, Reflecting on Writing as a Theological PracticeLucretia B.YaghjianEpiscopal Divinity School and Weston Jesuit School of TheologyNotes: Writing is a theological practice with very limited sources on how to act
Gustavus - REL - 280
September 9 (Tuesday), 11 (Thursday) Reading Activity#2: Ancient Epistolography: Reading other People's Mail Roetzel and Keck: What are the characteristics of Pauline epistolography? Readings: Roetzel, 51-78; Keck, 16-32 Reading Exercise: Conventions
Gustavus - POL - 130
International Politics: The Consequences of Anarchy The Anarchic Structure of World Politics by Kenneth N. Waltz, p 29-49. Political Structures Concept of Social Structure1. Ordering Principles 2. The Character of the Units 3. The Distribution of
Gustavus - REL - 255
Muhammad The Story of a Prophet &quot;He was neither tall and lanky, nor short and heavy set. When he looked at someone he looked them in the eyes. He was the most generous hearted of men, the most truthful of them in speech, the most mild tempered of th
Gustavus - POL - 130
International Relations (PSC 124.200)Swedlund/SchmitzMid-Term Exam, Spring 2008Student-ID:The total for this mid-term is 20 points. This is not an open book exam. Answers will be posted on the class web site; your scores on Blackboard. Read th
Cornell - H ADM - 105
Lecture 8 Questions 1. What is the most important short-term planning function performed by a manager? What is the most important long-term planning function performed by a manager? a. Short Term: Forecasting b. Long-Term: Budgeting 2. What happens i
Cornell - H ADM - 105
Financial statement 1. total rooms in hotel= avail. Rooms/ days in month 2. ADR= revenue/ # of occupied rooms (CPOR= cost per occ. Room) 3. Occ. (%)= # occ. Rooms/ # avail. Rooms 4. RevPar= ADR* Occ. % 5. Other expenses ( linen, cleaning supplies, gu
Cornell - ILRCB - 1100
Great Depression Questions(100) What was Roosevelt's fundamental reason for moving to the left in 1935? He needed the support of the bulk of the people (200) What was the role of the Communist Party and its views in Depression America? It was never