logo-home

Masigaderic

On this page, you find all documents, package deals, and flashcards offered by seller masigaderic.

Community

  • Followers
  • Following

515 Reviews received

678 items

TS Python Practice Exam 1 - Python Programming Questions with Complete Solutions

(0)
$10.49
0x  sold

Python makes the distinction between integers and floating variables. - Yes When declaring variables in Python, a data type must be specified. - No When setting a boolean variable, the value must start with a capital letter. - Yes A developer wants to make sure a serial number cannot be used in a calculation and that a dollar amount entered as a whole number can have decimals. Then, a message should be displayed to tell a customer the serial number and price for the products. Using the dr...

i x
  • Exam (elaborations)
  •  • 10 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x

Python - Test 1 Questions with Solutions merged

(0)
$10.49
0x  sold

What is a program? - A program is a set of instructions that a computer follows to perform a task. What is hardware? - Hardware is all the physical devices, or components, of which a computer is made. List the five major components of a computer system. - The CPU, main memory, secondary storage devices, input devices and output devices. What part of the computer actually runs programs? - The CPU What part of the computer serves as a work area to store a program and its data while ...

i x
  • Exam (elaborations)
  •  • 9 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x

Python UAH Exam Guide Questions and Answers

(0)
$12.49
0x  sold

Which of the following data types are not supported in Python? - List, Set, Dict, Tuple Which of the following data types are not supported in Python? - int, string What is the output of print(str) if str = 'Hello World!'? - Hello World! What is the output of print(str[0]) if str = 'Hello World!'? - H What is the output of print(str[2:5]) if str = 'Hello World!'? - llo What is the output of print(str[2:]) if str = 'Hello World!'? - llo World! What is the output of print(str ...

i x
  • Exam (elaborations)
  •  • 18 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x

Python test 1 study guide A with complete Solutions.

(0)
$7.99
0x  sold

Flowcharts - Graphically depict the logical steps to carry out a task and show how the steps relate to each other (Makes the logic easier to follow) Pseudocode - Uses English-like phrases with some Python terms to outline the task (Allows the programmer to focus on the steps required to solve a problem rather than on how to use the computer language) Hierarchy charts - Shows how the different parts of a program relate to each other Also known as HIPO (Hierarchy plus Input-Process-Outp...

i x
  • Exam (elaborations)
  •  • 5 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x

Python Test 1 Practice Questions with Complete solutions 2024

(0)
$12.49
0x  sold

A(n) __________ is a set of instructions that a computer follows to perform a task. 1. compiler 2. program 3. interpreter 4. programming language - program The physical devices that a computer is made of are referred to as . 1. hardware 2. software 3. the operating system 4. tools - hardware The part of a computer that runs programs is called . 1. RAM 2. secondary storage 3. main memory 4. the CPU - the CPU Today, CPUs are small chips known as __________. a. ENIACs b. microproce...

i x
  • Exam (elaborations)
  •  • 17 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x

PYTHON Summer Exam Questions with Answers Merged

(0)
$10.49
0x  sold

The following code represents a ________________ if structure. if a >= 1: if a == 1: - nested Which line of code sets the value of the variable take_home to 500? take_home == 1500 / (1 + 2) take_home = 250 * 6 / 1 + 2 take_home = 250 * (5 % 3) take_home = 250 * 5 - 3 - take_home = 250 * (5 % 3) Given the code message = "Your percentage score of " percentage = "95.6" letter_grade = "% is an A grade." What is the correct code to display the following result? Your percentage ...

i x
  • Exam (elaborations)
  •  • 12 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x

Python Programming Test Questions with detailed solutions

(0)
$8.49
0x  sold

Python A modern programming language named after Monty Python Statement: A single line of Python code. +, -, *, / Python operators that perform mathematical operations. PEMDAS Order of operations that Python follows for the Python keyword that proceeds a block of code to loop through a series of statements. algorithm A set of specific steps for solving a category of problems keyword define the language's syntax rules and structure, and they cannot be used as variable names stateme...

i x
  • Exam (elaborations)
  •  • 7 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x

Python Programming Final Exam Study Questions with Complete solutions

(0)
$4.49
0x  sold

Name the three kinds of data sequences - tuples, strings, lists A ___ loop is used to iterate through a sequence - for the ___ function is used to determine how many pairs in a dictionary or how many elements in a sequence - length (len) An if statment is built by using an if followed by a ___, a ____, and a ____ of one or more statements - condition, colon, block Name the 3 things that must occur for a sentry (loop) variable to effectively control the while loop - initialize, che...

i x
  • Exam (elaborations)
  •  • 3 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x

Python Programming Final Exam Review Questions with Complete solutions

(0)
$7.99
0x  sold

The primary difference between a tuple and a list is that - once a tuple is created, it cannot be changed What will be the value of the variable list2 after the following code executes? list1 = [1, 2, 3] list2 = [] for element in list1: d(element) list1 = [4, 5, 6] - [1, 2, 3] What will be the value of the variable list after the following code executes? list = [1, 2, 3, 4] list[3] = 10 - [1, 2, 3, 10] What is an advantage of using a tuple rather than a list? - Processing a tuple is ...

i x
  • Exam (elaborations)
  •  • 5 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x

Python Programming Exam Review Questions with Complete Solutions

(0)
$9.49
0x  sold

forward(distance) - moves turtle forward distance in current direction backward(distance) - moves turtle backward in current direction circle(radius) - moves the turtle in a circle. Within the parentheses, you write the radius of the circle. penUp, penDown - controls whether or not Tracy is leaving a trail. What are the dimensions of Tracy's world? - 400 pixel tall x 400 pixels wide left(angle), right(angle) - turns Tracy either left or right the inputted degrees For loops - used...

i x
  • Exam (elaborations)
  •  • 8 pages • 
  • by masigaderic • 
  • uploaded  20-05-2024
Quick View
i x