• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/10

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

10 Cards in this Set

  • Front
  • Back

Who wrote Python Programming am introduction to computer science?

John Zelle

What is an algorithm?

This is, we develop a step by step process for achieving the desired result.

What is Analysis?

It's the process of examining algorithms and problems mathematically.

What three terms can describe Computer Science?

Designing, analyzing and Evaluating (algorithms)

What is a compiler?

It's a complex computer program that takes another program written in high level language and translates it into an equivalent program in the machine language of some computer.

What is the high level program called?

Source code

What is low level program language called?

Machine code

What is a computer interpreter?

It is a program that simulates a computer that understands a high level language.

How do you print something in Python shell?

You type



>>> print ("Hello World")



Then click enter and it should look like this after execution



Hello World

What would it look like if you wanted to show the full math problem and answer?

>>>print ("2+3=", 2+3)



Then after you click enter it should look like this



2+3=5