CS 101 Test 2 Review.

Slides:



Advertisements
Similar presentations
Developing an Excel Application
Advertisements

Tutorial 8: Developing an Excel Application
Lecture 1: Overview of Computers & Programming
Overview of Programming and Problem Solving ROBERT REAVES.
Some computer fundamentals and jargon Memory: Basic element is a bit – value = 0 or 1 Collection of “n” bits is a “byte” Collection of several bytes is.
CS 111: Introduction to Programming Midterm Exam NAME _________________ UIN __________________ 10/30/08 1.Who is our hero? 2.Why is this person our hero?
Programming in Visual Basic
Chapter 6 Review System Software: Operating Systems and Utilities.
COSC 120 Computer Programming
Chapter 1 Program Design
Course: Introduction to Computers
Operating Systems. Software Software – the instructions that make the CPU do useful things Divided into two main categories – System software – Applications.
Systems Software Operating Systems.
Introduction to Computers and Programming
COMPREHENSIVE Excel Tutorial 8 Developing an Excel Application.
Introduction to VBA. This is not Introduction to Excel We’re going to assume you have a basic level of familiarity with Excel If you don’t, or you need.
Using Excel To help with data. Excel is a spreadsheet program that can interface with Word, or PowerPoint A spreadsheet program has cells (little blocks)
CSC 125 Introduction to C++ Programming Chapter 1 Introduction to Computers and Programming.
CS 101 TEST 2 REVIEW. An IF function in Excel A. has 3 parts: less than, greater than and equal to B.has 3 parts: condition, true and false C.has 4 parts:
There are different types of translator. An Interpreter Interpreters translate one instruction at a time from a high level language into machine code every.
11 10/10/2005 BAE Spreadsheet Macros (Visual Basic for Applications) Slides to accompany an in-class demo of spreadsheet technique: Macro Programming.
SOFTWARE It Consists of a series of instructions that tells the computer what to do. It is collection of programs. Software is set of instruction which.
Common file formats  Lesson Objective: Understanding common file formats and their differences.  Learning Outcome:  Describe the type of files which.
S2008Final_part1.ppt CS11 Introduction to Programming Final Exam Part 1 S A computer is a mechanical or electrical device which stores, retrieves,
Systems Software Operating Systems. What is software? Software is the term that we use for all the programs and data that we use with a computer system.
Getting Started with MATLAB 1. Fundamentals of MATLAB 2. Different Windows of MATLAB 1.
Review for final exam CS 101 Summer If the street is clear take two steps else wait a minute This is an example of which structure? 1.A loop / repetition.
Computer Science 1 Week 11. This Week... QBasic While Loops QBasic While Loops Audio Basics Audio Basics.
Cs413_design04.ppt Design and Software Development Design : to create a functional interface that has high usability Development : an organized approach.
Chapter 9 Macros And Visual Basic For Applications.
1 Software. 2 What is software ► Software is the term that we use for all the programs and data on a computer system. ► Two types of software ► Program.
Chapter 1 Computers, Compilers, & Unix. Overview u Computer hardware u Unix u Computer Languages u Compilers.
Review Test 3 CS 101 Fall If the rabbit is facing the door rabbit.move (two meters) else rabbit.turntoface(door) This is an example of which control.
Review Test 3 CS 101 Spring If the rabbit is facing the door rabbit.move (two meters) else rabbit.turntoface(door) This is an example of which control.
Operating Systems. An operating system (os) is a software program that enables the computer hardware to communicate and operate with the computer software.
CONTENT  Introduction Introduction  Operating System (OS) Operating System (OS) Operating System (OS)  Summary Summary  Application Software Application.
Chapter 4 Software. Introduction Program: is a set of sequence instructions that tell the computer what to do. Software: is a collection of programs,
Pages Appendix B: Review of ExcelChapter 3 Market Trends & Analysis IBM 320 CAL POLY POMONA IBM320 Market Trends and Analysis Maha Ghosn.
CS 101 TEST 2 REVIEW. An IF function in Excel A. has 3 parts: less than, greater than and equal to B.has 3 parts: condition, true and false C.has 4 parts:
Chapter 1: Introduction to Computers and Programming
Introduction to Computers
Excel Tutorial 8 Developing an Excel Application
Topics Introduction Hardware and Software How Computers Store Data
Computer Basics: Parts of a Computer? Part I
Key Ideas from day 1 slides
DDC 1023 – Programming Technique
Computer 4 JEOPARDY Bobbie, Sandy, Trudy.
Computing Fundamentals
Introduction to Computers and Java
Microsoft Excel 101.
Algorithm and Ambiguity
Computers Are Your Future
Systems Software Keywords Operating Systems
Introduction to Computers
Computer Science I CSC 135.
Designing and Debugging Batch and Interactive COBOL Programs
Chapter 6 System and Application Software
Microsoft Excel 101.
Algorithm and Ambiguity
Introduction to Computer Software
There are different types of translator.
CS 1111 Introduction to Programming Spring 2019
ICT Gaming Lesson 2.
Tonga Institute of Higher Education IT 141: Information Systems
System Software: Operating system, Utility Programs, & File Management
Tonga Institute of Higher Education IT 141: Information Systems
Chapter 6 System and Application Software
Chapter 6 System and Application Software
Chapter 6 System and Application Software
CS 1308 Exam 2 Review.
Presentation transcript:

CS 101 Test 2 Review

1. An IF function in Excel has 3 parts: less than, greater than and equal to has 3 parts: condition, true and false has 4 parts: conditions, A, B and C has 2 parts: condition and test

2. A macro is a small program attached to a document a recording of actions that can be played back later vulnerable to virus attacks all of the above

3. A clustered column chart has a bar for each value charted, with height of bar proportional to the value represented represents the percentage of a whole that each value is shows the relationship of one set of values to another set of values

4. A file that is JPEG format can represent 16 million colors is good for charts and simple colors can be compressed a lot if zipped only works on PC machines

5. A CLI is An interface where the user must remember the commands and filenames, not friendly An interface using a pointing device, icons, drop- down menus, a visual metaphor A part of an OS which handles the memory in the computer A kind of file format which allows for animation and simple colors

6. An operating system made by Bell Labs, open source, free, stable, is Windows Unix Linux iOS Android

7. A lossless compression method would Be able to reproduce exactly the thing that was compressed (when decompressed) Be used by zipping programs Be used by jpegs Be used by mp3s A and B

8. DRM Is considered anti-piracy Is an obsolete protocol for email Is used on most audio files these days Can be used to record actions for later playback

9. Multitasking Requires more than one CPU Can only handle 3 tasks at a time Is a simulation (an illusion) if done on one CPU Is not available yet, is still under research

10. A macro in Excel will always be in a sheet with “macro” in the file name an extension of xlsm a chart numbers

11. The GIF format Is best used to display pictures with a limited selection of colors and straight lines Was created by IBM Is a descendent of the PNG format Can hold more than one frame, so there is a limited form of animation possible A and D

12. A speaker is an input device an analog to digital converter a digital to analog converter able to reproduce sounds precisely as they were originally heard

13. Inserting a row or column into a spreadsheet has to be done one cell at a time will change any formulas which exist in the sheet only if they use absolute references will change a range in a formula if the insertion is inside the range or to the left of or above the formula with the range is not allowed once data has been entered into the sheet

A. A loop / repetition B. A branch / selection C. A module 14. If the rabbit is facing the door rabbit.move (two meters) else rabbit.turntoface(door) This is an example of which control structure? A. A loop / repetition B. A branch / selection C. A module D. A sequence

15. CPUs understand A. English B. High level languages C. Machine language D. pseudocode

16. A syntax error happens when The program tries to divide by zero The programmer misspells a keyword in the language The programmer multiplied by 10 when they mean to multiply by 100 The program tries to open a file that does not exist

17. In Alice, ___ would be a method. A penguin Penguin.talk Penguin.isbelow A mouse click None of the above

18. An algorithm is a low-level language translator a set of instructions to solve a problem a compiler something only programmers use

20. In Alice it’s hard to Make a syntax error Use a loop Erase a statement from a program Run a program

21. File formats which use lossless compression are: (choose all that are correct) JPEG GIF PNG MP3 ZIP WAV