Free Essay

Unit 6 Homework Assignment & Research Assignment

In:

Submitted By Derek777
Words 1730
Pages 7
Derek Taylor 24 July 2015

Homework Assignment & Research Assignment

1.) What is the difference between Application Software and System Software? (Give an example of both)

System software is an integral part that aids in the computer’s functioning. It manages the computer resources in ways that they can operate in tandem. System software provides a platform for the execution of application software. Examples of system software are BIOS and firmware.

Application software is created for users. They manage their specific tasks to suit their needs like a media player of word processors. Examples of application software are CRM software, ERP software, accounting, graphics, and media software.

2.) What does it mean when we say that an interpreter both “Translates and Executes” Instructions? In the case of the interpreter, it translates and executes each line of codes one line at a time. Thus if the program has syntax errors (violation of program rule) lower down in the code, you never know until the interpreter reaches to that statement.

3.) Explain the “fectch-decode-execute” cycle.
In the first step, fetch instruction, the processor fetches the instruction from the memory. The instruction is transferred from memory to instruction register. The processor is ready to fetch instruction. The instruction pointer contains the address 0100 contains the instruction MOV AX, 0. The memory places the instruction on the data bus. The processor then copies the instruction from the data bus to the instruction register. In the second step, decode instruction, the instruction is decoded by the processor. For example, the instruction MOV AX, 0. Stores the value 0 in Ax register. The processor will fetch the constant value 0 from the next location in memory before executing the instruction. The processor gets any operand if required by the instruction. Last step, execute instruction, the processor execute the instruction, it stores 0 in register AX.

4.) Which program will usually execute faster, a compiled program or an interpreted program? Compiled programs generally run faster than interpreted ones because interpreted programs must be reduced to machine instructions at runtime. However, with an interpreted language you can do things that cannot be done in a compiled language. For example, interpreted programs can modify themselves by adding or changing functions at runtime.
5.) Give an example of a machine language instruction.

6.) Explain the difference between logic error and syntax error?

A Syntax Error occurs when the code isn't formatted or typed correctly. i.e. In python, typing If instead of if because it only recognizes lowercase.

A logical error occurs when there is a fallacy of reasoning. i.e. In python, typing if x < 0 and x > 5. Since a value can't be less than 0 and greater than 5, a logical error will occur.

7.) List five steps of the program development cycle.

1.Review the input, processing, output, and storage requirements.
2.Develop the logic for the program
3.Write the program using a programming language.
4.Test and debug the program.
5.Complete the program documentation.

8.) How is a “processing symbol” used in a flowchart?

It represents any process, function, or action and is the most frequently used symbol in flowcharting.

9.) Explain the “Order of Operations” in solving an equation?
This is a rule that defines which procedures to perform first in a given mathematical expression. For example, in mathematics and most computer languages, multiplication precedes addition. Thus, in the expression 2 + 3 × 4, the answer is 14 (not 20). Brackets,( and ), { and }, or [ and ]—which have their own rules—can indicate an alternate order or reinforce the default order to avoid confusion, thus the preceding expression could be changed to (2 + 3) × 4 to produce 20, or 2 + (3 × 4) to produce 14 (the default if there are no brackets).
10.) List three variable types used in pseudocode? Do not confuse with variables in visualbe basic. declare integer i declare constant permanent integer j

11.) Use the correct symbol to write the state “two raised to the power of 6”

2^6 or 26

12.) List three benefits of using modules (or subroutines)?

Benefits of subroutines;

Decomposing a complex programming task into simpler steps: this is one of the two main tools of structured programming, along with data structures
Reducing duplicate code within a program
Enabling reuse of code across multiple programs
Benefits of Modules;

Fewer bugs because each set of programming commands is shorter

Algorithm is more easily understood

Many programmers can be employed, one on each of the modules

13.) What is the difference in passing a value to a subroutine ByVal or ByRef?

If you pass in a reference, when you modify the value in the method, the variable in the call site will also be modified.
If you pass value, it's the same as if another variable is created at the method, so even if you modify it, the original variable (at the call site) won't have its value changed.
14.) Explain the difference between a global variable and a local variable?
Global variables can be accessed from anywhere in a program, so variables that do not change are generally global in scope. A program that relies on a value of pi, for example, might use a global variable. They are often placed at the beginning of a program where they are easy to access, and constant global variables are often spelled with all capital letters.
Local variables, on the other hand, are typically used in a single function or method. This allows programmers to reuse variable names. The variable "i" is often used for iteration, and making it local allows it to be used whenever necessary.
Experts strongly recommend using global variables only when necessary.
15.) As defined by your textbook in Unit 2, what are the normal rules for variable names? Variable names in Visual C++ can range from 1 to 255 characters. To make variable names portable to other environments stay within a 1 to 31 character range. All variable names must begin with a letter of the alphabet or an underscore( _ ). After the first initial letter, variable names can also contain letters and numbers. No spaces or special characters, however, are allowed. Uppercase characters are distinct from lowercase characters. Using all uppercase letters is used primarily to identify constant variables. You cannot use a C++ keyword (reserved word) as a variable name. NEVER use uppercase for every letter in a variable name, because uppercase names are reserved for constant variables.
16. What is the effect of the NOT operator?

If logical NOT’s operand evaluates to true, logical NOT evaluates to false. If logical NOT’s operand evaluates to false, logical NOT evaluates to true. In other words, logical NOT flips a boolean value from true to false, and vice-versa.

17.) What is the effect of using the AND operator?

The logical AND operator is used to test whether both conditions are true. If both conditions are true, logical AND returns true. Otherwise, it returns false.

18.) What is the effect of using the OR operator?

The logical OR operator is used to test whether either of two conditions is true. If the left operand evaluates to true, or the right operand evaluates to true, the logical OR operator returns true. If both operands are true, then logical OR will return true as well.

Definitions:

Syntax - the rules that must be followed when writing a program

Mnemonics - is a term, symbol or name used to define or specify a computing function. Mnemonics are used in computing to provide users with a means to quickly access a function, service or process, bypassing the actual more lengthy method used to perform or achieve it.

FORTRAN - is a general-purpose, imperative programming language that is especially suited to numeric computation and scientific computing. Originally developed by IBM[1] in the 1950s for scientific and engineering applications.

Two’s Compliment - is a mathematical operation on binary numbers, as well as a binary signed number representation based on this operation. Its wide use in computing makes it the most important example of a radix complement.

Pseudocode - is an informal high-level description of the operating principle of a computer program or other algorithm.

Flowchart - is a diagrammatic representation of an algorithm. Flowchart are very helpful in writing program and explaining program to others.

Sequence Structure - an action, or event, leads to the next ordered action in a predetermined order. The sequence can contain any number of actions, but no actions can be skipped in the sequence. The program, when run, must perform each action in order with no possibility of skipping an action or branching off to another action.

Control Structure - is a block of programming that analyzes variablesand chooses a direction in which to go based on given parameters.

Named Constant – is a name that represents a value that cannot be changed during the program’s execution.

Return Point - After finishing a subroutine, the program will branch back (return) to the point after the call.

Parameter - a special kind of variable, used in a subroutine to refer to one of the pieces of data provided as input to the subroutine.

Hierarchy Charts - Conveys the relationship or big picture of the various functions in a program.

Relational Operator - is a programming language construct or operator that tests or defines some kind of relation between two entities. These include numerical equality (e.g., 5 = 5) and inequalities (e.g., 4 ≥ 3).

Variable - is a storage location paired with an associated symbolic name (an identifier), which contains some known or unknown quantity of information referred to as a value.

Algorithm - are the set of well defined instruction in sequence to solve a program. An algorithm should always have a clear stopping point.

Flowchart Symbols

Rectangle - This shape is used to show that something is performed.

Diamond – shows where a decision is necessary, commonly a Yes/No question or True/False test.

Oval - usually contain the word "Start" or "End", or another phrase signaling the start or end of a process, such as "submit inquiry" or "receive product".

Parallelogram - Input/Output. Examples; Get X from the user; display X.

Coding Symbols

* - greater than

< - Less than

>= greater than or equal to the value

<= less than or equal to the value

== Equal to

!= Not equal to

What is the difference between using “=” and using “==”?

“=” is direct assignment

“==” is equal to

Similar Documents

Free Essay

Network

...Network Technology and Service Integration Unit 1 Homework The following homework is designed to cover the course objectives for this unit. Assignment 1.1: Textbook/Workbook Assignments • Complete the following exercises and questions from Routers and Routing Basics: CCNA 3 Labs and Study Guide: Vocabulary Exercise: Matching on page 3 VLSM Subnetting a Subnet Exercises on pages 9-11 VLSM Addressing Design Scenarios 1-6 on pages 15-20 Summary Route Exercises on pages 21-24 Concept Questions on pages 25-27 VLSM Case Study on page 27 Internet Research on page 29 (Use the ITT Tech Virtual Library.) • Complete Chapter 9 Review Questions 2-7, 10, 14, 20-22 on pages 258-259 of Introduction to Telecommunications. Submit your written answers to your instructor at the beginning of Unit 2. . Assignment 1.2: Virtual Labs • Complete Virtual Labs 6, 7, and 8 from the CCNA 640-802 CCNA Simulator, which you can find by clicking through these paths: ICND1 Troubleshooting Scenarios Lab 6: IP Addressing and Routing. ICND1 Troubleshooting Scenarios ICND1 Part 4: Troubleshooting Labs Lab 7: IP Routing I ICND 2 Troubleshooting Scenarios Lab 13: IP Routing II Submit your written answers to your instructor at the beginning of Unit 2. ©ITT Educational Services, Inc: Date: 03/13/09 Network Technology and Service Integration Unit 2 Homework The following homework is designed to cover the course objectives for this unit. Assignment 2.1: Textbook/Workbook Assignments • Complete the following exercises and...

Words: 2825 - Pages: 12

Free Essay

Capstone

...Course GRADED ASSIGNMENTS Table of Contents Graded Assignments 4 Unit 1 Journal 1: Personal Narrative 4 Unit 1 Journal 1: Personal Narrative Handout 6 Unit 1 Journal 2: Civic Narrative 9 Unit 1 Journal 2: Civic Narrative Handout 11 Unit 1 Assignment 1: What Would You Do? 12 Unit 2 Journal 1: Personal Narrative 13 Unit 2 Journal 1: Personal Narrative Handout 15 Unit 2 Journal 2: Civic Narrative 19 Unit 2 Journal 2: Civic Narrative Handout 20 Unit 2 Journal 3: Article Response 22 Unit 2 Assignment 1: What Would You Do? 23 Unit 2 Assignment 2: Declaration of Independence and Public Safety 25 Unit 3 Journal 1: Car Commercials 26 Unit 3 Journal 2: Personal Narrative 27 Unit 3 Journal 2: Personal Narrative Handout 28 Unit 3 Journal 3: Civic Narrative 31 Unit 3 Journal 3: Civic Narrative Handout 32 Unit 3 Journal 4: Taste vs. Judgment 34 Unit 3 Presentation 1: What Would You Do? 35 Unit 3 Assignment 1: Habits That Hinder Thinking 36 Unit 4 Journal 1: Invention Exercise 37 Unit 4 Journal 1: SWOT Analysis Template 38 Unit 4 Journal 2: Personal Narrative 39 Unit 4 Journal 2: Personal Narrative Handout 41 Unit 4 Journal 3: Civic Narrative 43 Unit 4 Journal 3: Civic Narrative Handout 44 Unit 4 Assignment 1: What Would You Do? 46 Unit 4 Assignment 2: Invention White Paper 47 Unit 5 Journal 1: Personal Narrative 48 Unit 5 Journal 1: Personal Narrative Handout 49 Unit 5 Journal 2: Civic Narrative 51 Unit 5 Journal 2: Civic...

Words: 30149 - Pages: 121

Premium Essay

Its Making Put Something Here

...PT1420 Introduction to Programming Week-2 Lesson Plan TUE 6:00 PM to 10:30 PM Instructor: Tushar Patel (tspatel02@yahoo.com, tpatel@itt-tech.edu) CLASS: Topic: Unit 2: Software Program Design I Course Objectives Covered by This Unit CO2: Design programs by using flowcharts and pseudo code. CO3: Write programs that perform input, processing, and output. Unit Learning Outcomes LO8: Determine program input, processing, and output stages. LO9: Create the necessary flowcharts to describe a program’s structure. LO10: Use pseudocode to define a program’s structure. LO11: Formulate solution algorithms for calculations by properly following the order of operations. Key Concepts ▪ Determining input, process, and output ▪ Creating flowcharts and pseudocode ▪ Formulating algorithms Reading ▪ Gaddis, Chapter 2: “Introduction to Computers and Programming,” pages 29-55 Resources: • Data Projector • ITT Virtual Library • Text Books • Visual Studio • Lab Computers • Student Removable Hard Drive • VM Ware Player Methods: • Lecture • Group Discussion • Lab Work • Review exercise / Research Papers • Quiz Brief Lesson Overview: Today’s lecture we would be discussing the following topics. • Discuss how all programs basically consist of a three-step process: input, process, and output. Use the payroll calculation program...

Words: 895 - Pages: 4

Premium Essay

Yet Unknown

...Argument Essay Unit: Lesson Plan and Class Activities Global Learning Outcomes for this Unit *In the course of completing the assignment students will: • Learn to compose an argumentation-oriented thesis • Defend their thesis with academic-quality research that is properly sourced and cited as per the standard of university level writing • Anticipate and respond to counterarguments • Learn to critically engage the revision process through draft writing, instructor conferencing, and peer commentary • Respond the work of their peers as peer reviewers while providing relevant, productive feedback Class 1 – Introducing the Classical Argument Essay *Daily Learning Outcomes: • Reflect on Informative Essay • Introduce Classical Argument Essay • Break down the assignment sheet *Activity 1: Individual Reflection / Class Discussion (15 min) - Students open their portfolios and journals then reflect for ~10 minutes on their experiences during the Informative Essay Unit - Discuss reflections as a class *Activity 2: Introduce Classical Argument (20 min) - Have students bring a hard copy of the assignment to class with a highlighter: a. Get into groups of 4 b. Read the sheet aloud, highlighting all the action verbs c. Discuss the sheet as a group as instructor makes rounds *Activity 3: Mini-Lecture on Assignment /Questions (15 min) - Powerpoint slides “The Features of an Academic Argument” - Allow time for student questions...

Words: 4393 - Pages: 18

Premium Essay

Argument

...Argument Essay Unit: Lesson Plan and Class Activities Global Learning Outcomes for this Unit *In the course of completing the assignment students will: • Learn to compose an argumentation-oriented thesis • Defend their thesis with academic-quality research that is properly sourced and cited as per the standard of university level writing • Anticipate and respond to counterarguments • Learn to critically engage the revision process through draft writing, instructor conferencing, and peer commentary • Respond the work of their peers as peer reviewers while providing relevant, productive feedback Class 1 – Introducing the Classical Argument Essay *Daily Learning Outcomes: • Reflect on Informative Essay • Introduce Classical Argument Essay • Break down the assignment sheet *Activity 1: Individual Reflection / Class Discussion (15 min) - Students open their portfolios and journals then reflect for ~10 minutes on their experiences during the Informative Essay Unit - Discuss reflections as a class *Activity 2: Introduce Classical Argument (20 min) - Have students bring a hard copy of the assignment to class with a highlighter: a. Get into groups of 4 b. Read the sheet aloud, highlighting all the action verbs c. Discuss the sheet as a group as instructor makes rounds *Activity 3: Mini-Lecture on Assignment /Questions (15 min) - Powerpoint slides “The Features of an Academic Argument” - Allow...

Words: 4392 - Pages: 18

Premium Essay

Anime

...Business Communication in English Parts I & II TMAENG17R1(E) 2015-2016 Contents 1 Introduction - 3 - 2 Programme - 4 - Programme Block 1 - 4 - Programme Block 2 - 5 - 3. Attendance ……………………………………………………………… ……………...6- 4. Literature ………………………………………………………………………………- 6- 5 Assignments Blocks 1 & 2 - 7 - Block 1: Oral Group Assignment - 7 - Block 2: Oral assignment - 9 - 6. Written Test - 10 - 7. Assessment Blocks 1 & 2 - 11 - 1 Introduction Welcome to the first English courses at TMA. In the next four years you will acquire a lot of knowledge and many skills for your future career. You will learn how to write a marketing plan and how to implement it, how to import and export products from and to Asia and how to do business with people from another culture. In this way you will lay the foundation for a career in international business. One skill you will certainly need in Asia is a good command of business English. These courses will help you acquire the specialised vocabulary that you will need. The words and expressions that you are going to learn are different from the words used in everyday English, so most of them will be new to you. Furthermore, you will develop your reading skills through reading texts in business English. In order to be able to express yourself in proper English you will also spend some time refreshing your knowledge of the English grammar. You will do all kinds of exercises, both in class...

Words: 1567 - Pages: 7

Premium Essay

Management

...B2GLOBAL PROGRAMME BTEC LEVEL 5 HND DIPLOMA IN BUSINESS UNIT SYLLABUS |Assignment Due: | |. Assignment 1: Slot 10 | |. Assignment 2: Slot 38 | |The student must pass these Assignments to pass the course | |Unit Title: |Business Strategy | |Unit Code |A/601/0796 | |QCF level |5 | |Credit value |15 credits | |Pre-requisite | | |Instructor | ...

Words: 1993 - Pages: 8

Free Essay

What Is the Difference Between a “Dashboard” and a “Scorecard”? Why Is It Important That Managers Know the Difference Between the Two? What Can They Learn from Each of Them?

...|[pic] [pic] | | | MISY 3310 Management Information Systems Section W01: Online Course; 2013 Spring Semester Instructor: Dr. Tim Klaus Office: OCNR 385 Telephone: Office: (361) 825-2379 Cell Phone: (361) 248-8495 – feel free to call Mon-Sat between 9AM-10PM (I’ll be able to receive or return your call quicker than if you call the office) E-mail: tim.klaus@tamucc.edu Office Hours: Monday 8:30-8:55 AM, 9:55-10:55 AM, 12:00-3:10 PM Wednesday 8:30-8:55 AM, 9:55-10:55 AM Other days and times by appointment Course Website (Blackboard): http://iol.tamucc.edu/ Course Materials 1. Required Text: O’Brien, James and George Marakas, Introduction to Information Systems: Essentials for the E-Business Enterprise, 16th ed., Irwin/McGraw-Hill. Print - ISBN: 0073376884 eText – ISBN: 0077506413 2. Course material through http://iol.tamucc.edu/ Optional Materials None Prerequisites MISY 2305 or equivalent and Junior standing or above. Course Description: Provides an understanding of the importance of computer-based information in the success of the firm. Illustrates ways in which companies utilize computer systems to strategically compete within certain industries...

Words: 2297 - Pages: 10

Premium Essay

Bulabulabula

...Blackboard/Start Here. Class & Section Number: ENGL 111-16N Tuesdays and Thursdays (T/R), 11:00-12:15, B209 Instructor Information NAME: Julie Kraft EMAIL: jkraft10@ivytech.edu OFFICE HOURS: By appointment SUPERVISOR INFORMATION: Annie Gray, English Department Chair, Room C118, Phone: 812-330-6038, agray@ivytech.edu Required Materials REQUIRED TEXTBOOKS: * Wilhoit, A Brief Guide to Writing from Readings, 6th edition, Pearson (Custom edition for Ivy Tech) * Hacker and Sommers, A Pocket Style Manual, 6th edition, Bedford/St. Martin’s * Ivy Tech Bloomington literary magazine, mê tis, Volume 8 ADDITIONAL MATERIALS & EXPENSES: * Printouts of Blackboard readings and items you research for essays * Electronic storage device * Folder for assignment submissions * Access to Microsoft Word (Download for free from Campus Connect) * Poster board and other poster-making materials http://www.ialf.edu/dpdf/march04page7.html Collegewide Course Outline of Record for ENGL 111: In short, this class will teach you the academic reading and writing skills you need to succeed in an American college classroom. Flag this...

Words: 6739 - Pages: 27

Premium Essay

Hint for Life

...Introduction to Cultural Anthropology Anthropology 102 (13770) Fall Semester 2013 Fullerton College Instructor: Michelle Stockdale Wednesdays, 6:50-10:00 p.m., Room 1417 Email: MStockdale@fullcoll.edu Voice Mail: 714-992-7000 x28814 Course Materials: ▪ Kottak, Conrad Phillip, Mirror for Humanity, A Concise Introduction to Cultural Anthropology, 8th edition ▪ Ferraro, Gary, Classic Readings in Cultural Anthropology, 3rd edition ▪ 2 Scantrons (No. 882-E) Course Description & Objectives: Anthropology, the broadest of the social sciences, is the study of humankind. One of the strengths of anthropology as a discipline is its "holistic" or integrative approach; it links the life sciences and the humanities and has strong ties with disciplines ranging from biology, psychology, linguistics, political science, and many others. This course surveys the discipline of cultural anthropology. It provides an introduction to the study of culture and society in a comparative perspective. At the end of this course you will be able to identify the knowledge and contribution that cultural diversity makes toward understanding the problems and issues of the modern world. Student Learning Objective: At the end of this semester, you should be able to understand and identify anthropological key concepts: 1. Identify and apply the key terminology, theoretical orientations, principles and methods used in cultural anthropology.   2. Describe the general characteristics...

Words: 1512 - Pages: 7

Premium Essay

Sylubus

...cultures, and how people adapt to a rapidly changing modern world. The central objectives of this course are to develop your intellectual skills, your cross-cultural fluency, and your sense of civic and moral engagement in global society. I hope that this course inspires many of you to become anthropology majors or minors, and grants each of you an anthropological perspective on your own life. REQUIREMENTS This is an intensive course that requires full participation from every student. You must attend all lectures, study all the assigned materials before the class for which they are listed, complete required assignments, actively participate in lecture, and demonstrate thoughtful consideration of readings, videos, in-class activities and quiz/exam questions. Optional extra credit activities will be made available throughout the term. I expect that you complete 6-8...

Words: 9454 - Pages: 38

Premium Essay

Fin 534 Complete Course Week 1 to Week 11

...com/q/fin534-week-1-discussion/7817 FIN534 Week 2 Discussion "Financial Statement, Cash Flow, and Taxes" Please respond to the following: Analyze the importance and impact of financial managers being able to understand financial statements. Provide the rationale behind your analysis. Imagine that you are starting a business. Determine the tax considerations that might result in you setting the business up as a proprietorship or a partnership, rather than a corporation. Provide a rationale for your decision. Download Answer Here http://workbank247.com/q/fin534-week-2-discussion/7818 FIN534 Week 2 Homework Set 1 Directions: Answer the following questions on a separate document. Explain how you reached the answer or show your work if a mathematical calculation is needed, or both. Submit your assignment using the assignment link in the course shell. This homework assignment is worth 100 points. Use the following information for Questions 1 through 8: Assume that you recently graduated and have just reported to work as an investment advisor at the one of the firms on Wall...

Words: 4711 - Pages: 19

Free Essay

Stuff

...be discussed. Prerequisite(s) and/or Corequisite(s): Prerequisite: IT103 Operating Systems Credit hours: 4 Contact hours: 50 (30 Theory Hours, 20 Lab Hours) Syllabus: Linux Operating System Instructor | Jerry Black | Office Hours | Thursday, 4PM-6PM | Class Hours | Monday, 6:00PM – 10:20PM | Contact | Ms. Travis, 937-264-7707 | | jblack@itt-tech.edu | Major Instructional Areas 1. Introduction to Linux 2. Linux installation 3. Graphical user interface (GUI) desktops 4. Command-line interface (CLI) essentials 5. Hardware configuration: display, network, and printer 6. Networking: Resource sharing and remote access 7. Backup and restore utilities 8. Installing software in Linux 9. Scripting: Bourne Again Shell (bash) and Perl 10. Apache Web Server installation and configuration Course Objectives 1. Discuss the history and unique characteristics of the Linux operating system. 2. Perform an installation of Linux. 3. Use the components and features of the GNOME desktop environment. 4. Perform basic tasks by using the command-line interface (CLI). 5. Use the various Linux process management features. 6. Create and execute basic scripts by using the Perl programming language and Bourne Again Shell (bash). 7. Configure computer hardware in Linux. 8. Administer and maintain a Linux system. 9. Install and update software in Linux 10. Access Linux network services using a Linux...

Words: 2032 - Pages: 9

Premium Essay

Entire Course Acct 304

...Disclosure Notes ACCT 304 Week 3 DQ 1 Income Statement ACCT 304 Week 3 DQ 2 Cash-Flow Statement ACCT 304 Week 4 DQ 1 Revenue Recognition ACCT 304 Week 4 DQ 2 Time Value of Money Concepts ACCT 304 Week 5 DQ 1 Cash ACCT 304 Week 5 DQ 2 Receivables ACCT 304 Week 6 DQ 1 Inventory Classification and Systems ACCT 304 Week 6 DQ 2 Inventoriable Costs Cost-Flow Assumptions ACCT 304 Week 1 Homework Assignments Chapter 1: E 1-7 , Research Case 1-4 Chapter 2: E 2-4, E 2-8, E 2-12 ACCT 304 Week 1 Quiz 1. (TCO 1) Which of the following was the first private sector entity that set accounting standards in the United States? 2. (TCO 2) The enhancing qualitative characteristic of understandability means that information should be understood by 3. (TCO 3) XYZ Corporation receives $100,000 from investors for issuing them shares of its stock. XYZ’s journal entry to record this transaction would include a 4. (TCO 3) Cal Farms reported a supplies expense of $2,000,000 this year. The supplies account decreased by $200,000 during the year to an ending balance of $400,000. What was the cost of supplies Cal Farms purchased during the year? 5. (TCO 3) Temporary accounts would not include. ACCT 304 Week 2 Homework Assignments Exercise 3-2, 3-3, 3-4 ACCT 304 Week 2 Quiz 1. (TCO 4) Current assets include cash and all other assets expected to become cash or be consumed 2. (TCO 4) Rent...

Words: 2554 - Pages: 11

Premium Essay

Second Chapter

...Unit 2 Assignment 1: Homework Learning Objectives and Outcomes Review documents to discover relevant entities and attributes for database. Prepare interview questions and follow up. Prepare questionnaires. Observe work flow for process and exceptions. Identify the issues with the current database. Define and list requirements of a database. Define business rules of a database. Define entities and attributes of a database. Identify candidate keys for entities of a database. Assignment Requirements Answer the following True or False questions on the student answer sheet. Required Resources Textbook Submission Requirements Submit your written answers to your instructor at the beginning of Unit 3. Unit 2 True/False Questions Indicate whether the following statements are true or false on the student answer sheet. 1) A requirement is something a database needs to do in order to fulfill its purpose.t 2) You only need to include the most important stakeholders in the database discussions.f 3) Forms are used for gathering input.t 4) A transaction database is optimized to track transactions in real time.t 5) Data mining uses business intelligence tools and techniques on a variety of data sources brought together in a data warehouses.t 6) The domain is the focus or knowledge area of a database.t 7) Interviews are good for asking open ended questions.t 8) Open ended question are questions that don't have fixed...

Words: 687 - Pages: 3