C# Chapter 1

Description

Quiz on C# Chapter 1, created by jrkjlove on 06/09/2014.
jrkjlove
Quiz by jrkjlove, updated more than 1 year ago
jrkjlove
Created by jrkjlove over 9 years ago
225
0

Resource summary

Question 1

Question
A(n) __________ is a set of instructions that a computer follows to perform a task.
Answer
  • compiler
  • program
  • interpreter
  • programming language

Question 2

Question
The physical devices that a computer is made of are referred to as __________.
Answer
  • hardware
  • software
  • the operating system
  • tools

Question 3

Question
The part of a computer that runs programs is called __________.
Answer
  • RAM
  • secondary storage
  • main memory
  • the CPU

Question 4

Question
Today, CPUs are small chips known as __________.
Answer
  • ENIACs
  • microprocessors
  • memory chips
  • operating systems

Question 5

Question
The computer stores a program while the program is running, as well as the data that the program is working with, in __________.
Answer
  • secondary storage
  • the CPU
  • main memory
  • the microprocessory

Question 6

Question
__________ is a volatile type of memory that is used only for temporary storage while a program is running.
Answer
  • RAM
  • secondary storage
  • the disk drive
  • the USB drive

Question 7

Question
A type of memory that can hold data for long periods of time—even when there is no power to the computer—is called __________.
Answer
  • RAM
  • main memory
  • secondary storage
  • CPU storage

Question 8

Question
A component that collects data from people or other devices and sends it to the computer is called __________.
Answer
  • an output device
  • an input device
  • a secondary storage device
  • main memory

Question 9

Question
A video display is a(n) __________ device.
Answer
  • output device
  • input device
  • secondary storage device
  • main memory

Question 10

Question
A __________ is enough memory to store a letter of the alphabet or a small number.
Answer
  • a byte
  • bit
  • switch
  • transisitor

Question 11

Question
A byte is made up of eight __________.
Answer
  • CPUs
  • instructions
  • variables
  • bits

Question 12

Question
In the __________ numbering system, all numeric values are written as sequences of 0s and 1s.
Answer
  • hexadecimal
  • binary
  • octal
  • decimal

Question 13

Question
A bit that is turned off represents the following value: __________.
Answer
  • 1
  • -1
  • 0
  • "no"

Question 14

Question
A set of 128 numeric codes that represent the English letters, various punctuation marks, and other characters is __________.
Answer
  • binary numbering
  • ASCII
  • Unicode
  • ENIAC

Question 15

Question
An extensive encoding scheme that can represent the characters of many of the lan- guages in the world is __________.
Answer
  • binary numberin
  • Unicode
  • ASCII
  • ENIAC

Question 16

Question
Negative numbers are encoded using the __________ technique.
Answer
  • two's complement
  • floating point
  • ASCII
  • Unicode

Question 17

Question
Real numbers are encoded using the __________ technique.
Answer
  • two's complement
  • floating point
  • ASCII
  • Unicode

Question 18

Question
The tiny dots of color that digital images are composed of are called __________.
Answer
  • bits
  • bytes
  • color packets
  • pixels

Question 19

Question
If you were to look at a machine language program, you would see __________.
Answer
  • c# code
  • a stream of binary numbers
  • English words
  • circuits

Question 20

Question
In the __________ part of the fetch-decode-execute cycle, the CPU determines which operation it should perform.
Answer
  • fetch
  • decode
  • execute
  • immediately after the instruction is executed

Question 21

Question
Computers can execute only programs that are written in __________.
Answer
  • C#
  • assembly language
  • machine language
  • Java

Question 22

Question
The __________ translates an assembly language program to a machine language program.
Answer
  • assembler
  • compiler
  • translator
  • interpreter

Question 23

Question
The words that make up a high-level programming language are called __________.
Answer
  • binary instructions
  • mnemonics
  • commands
  • keywords

Question 24

Question
The rules that must be followed when writing a program are called __________.
Answer
  • syntax
  • punctuation
  • keywords
  • operators

Question 25

Question
A(n) __________ is a program that translates a high-level language program into a separate machine language program.
Answer
  • assembler
  • compiler
  • translator
  • utility

Question 26

Question
A __________ is any hypothetical person using a program and providing input for it.
Answer
  • designer
  • user
  • guinea pig
  • test subject

Question 27

Question
A __________ error does not prevent the program from running but causes it to produce incorrect results.
Answer
  • syntax
  • hardware
  • logic
  • fatal

Question 28

Question
A(n) __________ is a set of well-defined logical steps that must be taken to perform a task.
Answer
  • logarithm
  • plan of action
  • logic schedule
  • algorith

Question 29

Question
An informal language that has no syntax rules and is not meant to be compiled or executed is called __________.
Answer
  • faux code
  • pseudocode
  • C#
  • a flowchart

Question 30

Question
A __________ is a diagram that graphically depicts the steps that take place in a program.
Answer
  • flowchart
  • stepchart
  • code graph
  • program graph

Question 31

Question
Objects that are visible in a program’s graphical user interface are commonly re- ferred to as __________.
Answer
  • buttons
  • controls
  • forms
  • windows

Question 32

Question
A __________ is code that describes a particular type of object.
Answer
  • namespace
  • blueprint
  • schema
  • class

Question 33

Question
The __________ is a collection of classes and other code that can be used, along with a programming language such as C#, to create programs for the Windows operating system.
Answer
  • .NET framework
  • Standard Template Library
  • GUI framework
  • MSDN Library

Question 34

Question
The __________ is the part of a computer with which the user interacts.
Answer
  • central processing unit
  • user interface
  • control system
  • interactivity system

Question 35

Question
Before GUIs became popular, the __________ interface was the most commonly used.
Answer
  • command line
  • remote terminal
  • sensory
  • event-driven

Question 36

Question
__________ programs are usually event driven.
Answer
  • command line
  • text-based
  • GUI
  • procedural

Question 37

Question
Today, CPUs are huge devices made of electrical and mechanical components such as vacuum tubes and switches.
Answer
  • True
  • False

Question 38

Question
Main memory is also known as RAM.
Answer
  • True
  • False

Question 39

Question
Any piece of data that is stored in a computer’s memory must be stored as a binary number.
Answer
  • True
  • False

Question 40

Question
Images, such as the ones you make with your digital camera, cannot be stored as binary numbers.
Answer
  • True
  • False

Question 41

Question
Machine language is the only language that a CPU understands.
Answer
  • True
  • False

Question 42

Question
Assembly language is considered a high-level language.
Answer
  • True
  • False

Question 43

Question
An interpreter is a program that both translates and executes the instructions in a high-level language program.
Answer
  • True
  • False

Question 44

Question
A syntax error does not prevent a program from being compiled and executed.
Answer
  • True
  • False

Question 45

Question
Windows, Linux, UNIX, and Mac OS are all examples of application software.
Answer
  • True
  • False

Question 46

Question
Word processing programs, spreadsheet programs, e-mail programs, Web browsers, and games are all examples of utility programs.
Answer
  • True
  • False

Question 47

Question
Programmers must be careful not to make syntax errors when writing pseudocode programs.
Answer
  • True
  • False

Question 48

Question
C# provides only the basic keywords and operators that you need to construct a program.
Answer
  • True
  • False
Show full summary Hide full summary

Similar

Spanish: Talking About Everyday Things
Niat Habtemariam
Presentations in English
Alice McClean
History of Psychology
mia.rigby
A2 Organic Chemistry - Reactions
yannycollins
GCSE Maths: Overview Note
Andrea Leyden
GCSE Computing : OCR Computing Course Revision
RoryOMoore
Plant and animal cells
Tyra Peters
PSBD TEST # 3
yog thapa
2PR101 1. test - 2. část
Nikola Truong
SalesForce ADM 201 Study Quiz
Brianne Wright
Creating Mind Maps with GoConqr
Sarah Egan