SophiaPretty

(5)

$14/per page/Negotiable

About SophiaPretty

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Accounting,Algebra See all
Accounting,Algebra,Applied Sciences,Architecture and Design,Art & Design,Biology,Business & Finance,Calculus,Chemistry,Communications,Computer Science,Economics,Engineering,English,Environmental science,Essay writing Hide all
Teaching Since: Jul 2017
Last Sign in: 304 Weeks Ago, 6 Days Ago
Questions Answered: 15833
Tutorials Posted: 15827

Education

  • MBA,PHD, Juris Doctor
    Strayer,Devery,Harvard University
    Mar-1995 - Mar-2002

Experience

  • Manager Planning
    WalMart
    Mar-2001 - Feb-2009

Category > Computer Science Posted 03 Dec 2017 My Price 10.00

Component of a function used to get an output directly

View the step-by-step solution to:

QUESTION 1 A loop can also be known as a Decision Sequence Iteration Structure 2 points Save Answer QUESTION 2 Abstracts a program's various tasks or...

This question was answered on May 22, 2017. View the Answer

QUESTION 1

 

A loop can also be known as a

Decision

Sequence

Iteration

Structure

2 points Save Answer

QUESTION 2

 

Abstracts a program’s various tasks or function into separate named blocks of code.

Modularization

Code blocks

Subroutines

Flowcharts

2 points Save Answer

QUESTION 3

 

Boolean expressions are only true

 True

 False

2 points Save Answer

QUESTION 4

 

Component of a function used to get an output directly from that function.

for

output

return

print

2 points Save Answer

QUESTION 5

 

Considered the brain of the computer

GPU

CPU

RAM

HDD

2 points Save Answer

QUESTION 6

 

Loops are similar to decisions in that they have a condition statement which evaluates to a TRUE or FALSE value.

 True

 False

2 points Save Answer

QUESTION 7

 

Serves the same purpose as a list, but is considered less flexible.

Iteration

Arrays

Flowchart

Code

2 points Save Answer

QUESTION 8

 

The Python Framework does inform you where an error occurred.

 True

 False

2 points Save Answer

QUESTION 9

 

This programing element begins with the keyword def.

variables

functions

keywords

lists

2 points Save Answer

QUESTION 10

 

Used to define the scope in Python

{ }

sub

indentation

( )

2 points Save Answer

QUESTION 11

 

____ within a list are identified by an index number, placed within square brackets after the name of the list. For example, names[0]

Decisions

Items

Elements

Code

2 points Save Answer

QUESTION 12

 

Python requires the user to specify a variable’s data type during creation.

 True

 False

2 points Save Answer

QUESTION 13

 

It is arguable that recursion is just another way to accomplish the same thing as a while loop.

 True

 False

2 points Save Answer

QUESTION 14

 

Scope is defined the same way in all programming languages

 True

 False

2 points Save Answer

QUESTION 15

 

In Python, this serve as an alternative to a lists which offer slightly different functionality by replacing index values with names.

Dictionaries

Encyclopedias

Arrays

Objects

2 points Save Answer

QUESTION 16

 

Which of the following is NOT true about recursion

It is usually studied at the advanced level

It can accomplish the same tasks as a for loop

Recursion is used to solve complex problems

Recursion functions require more memory

2 points Save Answer

QUESTION 17

 

Which is the following is NOT a basic programming concept listed in the lecture

 

Logic and Syntax

Objects

Code Blocks

Produce Output

2 points Save Answer

QUESTION 18

 

Is an example of an exception object in Python

 

Try

Def

ValueError

Except

2 points Save Answer

QUESTION 19

 

Incorporates the use of the three primary programming structures and logic strategies that create well organized, easy to read, and easy to understand program code.

 

Unstructured Programming

Flowchart

Pseudocode

Structured Programming

2 points Save Answer

QUESTION 20

 

An example of declaring a new class object.

 

menuSelection = displayMenu()

pets = {}

pets = Pet()

elif menuSelection == 4:

2 points Save Answer

QUESTION 21

 

while True: , in Python, can be used to create an infinite loop.

 True

 False

2 points Save Answer

QUESTION 22

 

The Python Framework does inform you where an error occurred

 True

 False

2 points Save Answer

QUESTION 23

 

____ is a critical component to being able to store data and information long term.

File Access

Memory

Print function

with

2 points Save Answer

QUESTION 24

 

Error handling is also known as ___ handling

 

Result

Recursion

Exception

Crash

2 points Save Answer

QUESTION 25

 

We use a ______ block to handle thrown exceptions.

 

try

except

keywords

lists

2 points Save Answer

QUESTION 26

 

When does python limit access to global objects from within a scope?

 

When there is the presence of a newly created local variable with the same name as a global variable.

When there is the presence of a newly created local variable with a different name than the global variable.

When there are no new variables.

When there is the presence of any newly created variable.

2 points Save Answer

QUESTION 27

 

Passes multiple values into a function for processing

 

Global variable

Code block

 

Return

 

Parameter list

2 points Save Answer

QUESTION 28

 

There is no limit to the number of except blocks a program can have.

 True

 False

2 points Save Answer

QUESTION 29

 

When we pass a variable into a function and then modify that variable inside of the function, it also modifies the variable outside of the function that we passed into the function.

 True

 False

2 points Save Answer

QUESTION 30

 

def calcBMI(hgt, wgt);

 

  BMI = wgt * 703 / hgt ** 2

 

   return BMI

 

What is wrong with the above code syntax

 

(hgt, wgt) should be (hgt; wgt)

The ; should be a :

The ** should be a ^

The function code block needs to be closed with enddef

2 points Save Answer

QUESTION 31

 

The function that can be used to generate a list of index values, useful in controlling a for loop:

 

list()

range()

rand()

str()

2 points Save Answer

QUESTION 32

 

The function used to import python code and objects from other python files.

 

build

add

import

print

2 points Save Answer

QUESTION 33

 

An interpreter converts the entire source code into an executable.

 True

 False

2 points Save Answer

QUESTION 34

 

Compilers and interpreters have the following in common:

 

Reads the source code into machine code, all at once.

Translates machine code into byte code.

Reads the course code one line at a time.

Translates source code into machine code.

2 points Save Answer

QUESTION 35

 

The _______ block is used to perform normal operations, but allow an exception to be thrown, thus ending the _______ block.

 

Try

Except

Throw

Catch

2 points Save Answer

QUESTION 36

 

def setPhone(self,

phone):

 

     self.phone

= phone

 

The above code is an...

Mutator method

Accessor method

Global function

Except Function

2 points Save Answer

QUESTION 37

 

What does this operator mean <=

 

Equal

Approximately

Greater than or equal to

Less than or equal to

2 points Save Answer

QUESTION 38

 

Write a 4 element Python dictionary object that contains four colors as the names and their values as examples of something that is that color. Example: “red”: “apple”

 

Path: pWords:0

2 points Save Answer

QUESTION 39

 

Write a Python class definition for an Employee object that contains the following elements:

 

Attributes:

 

id

name

wage

department

 

Methods:

 

Initializer which sets ID, name, and wage

Set Name

Set Department

Get Id

Get Name

Get Wage

Get Department

 

Path: pWords:0

2 points Save Answer

QUESTION 40

 

In Python, all exceptions must be instances of a class that derives from BaseException.

 True

 False

2 points Save Answer

QUESTION 41

 

Attributes are to variables, as methods are to ______________.

 

declarations

objects

functions

exceptions

2 points Save Answer

QUESTION 42

 

Programming method of solving a problem by solving a smaller version of the same problem, repeatedly

 

Repetition

Problem Solving

Debugging

Recursion

2 points Save Answer

QUESTION 43

 

Function used to close a file once the program is done with that file.

 

end()

close()

finish()

detach()

2 points Save Answer

QUESTION 44

 

The len() function accepts an object and returns:

 

the object’s size in kilobytes.

the number of elements in the object.

part of the object.

number of parameters in the object

2 points Save Answer

QUESTION 45

 

_____ are part of the UML and is used to illustrate how your program’s functions will relate and support your organization’s various functions.

 

Flowcharts

Use case diagrams

Class diagrams

Communication diagrams

2 points Save Answer

QUESTION 46

 

Comments in Python begin with:

//

/>

*

#

2 points Save Answer

QUESTION 47

 

A UML diagram used to examine the various states that any objects will go through at various points in time

 

State machine diagrams

Use case diagrams

Communication diagrams

Object diagrams

2 points Save Answer

QUESTION 48

 

The simplest way to produce output is using the _____ statement

 

Get

Try

Print

Use

2 points Save Answer

QUESTION 49

 

Separates the keys when defining the contents of a dictionary.

 

(

{

:

[

2 points Save Answer

QUESTION 50

 

Statement used to delete a dictionary element

 

remove

del

erase

terminate

2 points Save Answer

QUESTION 51

 

Which of the following is NOT a number type supported by python

char

int

long

float

2 points Save Answer

QUESTION 52

 

What is the output of the following Python code:

 

SIZE = 10

 

numbers = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0]

 

index = 0

 

while index < SIZE:

 

  numbers[index] = index * 10

 

  index = index + 1

 

while index > 0:

 

  index = index - 1

 

  print(numbers[index])

View the entire interaction

Top Answer

Here's the explanation you needed for... View the full answer

QUEST (1).docx

QUESTION 1: Iteration
QUESTION 2: Modularization
QUESTION 3: False
QUESTION 4: return
QUESTION 5: CPU
QUESTION 6: True
QUESTION 7: Arrays
QUESTION 8: False
QUESTION 9: functions
QUESTION 10:...

Leave a Comment ({[ getComments().length ]})

Comments ({[ getComments().length ]})

{[comment.username]} 

{[ comment.comment ]}

View All {[ getComments().length ]} Comments

Recently Asked Questions

  • RS (Reduced SSI) Skin Closure Device in General Surgery "Manic Monday!!", Dr. Gandhi felt tension in his head while heading to the board meeting. He knew that
  • 1.        Your boss has been hearing a lot about “strengths based leadership” and wants you to do some research and report back to
  • The purpose of a _________________________________ is to figure out how many units have to be sold at a given price to cover costs. mark-up analysis

Why Join Course Hero?

Course Hero has all the homework and study help you need to succeed! We’ve got course-specific notes, study guides, and practice tests along with expert tutors and customizable flashcards—available anywhere, anytime.

-

Educational Resources
  • -

    Study Documents

    Find the best study resources around, tagged to your specific courses. Share your own to gain free Course Hero access or to earn money with our Marketplace.

    Browse Documents
  • -

    Question & Answers

    Get one-on-one homework help from our expert tutors—available online 24/7. Ask your own questions or browse existing Q&A threads. Satisfaction guaranteed!

    Ask a Question
  • -

    Flashcards

    Browse existing sets or create your own using our digital flashcard system. A simple yet effective studying tool to help you earn the grade that you want!

    Browse Flashcards

Answers

(5)
Status NEW Posted 03 Dec 2017 10:12 AM My Price 10.00

-----------  ----------- H-----------ell-----------o S-----------ir/-----------Mad-----------am ----------- Th-----------ank----------- yo-----------u f-----------or -----------you-----------r i-----------nte-----------res-----------t a-----------nd -----------buy-----------ing----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n. -----------Ple-----------ase----------- pi-----------ng -----------me -----------on -----------cha-----------t I----------- am----------- on-----------lin-----------e o-----------r i-----------nbo-----------x m-----------e a----------- me-----------ssa-----------ge -----------I w-----------ill----------- be----------- qu-----------ick-----------ly

Not Rated(0)