Could you please check my answers to this layout user defined data types

Could You Please Check My Answers To This Layout User Defined Data Types

Answers

Answer 1

movieStars = ['Carrie Fisher', 'Harrison Ford'] is a list. Dictionaries have curly braces not brackets.

movieCost = 4.95 is a float

movieRatings = {5:'language', 3:'violence'} as I stated previously, dictionaries have curly braces and lists have brackets.

movieAwards = ('Oscar', 'Golden Globe', 'Director's Guild') is a tuple

movieID = 132 is an int. Integers are whole numbers with no quotation marks.

movie = 'Star Wars' is a string. Strings have quotes around them.


Related Questions

Functionality testing is primarily used with ____________. firewall protection software development hardening servers server testing

Answers

Answer:

software development

Explanation:

Functionality testing may be defined as the process of quality assurance. It is a type of a black box testing which bases its test cases to the specification of the software component.

Software testing is done to evaluate the compliance of the system. It is mainly used for software testing.

Some of the types of the software testing are :

-- smoke testing

-- component testing

-- system testing

-- unit testing

-- integration testing

Which is the OS that can be obtained for free or at a much lower price than other major operating systems?

a. Apple's OS X
b. Microsoft's Windows 8
c. Linux

Answers

Linux C
Reason: Linux is a free, open source operating system, released under the GNU General Public License (GPL). Anyone can run, study, modify, and redistribute the source code, or even sell copies of their modified code, as long as they do so under the same license.
Pretty sure it’s B hope dis helps

What is the output of the following code
X = 06
y = 0
print (x ** y)

Answers

Answer:

x=6 and y=0

Explanation

What is the purpose of an End User License Agreement?
to ensure that software users understand their rights and responsibilities
to ensure that software users understand how to use and install the program
to require users to erase installer files after a software migration project
to license users to make multiple changes to proprietary software

Answers

Answer: A. To ensure that software users understand their right and responsibilities

Explanation:

End-User License Agreements are vital for preserving the rights of the company owner/licensor. The correct option is A.

What is an End-User License Agreement?

End-User License Agreements are vital for preserving the rights of the company owner/licensor as well as outlining the terms of usage and controlling the end expectations of the user.

The purpose of the end-user license agreement is to ensure that software users understand their rights and responsibilities.

Hence, the correct option is A.

Learn more about the End-User License Agreement:

https://brainly.com/question/14681311

#SPJ2

Determines the steps in the process, the material, and the tools to make

high quality products.

Answers

Explanation:

In order to make high quality products and tools:

1. We should select the proper raw material that we want to make product with.

2. Every metal or every material have certain properties or characteristics. So choose the material properly for the product so that the right amount of hardness or stiffness or any other characteristics necessary for the product is maintained.

3. The process selection should also be carefully chosen.

4. The product should be such that it is made out of limited resources but can give maximum output.

5. Post production process should be done properly such as annealing,  tempering, etc to maintain its properties.

Instructions

Drag and drop to arrange the port types in

order of their speed capability from lowest

to highest

[See keyboard instructions here.

Answers

Answer:

The answer is below

Explanation:

Given that there are no specific options here. Here are some of the most common port types in order of their speed capability from lowest to highest.

In Bytes and Bits per second, that is:

1. USB 1.1 = 1.5 MB/s - 12Mbit/s

2. Firefire 400 = 50 MB/s - 400Mbit/s

3. USB 2.0 = 60 MB/s - 480Mbit/s

4. FireWire 800 = 100 MB/s - 800Mbit/s

5. USB 3.0 = 625 MB/s - 5Gbit/s

6. eSATA = 750 MB/s - 6Gbit/s

7. USB 3.1 = 1.21 GB/s. - 10Gbit/s

8. Thunderbolt = 1.25 GB/s * 2 (2 channels) - 10Gbit/s * 2 (2 channels)

9. Thunderbolt 2 = 2.5 GB/s - 20Gbit/s

10. Thunderbolt 3 = 5 GB/s - 40Gbit/s

Google Slides is most similar to which of the following programs?
a
Adobe Photoshop
b
Microsoft Word
с
Microsoft PowerPoint
d
Microsoft Project

Answers

Answer:

Option C: Microsoft PowerPoint is the correct answer

Explanation:

Google slides is a tool to make presentations using different options like adding pictures, animations and videos. Microsoft office suite also provide a software for this purpose which is Microsoft power point.

Hence,

Option C: Microsoft PowerPoint is the correct answer

Answer:

the answer is c microsoft powerepoint

Explanation:

it just is

g P4. (5pts) IPv4 tunneling was introduced to solve this issue of forwarding IPv6 packets via IPv4 routers. Please explain how this mechanism works.

Answers

Answer:

In IPv4 tunneling, IPv6 packets are encapsulated in the IPv4 packets, adding a header comparing the source IP, the packet entry point to the tunnel and the destination point, as well as the exit point of the tunnel.

Explanation:

IPv6 is the latest version of the network address. They eliminate the exhaustion of addresses experienced in IPv4, but is it not used in all networks which makes it hard to communicate with other networks with IPv4 and with IPv6 addresses through IPv4 medium.

To avoid the needed to reconfigure other IPv4 networks to IPv6 and establish communication between the networks, IPv4 tunneling is used to transmit IPv6 packets from one IPv6 network to other IPv6 networks through the IPv4 transmission cables or mediums.

Cloud vendors that are hosting hardware, operating system, database, and other software, which clients can then use to build their own applications, are said to be providing: _______

a. Software as a Service.
b. Hardware as a Service.
c. Platform as a Service.
d. Service Oriented Architecture.
e. Service Level Agreement.

Answers

Answer:

a. Software as a Service.

Explanation:

These Cloud vendors are said to be providing Software as a Service. This is because regardless of that the underlying specs are in regards to hardware, operating systems, database, etc. The vendor is selling a subscription to their cloud software which bundles all of these services together. Therefore, what they are ultimately providing is a Software that the individual can use as a service, and enjoy all of the included benefits/capabilities.

Salvado has a flash dish of is GB
and wants to store of music files
950 kbs each. How many files
will he be able to share on his
flash disk
of​

Answers

Answer:

About 1,655 files or exactly 1655.646315789473684210526315785

1578

Source(s):

1.5 gb = 1,500 mb<---wrong right --->1536

Explanation:

(Python)Write an expression using Boolean operators that prints "Eligible" if user_age is greater than 17 and not equal to 25.


Sample output with input: 17

Ineligible

Answers

user_age = input("Input Age: ")

if int(user_age) <= 17:

   print("Ineligible")

elif int(user_age) == 25:

   print("Ineligible")

else:

   print("Eligible")

:Here is some basic code.  It takes an input, turns it into an int type value, and checks the parameters that you gave me.  It errors out when you put in anything but a number.

Answer:

user_age = int(input())

if (user_age > 17) and (user_age != 25):

   print('Eligible')

else:

   print('Ineligible')

Explanation:

the code is very easy to do because it asks for it in Boolean operators.  So user_age = int(input()) ## asks for user input

then it checks the status by seeing if the number is greater than 17 and not equal to 25.  we know that > is greater and we know that != means not equal.  Therefore, this will rule out both and then give the eligible or ineligible statement.

Describe the main roles of the communication layer, the network-wide state-management layer, and the network-control application layer in an SDN controller.

Answers

Answer:

1.

Role of communication layer:

-it has the responsibility of transferring information among network controlled devices.

-it provides up to date view of the state of the network to SDN controller which shows that a new device has being added to the network as well as the link that was attached being non-existent.

2.

Role of network wide state management layer:

-it is responsible for the controller having the network's state information

-it also helps in the making of ultimate control decisions.

c

role of network control application layer:

- It is responsible for the reading and also the writing of the state of the network as well as flow tables which are in the layer of state management.

- It also notifies of changes such as state-event change. this helps to take actions with regards to the event notification.

Cora is writing a program to make a motorcycle racing game. If Cora wants the speed of the motorcycle to appear on the screen when the game is played, then Cora needs to add something to the code that will make the speed a(n) _____.
A. input
B. output
C. Boolean value
D. conditional statement

Answers

The answer would be C

Cora needs to add something to the code that will make the speed a(n) and that is the C. Boolean value.

What is a Boolean value?

In pc programming, Boolean values are used to create situations and manipulate how this system behaves whilst sure matters happen (e.g.: if a circumstance is true, then do something). They may have handiest feasible values: both zero or 1. You can not upload or subtract them.

The Boolean value will add up the value to the code that will make the speed.

Read more about the code :

https://brainly.com/question/3653791

#SPJ2

10. In cell R8, enter a formula using the AVERAGEIF function to determine the average number of post-secondary years for students who have been elected.

Answers

Answer:

On cell R8, type in the formula  "=AVERAGEIF(M2:M31,"Elected",D2:D31)".

Explanation:

Microsoft Excel is a spreadsheet application developed by Microsoft as a part of the office package, used for statistical analysis of data. It has several tools used for this purpose.

The AVERAGEIF function is used to give the average of numeric column based on a condition. The formula above uses the word 'Elected' in the M column to calculate the average of numbers in the D column.

The formula to enter in cell R8 is =AVERAGEIF(M2:M31,"Elected",D2:D31)

The AVERAGEIF function is used to calculate the average of a range of numbers if a certain condition is true.

From the complete question,

The range is M2 to M31

The condition is to check is the students in range D2 to D31 have been elected

The syntax of the AVERAGEIF function

=AVERAGEIF(range,criteria,average_range)

So, the formula to enter in cell R8 is =AVERAGEIF(M2:M31,"Elected",D2:D31)

Read about Excel formulas at:

https://brainly.com/question/14299634

Create a formula for sheet Inventory that highlights any rows where the Reorder level is below the On Hand level in yellow on excel 2016. Will mark brainliest if you can tell me how.

Answers

Answer:

Highlight the actual inventory level column and click on condition formatting, click on the drop-down button and select "Formula is" to input the formula "=B4 <= C4", select the color pattern to format the row if the condition is met and click ok.

Explanation:

Assuming the reorder level (column C4 and the on-hand level or actual inventory (column B starting at row 4) are columns in the Excel worksheet. The reorder level is the minimum level of inventory before inventory is populated. So the formula compares the value of the actual level with the reorder level, if any row is less than or equal to the reorder level, the row is formatted with the selected color.

Answer:

Highlight the actual inventory level column and click on condition formatting, click on the drop-down button and select "Formula is" to input the formula "=B4 <= C4", select the color pattern to format the row if the condition is met and click ok.

Explanation:

Who is responsible for developing the physical background for the characters by creating buildings, landscapes, and interiors?

A. costume designer
B. art director
C. director
D. cinematographer

Answers

Answer:

B. Art Director

Explanation:

Plato

According to a survey of hikers on a trail, 50% of the hikers like Gatorade (G) and 40% like energy bars (E). 20% like both. Assume random selection:____________ a. Find the probability that a hiker likes Gatorade or energy bars b. If a hiker likes Gatorade, find the probability that he likes energy bars c. If a hiker likes energy bars, find the probability that he likes Gatorade.

Answers

Answer:

Explanation:

As per given data

Probability hikers like Gatorade (G) = P(G) = 50% = 0.5

Probability hikers like energy bars = P(E) = 40% = 0.4

Probability hikers like both = P(G and E) = 20% = 0.2

a)

To find the probability that a hiker likes Gatorade or energy bars use the following formula

P(G or E) = P(G) + P(E) - P(G and E )

P(G or E) = 0.5 + 0.4 - 0.2

P(G or E) = 0.7

b)

To find the probability that a hiker likes Gatorade or energy bars use the following formula

P(E|G) = P(E and G)/P(G)

P(E|G) = 0.2/0.5

P(E|G) = 0.4

c)

The probability that he likes Gatorade.

P(G|E) = P(G and E) / P(E)

P(G|E) = 0.2 / 0.4

P(G|E) = 0.5

During which part of the international

Answers

????

can you elaborate? I want to help you

How do people make video games

Answers

Answer:

requieres a lot of hardcore coding

Explanation:

5.19 LAB: Exact change - functions
Write a program with total change amount as an integer input that outputs the change using the fewest coins, one coin type per line. The coin types are dollars, quarters, dimes, nickels, and pennies. Use singular and plural coin names as appropriate, like 1 penny vs. 2 pennies.

Ex: If the input is:

0
or less, the output is:

no change
Ex: If the input is:

45
the output is:

1 quarter
2 dimes
Your program must define and call the following function. The function exact_change() should return num_dollars, num_quarters, num_dimes, num_nickels, and num_pennies.
def exact_change(user_total)

Answers

Answer:

def exact_change(user_total):

    if user_total <=0:

         print("No change")

    else:

         num_dollars = int(user_total/100)

         user_total = user_total % 100

         num_quarters= int(user_total/25)

         user_total = user_total % 25

         num_dimes= int(user_total/10)

         user_total = user_total % 10

         num_nickels= int(user_total/5)

         num_pennies= user_total % 5

         if num_dollars >= 1:

              if num_dollars == 1:

                   print(str(num_dollars)+" num_dollars")

              else:

                   print(str(num_dollars)+" amountdollars")

         if num_quarters>= 1:

              if num_quarters== 1:

                   print(str(num_quarters)+" quarter")

              else:

                   print(str(num_quarters)+" quarters")

         if num_dimes>= 1:

              if num_dimes== 1:

                   print(str(num_dimes)+" dime")

              else:

                   print(str(num_dimes)+" dimes")

         if num_nickels>= 1:

              if num_nickels== 1:

                   print(str(num_nickels)+" nickel")

              else:

                   print(str(num_nickels)+" nickels")

         if num_pennies>= 1:

              if num_pennies== 1:

                   print(str(num_pennies)+" penny")

              else:

                   print(str(num_pennies)+" pennies")

           

user_total = int(input("Enter user_total Here:  "))

exact_change(user_total)

Explanation:

The explanation is long. So, I added it as an attachment.

Answer:

Written in Python:

def exact_change(user_total):

   num_dollars = user_total // 100 #convert to dollars

   user_total %= 100 #get remainder after conversion

   num_quarters = user_total // 25 #convert to quarters

   user_total %= 25 #get remainder after conversion

   num_dimes = user_total // 10 #convert to dimes

   user_total %= 10 #get remainder after conversion

   num_nickels = user_total // 5 #convert to nickels

   user_total %= 5 #get remainder after conversion

   num_pennies = user_total

   return(num_dollars, num_quarters, num_dimes, num_nickels, num_pennies)

if __name__ == '__main__':

   input_val = int(input()) #prompt user to input an integer

   num_dollars, num_quarters, num_dimes, num_nickels, num_pennies = exact_change(input_val) #recall exact_change function

   

   #define output statements to output number of exact_change variables:  

   #num_dollars, num_quarters, num_dimes, num_nickels, num_pennies  

   if input_val <=0: #if amount is zero

       print('no change') #print output

       

   else:

       if num_dollars > 1: #if number of dollars is greater than one

           print('%d dollars' % num_dollars) #print number of dollars

       elif num_dollars == 1: # if number of dollars equal 1

           print('%d dollar' % num_dollars) #print dollar in singular

       

       if num_quarters > 1: #if number of quarters is greater than one

           print('%d quarters' % num_quarters) #print number of quarters

       elif num_quarters ==1: # if number of quarters equal 1

           print('%d quarter' % num_quarters) #print quarter in singular

       

       if num_dimes > 1: #if number of dimes is greater than one

           print('%d dimes' % num_dimes) #print number of dimes

       elif num_dimes == 1: # if number of dimes equal 1

           print('%d dime' % num_dimes) #print dime in singular

           

       if num_nickels > 1: #if number of nickels is greater than one

           print('%d nickels' % num_nickels) #print number of nickels

       elif num_nickels == 1: # if number of nickels equal 1

           print('%d nickel' % num_nickels) #print nickel in singular

       

       if num_pennies >1: #if number pennies is greater than one

           print('%d pennies' % num_pennies) #print number of pennies

       elif num_pennies ==1: # if number of pennies equal 1

           print('%d penny' % num_pennies) #print penny in singular

Explanation:

It's really long, but it's necessary to get all the correct answers.

Please Helpppp Me User Interface Design ensures that the interface has elements that are easy to ________________. (Choose all that apply)


Question 1 options:


a) access



b) understand



c) change location



d) remove



e) use to facilitate actions

Answers

Answer:

understand is the answer

Network Access Protection (NAP) analyses the ________ of a computer.

Answers

Answer:

virus in a virus

Explanation:

what are the elements in a publication called​

Answers

Answer:

There are several important elements in a magazine layout, such as headline, image, image caption, running head, byline, subhead, body copy, etc. Here, we look into the ten most crucial elements of a magazine layout.

Answer:

MARK AS BRAINLIEST ANSWERS

PLZ FOLLOW ME

Explanation:

There are several important elements in a magazine layout, such as headline, image, image caption, running head, byline, subhead, body copy, etc.

HOPE IT HELPS YOU

Which 4 methods allow clients to process digital payments from customers using QuickBooks Online Payments

Answers

Answer:

Debit and credit cards

eChecks using ACH Processing

Mobile apps and digital wallets

Pay-enabled invoices

Explanation:

Answer:running card through card reader, entering payment manually as a sales receipt, sending sales receipt to a customer via email, taking client payment via the Pay Now button in an email.

Explanation:

A. Write a Python program to match key values in two dictionaries. Input: {'key1': 1, 'key2': 3, 'key3': 2}, {'key1': 1, 'key2': 2} Output: key1: 1 is present in both x and yB. Write a Python program to sort Counter by value. Input: {'Math': 81, Physics':83, 'Chemistry':87) Output: [('Chemistry', 87), ('Physics', 83), ('Math', 81)

Answers

Answer:

Please find the attachment of the code file and its output:

Explanation:

In the first code, two variable "a, b" is defined that holds dictionary value which is defined in the question, in the next step a for loop is declared that hold dictionary key and value and use a method set to check the value is available in the dictionary and use print method to print its value.

In the second code, a package counter is an import as the c for count value, in the next step a variable a is declared, that uses a counter method to hold a dictionary value in its parameter, and in the print method, it uses sort method to print its value.

can a 3048 hp motherboard support a i7 10700k cpu?

Answers

Answer:

Yes

Explanation:

Answer:

yes it can

Explanation:

no need to explain

Is the willingness to put a customer’s needs above ones own needs and to go beyond a job description to achieve customer satisfaction

Answers

Answer:

customer-serious orientation

Explanation:

Customer-serious orientation can be defined as the willingness to put a customer’s needs above ones own needs and to go beyond a job description to achieve customer satisfaction.

This ultimately implies that, a customer-serious oriented business firm or company puts the needs, wants and requirements of its customers first without considering their own needs in a bid to satisfy and retain them.

Hence, customer-serious orientation requires the employees working in an organization to show and demonstrate positive attitudes and behaviors at all times.

how do i change my desktop theme on my chromebook?

Answers

Answer:

open Chrome.

At the top right, click More. Settings.

Under "Appearance," click Themes. You can also go to the gallery by visiting Chrome Web Store Themes.

Click the thumbnails to preview different themes.

When you find a theme you'd like to use, click Add to Chrome.

Explanation:

Best practices for designing an interface include being purposeful in page layout, think about defaults and making the interface complex.

Question 5 options:
True
False

Answers

True because they don’t have to like a lot more than you think you have to like that lol

Please help! I need to submit this quick!

Answers

Answer:

B, C, A

Explanation:

i think those are right

Other Questions
List and describe one example of a food chain that contains at least 4 organisms and 4 feeding relationships. HELPP PLEASEEE in a small group of ducks, there are 6 males and 2 females, which ratio of males to females is an equivalent ratio In which of the following locations did a battle of the Spanish American War take place?MexicoThe United StatesCubaSpain PLZ HELP GIVING BRAINLEST TO WHOEVER HELPS ME AND GETS THE RIGHT ANSWERWhat kind of energy is light considered to be?1. Radiant 2. Sound3. Potential 4. Chemical A $1,000 par bond with a semi-annual coupon and 12 years to maturity is currently priced $880 and has a yield to maturity of 5.37%. What is the bonds coupon rate 1190LwWhy does the PRO author introduce hisargument with the IPCC's report?to shock his readersB.to appear authoritativeto frighten his readersDto directly address his opponent Complete the following questions with the correct form of estar and the subject. Then,answer each question in complete sentences.1. ______________nervioso(a) cuando tienes un examen? (estar / t) _______________________2. _______________contentos cuando sacan buenas notas? _________________________(estar / los estudiantes)3. _________________cerca de la biblioteca? (estar/los baos)_____________________ What kinds of words help you combine sentences by connecting them?prepositions like "of" and "from"pronouns like "he" and "she"articles like "the" and "an"conjunctions like "and" and "while" what would you do with a TV if you are from the past and dont know to do with it Which statement describes the rule of Cyrus the Great? O Cyrus the Great was a brutal dictator who inspired fear. O Cyrus the Great believed he was a god, like an Egyptian pharaoh. O Cyrus the Great was a talented politician but not an effective soldier O Cyrus the Great was a strong military leader but, he left conquered land intact A pat-down or minimal search by police to discover weapons with the purpose of protecting the officer or other citizens, and not to find evidence of illegal substances for use in trial, is referred to as Choose the statement that describes a way to solve the equation x 23 = 18.1. Subtract 23 from both sides of the equation.2. Subtract 18 from both sides of the equation.3. Divide both sides of the equation by 23.4. Add 23 to both sides of the equation. Will give brainliest if you sort these from first to last how do you solve f(x)= -(2x-3) (2x-4) John has 30 friends. Then amount of male friends is 4 more than the number of female friends. Which system can be used to find the number of male and female friends? HELP MATH SUCKSSSSSSSSSSSS PLEASE HELP WILL GIVE BRAINLIEST Relationship between public and private sector in mixed economy? The thrift store is selling their old DVDs. When the DVDs first came out, they sold for $19. They have now been marked down by 75%.A stack of D V D's is shown. They are marked seventy-five percent off.What is the discounted price of a DVD?Enter the correct answer in the box. what is the deepest floor of the acean