Free Essay

Computer Programming 260

In:

Submitted By moonstar6
Words 344
Pages 2
CD 260
09/20/2008
Homework #1

1. Video-is composed of a series of static frames. When the frames are viewed quickly, one after another, the motion of the objects is observed.
Examples: DVD’s, QuickTime, MPEG-4

2. Audio-the electrical vibration that creates the sound waves that emanate from a speaker.
Examples: Sony Sound Forge™, Adobe Audition™

3. Text-considered to be any written material that contains characters from an alphabet, in any language.
Examples: Catalogs, Magazines, Microsoft Word™

4. Graphics-drawings or images that can be created by software or by a scanner, or photographs.
Examples: Autodesk AutoCAD™, Adobe Photoshop

5. Animation-contains various objects or images moving about a screen over a length of time. This is accomplished by changing the position of the object over a series of frames.
Examples: Macromedia Flash™, Corel Animation Shop™, children’s cartoon

6. Presentation Based Authoring Tool-used to create a series of slides that are usually presented in sequence; each slide can contain text, graphics, audio, animation & video.
Examples: Microsoft Power Point, Corel Presenter ™

7. Web Based Authoring Tool-used to assemble context for display over the internet. The resulting file may be an HTML program, a PDF graphics file, or a DWF drawing file.
Examples: Macromedia Dreamweaver™, Microsoft Front Page™

8. Time Based Authoring Tool-use a time line to determine when various multimedia elements are to be utilized; each element resides in a series of frames; when a frame is reached, the element is activated.
Examples: Macromedia Director, Corel Animation Shop

9. Clip Art-ready-made pieces of printed or computerized graphic art, such as illustrations, borders, and backgrounds that can be electronically copied and used to decorate a document; may be in the form of graphics, photographs, audio, animation, or video.
Examples: Bitmap or Vector Graphics, Windows Metafile

10. Copyright-when a work is created, the creator is granted rights associated with the product; means: you cannot copy the material unless you have an authorization from the creator or owner of the rights.
Examples: a Patent, a Trademark

Similar Documents

Free Essay

Research Paper

...www.it-ebooks.info www.it-ebooks.info Programming Interviews Exposed: Secrets to Landing Your Next Job Preface. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxv Introduction. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xxix Chapter 1 Before the Search . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 Chapter 2 The Job Application Process. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 Chapter 3 Approaches to Programming Problems. . . . . . . . . . . . . . . . . . . . . . . . . . . . 19 Chapter 4 Linked Lists. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31 Chapter 5 Trees and Graphs. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 61 Chapter 6 Arrays and Strings. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ....

Words: 48008 - Pages: 193

Free Essay

None

...have been printed in initial capital letters or in all capitals. The Pragmatic Starter Kit, The Pragmatic Programmer, Pragmatic Programming, Pragmatic Bookshelf and the linking g device are trademarks of The Pragmatic Programmers, LLC. Every precaution was taken in the preparation of this book. However, the publisher assumes no responsibility for errors or omissions, or for damages that may result from the use of information (including program listings) contained herein. Our Pragmatic courses, workshops, and other products can help you and your team create better software and have more fun. For more information, as well as the latest Pragmatic titles, please visit us at http://www.pragprog.com Copyright © 2009 Chris Pine. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form, or by any means, electronic, mechanical, photocopying, recording, or otherwise, without the prior consent of the publisher. Printed in the United States of America. ISBN-10: 0-9766940-4-2 ISBN-13: 978-1-934356-36-4 Printed on acid-free paper. P1.1 printing, March 2009 Version: 2009-7-22 www.it-ebooks.info Contents Preface to the Second Edition Introduction What Is Programming? . . . . . . . . . . . . . . . . . . . . . . . Programming Languages . . . . . . . . . . . . . . . . . . . . . . The Art of Programming . . . . . . . . . . . . . . . . . . . . . . 1 Getting Started 1.1 Windows . . . . . ....

Words: 51233 - Pages: 205

Premium Essay

Code

...Pseudocode syntax, descriptions and examples Overview: This table provides a reference for commonly used pseudocode for introductory computer program design courses. You should use this as your reference and copy and paste code examples into your projects to ensure you are using proper syntax. Be sure to indent your code to make it more readable and use modify and enhance from the examples as needed. Also, capitalize the first letter of your pseudocode (e.g. While, not while). Pseudocode Write/Prompt Description Displays messages and other information on the screen Flowchart equivalent Write “What is your name?” Input Pauses execution, allowing the user to enter data Input FirstName Input FirstName Compute/Set Assigns a value to a variable Set Avg=(num1+num2)/2 Declare Example usage Write “What is your name?” Write “Your name is “ +YourName + “.” Prompt for ItemName, Price, Quantity Declares a variable to be of a specific type Input Number1, Number2 Compute average value: Set Avg= (num1 + num2)/2 Compute total cost: Set TotalCost= 1.25*Songs Declare FirstName As String Declare FirstName as String Declare Num1, Num2 As Integer Possible datatypes may include: String 1 Call Requests a module, subprogram, or function be executed Call WriteNums(num1, num2)) If End If Tests if a condition is met. If the test condition is true, the statements are executed. Enter Is Number < 5? Character Integer Float Main Module Write “Enter 2 numbers” Input Num1,Num2 Call WriteNums(num1...

Words: 712 - Pages: 3

Premium Essay

Personal Learning Management

...This part of the project is all about planning the overall project. As instructed, a Visual Logic flowchart was designed, as well as a pseudo code for the project. As in most cases, these things are living plans, meaning that they are not written in concrete. As the need arrives, the code and flowchart can be modified to better fit the desired outcome. The pseudo code consists of three string variables, five number variables, three arrays, and a Boolean variable. The string variables are mainly for the use of storing data which will be used for searching the arrays or for storing new types of information in the array. The number variables are being used mainly for the option of making choices. This program has a few choices where the user can go one of two ways. For example, in the beginning, they can choose whether they would like to add new data or view already stored data. That will be determined by the variable “choice1”. The variable “choice2” will allow for the user to make a choice depending on the choice they made for “choice1”. The last choice variable , “choice3”, is used only to allow the user to determine whether they are done using the program or not. A very important variable called “count” will store the number of data entries the user has inputted. This will come in handy when traversing the arrays. The variable “i” is only used for use in the For loops and referencing the array. There are three arrays in the program. The “informationGenre[]”...

Words: 481 - Pages: 2

Free Essay

Programming Solution Proposal

...Programming Solution Proposal Donald L. Smith PRG/211 June 24, 2013 Jack Warner Programming Solution Proposal The McBride Financial Services Company, a part of the Virtual Organizations, needs a computer program to calculate mortgage payments in their agent field offices. The agents want to input a mortgage loan amount, an interest rate, and a number to pay off the loan into this program and have the mortgage’s monthly payments as output. In addition, agents want the program to calculate the pay-off amount of the loan for a specific year(s) or an amortization table for the mortgage. The benefits of this program are faster and more reliable than using manual calculations or an electronic calculator where they can still key in the wrong number. The program can also be ported to a company website. This website can be accessed by customers to inquire about mortgage information and thus free the agents’ time for such requests. The program development cycle is the best approach for coding a program solution. The first paragraph has done the analyzing of the problem, then comes the design phase. The requirements for this task are identified as input, output, and processing tasks. Tasks are coded into a program module. This breaking down of tasks into modules is known as modular programming. According to Torres (2012), ”Breaking down a programming project into modules makes it more manageable. These individual modules are easier to design, implement, and test. Then...

Words: 545 - Pages: 3

Premium Essay

Managing Stress

...DIS 511: IS DATA, CODING, AND INFORMATION Data and information Data. ← Items about things, events, activities, and transactions are recorded, classified, and stored but are not organized to convey any specific meaning. ← Data items can be numeric, alphanumeric, figures, sounds, or images. Information. ← Data that have been organized in a manner that gives them meaning for the recipient. They confirm something the recipient knows, or may have “surprise” value by revealing something not known. Internal and External data ← Internal data ← An organization internal data are stored in one or more places. Internal data is normally accessible via an organization computer network and may reside in user’s PC, databases and people’s memory. Internal data relates to: ← People e.g. employees – corporate database ← Products - sales ← Services ← Processes ← External data relates to activities outside the organisation. The data is critical in the management of the organization. Source include: Commercial databases e.g. data available on CD-ROMS, Internet servers, pictures, diagrams, atlases, television, Government reports, Commercial databases that normally charge for access to specialized databases Internal and External data ■ External data must be monitored and captured to ensure that important data...

Words: 7046 - Pages: 29

Premium Essay

Why I Came to Pcc

...establish a career in Computer Programming. Once completed, I hope to be employed by one of the many Fortune 500 companies that would be able to utilize my skills. While here at Pueblo Community College I will be pursuing an AGS degree in Computer Information Systems. I will then transfer to a university to obtain my Masters in Computer Science. The reason I chose to return to school for this was because I have always had a love for computers and electronics. Ever since I was ten years old computers have fascinated me. I believe that if you are doing something that you are passionate about, you are more likely to succeed. I would like to start a career with Google with such a degree. They are leading the industry in the search engine battle, especially with the acquisition of Skype and YouTube, making it possible to explore different areas of programming. I will accept a position with Yahoo or Facebook solely because I think it would be a stimulating work environment. By furthering my education, I not only secure my life but my family’s lives as well. Obtaining my degree will put me on the necessary path to becoming a very successful Software Engineer. As aforementioned, Pueblo Community College will be the catalyst for firstly obtaining my degree, and then securing a career that maintains my standards of lifelong satisfaction. Pueblo Community College is building the basis for a six year, scholarly extravaganza to acquire my Master’s Degree in Computer Science. Choosing to...

Words: 356 - Pages: 2

Premium Essay

Problems

...programmers write computer programs to provide solutions for others. First, the programmer must understand the problem he/she is trying to solve. All aspects of the problem description must be clarified and completely understood at this stage. Planning the Logic: Once the programmer understands the problem, it is time to plan the logic of the program. During this time of the process, the programmer uses tools to layout the program’s logical steps from beginning to end. The programmer decides the variables needed in the program. Also, the programmer uses planning tools like, Flowcharts, and Pseudocode to show the steps involved in his/her programming solution. Coding the Program: Coding is converting the design into an actual program, written in some form of programming language. This is the step where you actually have to sit down at the computer and type. Coding is a little bit like writing an essay. In most cases you write your program using something like a word processor. And, like essays, there are certain things that you always need to include in your program, like titles, contents pages etc.. When you've finished translating your design into a program you need to submit it to the computer to see what it makes of it. Using Software to Translate the Program into Machine Language: The lowest-level programming language (except for computers that utilize programmable microcode) Machine languages are the only languages understood by computers. While easily understood...

Words: 511 - Pages: 3

Free Essay

Computer Virus

...In this assignment, I will be addressing a few topics about computer virus . I will explain the difficulty of creating a computer virus and its frequency and also explaining the differences between a virus and a worm, along with their threat level. According to Microsoft, computer viruses are small software programs that are designed to spread from one computer to another and to interfere with computer operation (Microsoft, 2013). Computer viruses are difficult to create because you have to know the proper coding and determine what you are trying to attack. Many computer programmers or hackers have coding set up online as a start up, but majority of them don’t function correctly. There is constantly many people trying to hack into computers on a daily. Some are fortunate to succeed and some are not. A virus consists of self-propagating program codes that’s triggered by a specific time or event (Bidgoli, 2012). A virus attaches itself to a program or file enabling it to spread from one computer to another, leaving infections as it travels. Viruses can be transmitted through an email attachment or through a network. A computer virus severity varies. It can be mild like a prank, displaying images on a user’s screen or while others can damage your hardware, software or files. According to Cisco, all viruses are attached to an executable file, which means the virus may exist on a system but will not be able to active until a user runs or opens the malicious host file or...

Words: 568 - Pages: 3

Free Essay

Computer Programming

...Computer Programming Computers and machines have definitely changed people's lives over the years influencing academic life, workplace, and even the home setting. Therefore, it is important to become knowledgeable about computers and its different applications. Without doing so can severely affect one's chances in succeeding especially in his or her professional life since majority, if not all, of companies around the world depend on computers and machines. There are numerous jobs that deal specifically on the development of technology, including computers. One of the major careers in the field of computers is computer programming. People who work in this field are responsible for “writing, testing, and maintaining the instructions that computers follow to perform their functions. They also focus on conceiving, designing, and testing logical structures for solving problems by computer” (“Computer Programmers”). Literally, they program computers, softwares, and applications to function the way computers should. In 2007, “40 percent of companies expected to add programmers and information technologists, 45 percent expected to maintain their staffs, and 81 percent planned to increase the salaries of their computer programmers” (“The 2007 Job Market Outlook for Computer Programmers”). However, these numbers are not enough because it seems that the job outlook for this profession is not good. “The occupation is forecasted to grow more slowly than the average for all other occupations...

Words: 911 - Pages: 4

Premium Essay

Usa Olympic Uniform Controversy

...Jaleesa Wynn MGMT 3720 Assignment #2 Work Motivation “Magic Eye, Inc” is a case study about a company that specializes in computerized special effects. This company is made up of majority of computer programmers. Paul Reed, vice president of Magic Eye, Inc is an engineer hired aboard several individuals who share similar backgrounds and works young programmers in developing their expertise. However, Paul is disappointed in the potential level of performance by his colleagues and because the programmers are essential to this business, the performance of this company will not increase if the programmers do not do their part. With the lack of motivation of his employees, Paul came up with a solution to review particular. He believes that programmer Jeannine Savaria, is a very typical employee that needs to be discussed about her work performance. A recent Magna cum Laude graduate from college, Jeannine believes that she has holds exceptional technical abilities with the knowledge she possess at conceptualizing employees whose performance level is not met computer programs, however, her performance is being questioned by her supervisor in micromanaging her work. Jeannine began to get irritated and annoyed by her supervisors actions towards her assuming the lack of trust in her abilities as a programmer. Motivation can be describe as a reason for ones behavior or to act in a certain way. This case will be evaluated in explaining a theory in determining favorable...

Words: 887 - Pages: 4

Premium Essay

Unit 3 Assignment 1

...Short Answer: 1. What two things must you normally specify in a variable declaration? a. variable type b. identifier i. int n; // type - int, identifier - n 2. What value is stored in uninitialized variables? c. is a variable that is declared but is not set to a definite known value before it is used. Algorithm Workbench Review: 3. Write assignment statements that perform the following operations with the variables a, b, and c. d. Adds 2 to a and stores the result in b e. Multiplies b times 4 and stores the result in a f. Divides a by 3.14 and stores the result in b g. Subtracts 8 from b and stores the result in a ii. b = a + 2 iii. a = b * 4 iv. b = a / 3.14 v. a = b - 8 4. Assume the variables result, w, x, y, and z are all Integers, and that w=5, x=4, y=8, and z=2. What value will be stored in result in each of the following statements? h. Set result= x+y i. Set result= z*2 j. Set result=y/x k. Set result=y-z vi. result = x++ - y; vii. Answer -4 viii. result = 4 – 8 = -4 ix. result = ++w + y; x. Answer xi. w = w + 1 = 5 + 1 = 6 xii. result = 6 + 8 = 14 5. Write a pseudo code statement that declares the variable cost so it can hold real numbers. * Declare Real price= 0.00 * Display "the original price." * Input item original...

Words: 731 - Pages: 3

Free Essay

Odesk: Changing How the World Works.

... connecting U.S. businesses with international contractors, to offshore-offshore relationships, connecting global businesses with global contractors. Which option would make oDesk most successful in their market? Strengths | Weaknesses | * The company is cost-conscious * The company is very inventive and keep to achieve their objectives * oDesk offers additional services than their competitors + oDesk focuses on time-based contracts ( see definition in the case ) * oDesk policy is to provide only factual information on its Contractors. * oDesk online platform include payment functionality as well as move towards the worker classification and relates tax services. * oDesk is expanding beyond the area of computer programming, to include technical writing, design, data entry and other related areas. * oDesk is different in the ways of working., e.g. chat capabilities, online payment platform, which offers user-friendly option for Employer to pay Contractors, best web-site. * WOM, word of mouth advertising, which gives a strong network, biggest asset of the company. * Great reviews/compliments from the contractors. * A very positive financial perspective, 2009- $ 60 mln, 2010- $ 117 mln. | * Lack of local talent * Harder...

Words: 287 - Pages: 2

Free Essay

Class Date

...Class Date Assignment Learning Team C University of Phoenix Steve Randel PRG 420 November 30, 2011 Class Date Assignment Introduction There are several different aspects to programming that we need to take into consideration as we learn more and more of the language. In Java, there is much to learn that will assist in becoming programmers. During this paper we will discuss several aspects of a program that are essential to make a program run properly. Inside every program there is a certain set of commands and formats that are required in order for the program to work like it needs to. Several of them will be listed later. Karen Fords two bullets Methods The definition of a method is, “two of the components of a method declaration comprise the method signature—the method's name and the parameter types.” ("Defining Methods", 2011). There are several different aspects of a method that we, as programmers, need to keep in mind as begin our journey into the programming world. Each method has six components that make work correctly. Each of the six components will have to be used in order to make the method work right. The six components are: 1. Modifiers a. Public – allows this method to be used in all areas of the program b. Private – can only be used when direction is given or a password is used 2. Return Type a. Void – means that the method does not return any value ...

Words: 728 - Pages: 3

Free Essay

Layout

...for the facility layout problem are summarized. The characteristics include input required, limitations, type of output obtained, and some other general characteristics. Quantitative and computer-based models will sometimes produce odd layout shapes. For this reason, optimization models and computer programs designed to plan facility layouts, based on optimizing certain objectives, can be useful only for determining some guidelines for the planners. While these models can be used for planning alternative layouts, considerations of qualitative and personnel factors should be given during the layout finalization phase. INTRODUCTION One of the tasks in layout planning is assigning relative locations to a set of facilities. The best layout plan is often the one that results in the highest overall effectiveness of transactions between the facilities. Cost considerations can be a major factor in choosing a given alternative layout plan for implementation. The problem of facility layout is well covered in the literature. Some models are based on the analysis of the relative location of facilities. A graphical approach, a quantitative procedure and a quadratic assignment algorithm were developed by Buffa[1], Wimmert[2] and Hillier & Connors[3], respectively. A large mixed-integer goal-programming model...

Words: 3517 - Pages: 15