Match the example with the type of collection.
___('casa': 'house')
___[3,5]
___(3, 5, 'dog')
A) list
B)tuple
C)dictionary

Answers

Answer 1

Answer:

1.c

2.list

3.tuple

Explanation:

Answer 2

Dictionary—('casa': 'house'), List - [3,5], Tuple - (3, 5, 'dog') are the example with the type of collection. Hence,

What is collection?

A collection is a group of things, usually one that someone has assembled. For instance, many kids have a collection of comic books. The term "collection" contains the word "collect." If you enjoy collecting things, there's a good chance you already have a collection of some kind.

4 The Concept of "Collection" A collection is a gathering of things that have been picked out with a specific goal in mind. Similar ideas include Set, Aggregation (data modeling), Dataset (science and business), and Corpus (linguistics and literary analysis). We favor collecting since it is less defined and has fewer connotations.

Old French collection, a noun of action from the past-participle stem of colligere ('gather together'), is derived from Latin collectionem (nominative collectio), which means 'a gathering together'.

Thus, words are arranged above,

For more information about collection, click here:

https://brainly.com/question/19053793

#SPJ5


Related Questions

list pros and cons of HCI technology​

Answers

A pro of HCI technology is that its user friendly and a con about it is that you have to teach the user what to do or guide them!

Answer:

Advantages:

• very flexible with the use of "switches"

• Good for "expert" users - can quickly access commands

• uses the fewest system resources

Disadvantages:

• requires the user to learn "complex" commands or languages

• "Hidden" features i.e. if you don't know the commands you won't know the features are there!

• not very good for novice users Command Line Interface Applications

• system administration

• engineering applications

• scientific applications

Explanation:

not much need of explanation

what is the difference between application software and system software​

Answers

Answer:

system software

1. system software is used for operating computer hardware.

2.system software is installed on the computer when the operating system is installed.

application software

1.it is used for performing specific task.

2.it is installed according to the user's requirements.

Which of the following represents the relationship between malware and cyber terrorism? (Select all that apply).

Both are used to disrupt network service.

Both involve the use of illegal software.

Cyber terrorists can use malware as a weapon.

Network risk analysts work to prevent both.

Answers

Answer:

Both are used to disrupt network service

Cyber terrorists can use malware as a weapon

Both involve the use of illegal software

Network risk analysts work to prevent both

All are valid.

Answer:

Its all four

Explanation:

edg2021

Id k why the other person got b ad rati ngs, because it is true and they both do all of these things.

Which type of hardware on a VM can be easily removed?

Fast
Physical
Real
Virtual

Answers

Virtual

Explanation: Because it is easy to remove from a VM because it is like a viries.

It is very easy to remove a virtual hardware on a Virtual Machine, as there is no use of physical attachments.

What is a hardware?

A hardware is such component of a computer network that is used as equipment for smooth functioning of the system. For example, keyboard and mouse are hardwares.

A virtual hardware, on the other hand, is created on a cloud computing software, and is easily removable or detachable, as it does not require any actual physical hardware.

Hence, option D holds true regarding a hardware.

Learn more about hardware here:

https://brainly.com/question/15232088

#SPJ2

Given the following word addresses: 3, 180, 43, 2,191, 88, 190, 14, 181, 44, 186, 253

a. Show the final cache contents for a three-way set associative cache with two-word blocks and a total size of 24 words. Use LRU replacement. For each reference identify the index bits, the tag bits, the block offset bits, and if it is a hit or a miss.
b. Show the final cache contents for a fully associative cache with one-word blocks and a total size of 8 words. Use LRU replacement. For each reference identify the index bits, the tag bits, and if it is a hit or a miss.
c. What is the miss rate for a fully associative cache with two-word blocks and a total size of 8 words, using LRU replacement? What is the miss rate using MRU (most recently used) replacement? Finally what is the best possible miss rate for this cache, given any replacement policy?

Answers

Answer:

A. index bits = 2, tag bits = 2, block offset bits = 1, it is a miss.

B. index bits = 2, tag bits = 1, block offset bits = 0, it is a hit

C. the miss rate is 0

Explanation:

a. number of blocks = 12

number of blocks per set = 3

number of set = number of blocks / number of blocks per set = 12/3 = 4

word size = 24

block size = 2

the block offset = [tex]log_{2}[/tex] block size

   = [tex]log_{2}[/tex] 2 = 1

the index bits = [tex]log_{2}[/tex] number of set = [tex]log_{2}[/tex] 4 = 2

the tag bits = ([tex]log_{2}[/tex] word size) - offset - index = ([tex]log_{2}[/tex] 24) -2 - 1 = 5 -2 - 1 = 2

b. word size = 8

block size = 1

the block offset = [tex]log_{2}[/tex] block size

   = [tex]log_{2}[/tex] 1 = 0

the index bits = [tex]log_{2}[/tex] number of set = [tex]log_{2}[/tex] 4 = 2

the tag bits = ([tex]log_{2}[/tex] word size) - offset - index = ([tex]log_{2}[/tex] 8) -2 - 1 = 3 - 0- 2= 1

Which statement will read an entire line of input into the following string object?

Select one:
a. cin << address;
b. cin address;
c. getline(cin, address);
d. cin.get(address);
e. None of these

Answers

Answer:

getline(cin, address);

Explanation:

Given

String object: address

Required

Statement that reads the entire line

The list of given options shows that the programming language is c++.

Analysing each option (a) to (e):

a. cin<<address;

The above instruction will read the string object until the first blank space.

Take for instance:

The user supplied "Lagos state" as input, only "Lagos" will be saved in address using this option.

b. cin address:

This is an incorrect syntax

c. getline(cin,address);

Using the same instance as (a) above, this reads the complete line and "Lagos state" will be saved in variable address

d. cin.get(address);

address is created as a string object and the above instruction will only work for character pointers (i.e. char*)

From the above analysis, option (c) is correct.

Your colleague has made a suggested change to an important document you are both working
You disagree with their suggested change. They will be reviewing the changes you make before
the final version of the document is submitted to your boss. You both work remotely and are in
radically different time zones. What is the best step to take next?

Answers

Answer:

come to an agreement with your partner on how you can modify or change the suggested change

Explanation:

The best step to take is to set up a virtual meeting between both of you, find out why the reason for the disagreement, and then settle the issues.

What is the virtual meeting about?

Based on the fact that both of you cannot physically meet since both are in different location, the right thing to do is to set up a computer virtual meeting.

Conclusively, the parties involved can trash out issues and misconceptions before submitting to your boss.

Learn more about document from

https://brainly.com/question/16650739

#SPJ2

The challenge of preparing for ____________________ is in ensuring that employees do not feel that they are being prepared for termination.

Answers

Answer:

"Cross-training " seems to be the right response.

Explanation:

Cross-training seems to be the method of constructing a multi-professional workers staff with incentive plans to make sure that they must have the same tools to complete different occupational tasks throughout the organization. This will be a very broad approach besides randomized controlled training methods, both maximum and minimum frequency, for generations.

Relationship between sped and time on statistics

Answers

The speed of a moving body is the distance travelled by it in unit time. If the distance is in km and time is in hours, then the speed is km/hr. If the distance is in m and the time is in seconds, then the speed is m/sec.

If you wanted to divide an integer variable by 2, which of the following lines of code would you use? total = int + 2 total = int * N total int / 2 total = int. 2

Answers

Answer:

Yes

Explanation:

Because all answers are intotal (2)

short description about your penfriend​

Answers

Answer:

USEFUL WORDS:

Starting the first Letter. Hi! ...

Starting the second Letter. Hi! ...

Starting the second letter with an apology. I am sorry I did not reply earlier. ...

Saying Goodbye. Bye for now and write back soon! ...

Do not write everything in the first letter. The following are some ideas:

Introduce Yourself. ...

Introduce your family.

Explanation:

A suggestion for improving the user experience for the app navigation, has the following severity:

create a pl/SQL block to retieve and display information for a specific pledge. Display the pledge ID, donor ID, Pledge Amount, total paid so far and the difference between the pledge amount and total paid amount

Answers

Answer:

SELECT pledge_ID,

             donor_ID,

              pledge_amount,

              total_paid,

              pledge_amount - total paid

   FROM pledges;

Explanation:

The SELECT statement initiates the display command. It states the variables to be selected.

The variables are usually separated by a comma.

The FROM statement indicates the location from which the variables ne selected from.

; signifies the end of the query, stating that the query should be run.

Examine the following function header, then write a statement that calls the function, passing 12 as an argument. def show_value(quantity):

Answers

Based on the name of the function, it seems that we're supposed to only print the value of quantity to the console.

def show_value(quantity):

   print(quantity)

show_value(12)

The first line of code creates the function, the second line of code prints the value of quantity to the console, and the last line of code calls our show_value function with 12 as our argument. I wrote my code in python 3.8. I hope this helps.

The top and bottom margins of each page are called the header and footer, respectively. The program is as follows:

def show_value(quantity):

print(quantity)

show_value(12)

What is meant by function header?

The function's name is included in the header, which also provides information about the parameters and the type of data the function will return to the caller function or application. The instructions that must be followed are contained in the function's body.

The top and bottom margins of each page are called the header and footer, respectively. Headers and footers are useful for information that you want to appear on every page of a document, such as your name, the document's title, or page numbers.

It appears that we should only print the quantity's value to the console based on the function's name.

def show_value(quantity):

print(quantity)

show_value(12)

To learn more about function header refer to:

https://brainly.com/question/20358520

#SPJ2

100 POINTS!!!!!!
How does forecast information get to other government and business entities and to the public?

Answers

Answer:

Forecasting is valuable to businesses because it gives the ability to make informed business decisions and develop data-driven strategies. ... Past data is aggregated and analyzed to find patterns, used to predict future trends and changes. Forecasting allows your company to be proactive instead of reactive.

Answer:

Explanation:

There are many forecast information provided by government agencies. Since the question mentions business entities, it is likely related to economic forecast; like the quarterly report from the Federal Reserve Bank. That is usually how forecast info is shared: through released reports, public announcements, and printed sources like the Federal Register papers.

Describe the steps involved in data mining or data analytics when viewed as a process of knowledge discovery.

Answers

Answer:

1. Data Cleaning

2. Data Integration

3. Data Selection

4. Data transformation

5. Data Mining

6. Pattern Evaluation

7. Knowledge presentation

Explanation:

The steps involved in data mining or data analytics when viewed as a process of knowledge discovery includes the following:

Step 1. Data cleaning: this involves the elimination of inconsistent data.

Step 2. Data integration: this involves the combination of data from multiple sources.

Step 3. Data selection: this is the step where significant data for task examination are gathered from the database.

Step 4. Data transformation: this the step in which the data are modified for mining by conducting the aggregate operation.

Step 5. Data mining: this step involves the extraction of data patterns through specific techniques.

Step 6. Pattern evaluation: this step involves the identification of patterns that depict knowledge based on measures.

Step 7. Knowledge presentation: this is the step in which visualization and knowledge representation methods are utilized to illustrate mined knowledge to users.

When using a software budget, you should feel very confident if you choose a solution that looks like it will come in exactly on budget, without any overage costs.

a
True

b
False

Answers

Answer:

probably false

Explanation:

because u dont want a budget to b exact u want it completely covered

Ben wants to create a Book class that has an instance variable serialNumber. Where should he declare the instance variable

Answers

Answer:

within the Book class but needs to also be outside of any methods.

Explanation:

If Ben is creating an entire Book class then the instance variable needs to be within the Book class but needs to also be outside of any methods. If Ben places the variable inside a method it can only be used by that method and therefore becomes an instance variable of that method and not the class. By creating it inside the class and outside the methods it can be used every single time a Book object is created. Therefore, creating an instance variable of serialNumber every time.

Confidential corporate data was recently stolen by an attacker who exploited data transport protections.Which of the following vulnerabilities is the MOST likely cause of this data breach?

a. resource exhaustion on the vpn concentrators
b. weak ssl cipher strength
c. improper input handling on the ftp site
d. race condition on the packet inspection firewall

Answers

Answer:

c. improper input handling on the FTP site

Explanation:

Improper input handling on the FTP site is associated with encrypting and/or decrypting of input data. It has been observed that input handling on the FTP site is one of the leading causes of vulnerabilities found in contemporary's systems and applications, this is a result of application trusting which helps to establish restrictions and prevent Improper Input Handling attacks accurately.

Hence, in this case, the correct answer is "improper input handling on the FTP site"

Azra wants to learn to program and knows it is important to be able to type well. Which of the following will contribute to the achievement of this goal? A. words per mile B. keys per line C. words per minute D. keys per function

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

In this question, a scenario is given about typing speed. The typing speed of someone can be easily monitored or guessed by how many words someone can write per minute.

So, in this context, Azra's goal to achieve fast and very well typing while doing programming.

so, she needs to learn and increase typing speed and this is measured in words per minute. That is about how many words she can type in a minute with accuracy.

So, the correct answer to this question is words per minute.

While the other options are not correct because:

words per mile, key per mile, and key per function don't determine its typing speed. and also note that the given options are also not logically suitable such as words per mile etc.

[] Hello ! []

Answer:

Words Per Minute (WPM)

Explanation:

The other ones are not a thing.

-----------------------------------------------

I hope this helpedPlease tell me if it is wrong

Thank you and have a wonderful and blessed day!

-- Juri Davis

Assume you are given a boolean variable named isNegative and a 2-dimensional array of ints that has been created and assigned to a2d. Write some statements that assign true to isNegative if more integer elements in entire 2-dimensional array are negative than not.

Answers

Answer:

#include <iostream>

using namespace std;

int main(){

   int rows, cols;

   bool isNegatives;

   cout<<"Rows: ";

   cin>>rows;

   cout<<"Columns: ";

   cin>>cols;

   int a2d[rows][cols];

   for(int i =0;i<rows;i++){

   for(int j =0;j<cols;j++){

       cin>>a2d[i][j];}    }

   int negatives, others = 0;

   for(int i =0;i<rows;i++){

   for(int j =0;j<cols;j++){

       if(a2d[i][j]<0){

           negatives++;}

       else{

           others++;}}    }

   if(negatives>others){

       isNegatives = true;}

   else{

       isNegatives = false;}

   cout<<isNegatives;  

   return 0;

}

Explanation:

For clarity and better understanding of the question, I answered the question from the scratch.

This line declares number of rows and columns

   int rows, cols;

This line declares the Boolean variable

   bool isNegatives;

This line prompts user for rows

   cout<<"Rows: ";

This line gets the number of rows

   cin>>rows;

This line prompts user for columns

   cout<<"Columns: ";

This line gets the number of columns

   cin>>cols;

This line declares the array

   int a2d[rows][cols];

This line gets user input for the array

   for(int i =0;i<rows;i++){

   for(int j =0;j<cols;j++){

       cin>>a2d[i][j];}    }

This line declares and initializes number of negative and others to 0

   int negatives, others = 0;

The following iteration counts the number of negatives and also count the number of non negative (i.e. others)

   for(int i =0;i<rows;i++){

   for(int j =0;j<cols;j++){

       if(a2d[i][j]<0){

           negatives++;}

       else{

           others++;}}    }

This checks of number of negatives is greater than others

   if(negatives>others){

If yes, it assigns true to isNegatives

       isNegatives = true;}

   else{

If otherwise, it assigns false to isNegatives

       isNegatives = false;}

This prints the value of isNegatives

   cout<<isNegatives;  

See attachment

Which of these is NOT an example of a GUI?

a
virus protections software

b
microphone

c
icons

d
USB cord

Answers

Answer:

The answer to this question is given below in the explanation section.  

Explanation:

First, we need to know what is the graphic user interface (GUI)?

A GUI is a form of user interface that allows the users to interact with electronic devices through graphical icons and audio indicator such as primary notation, instead of a text-based user interface as in MS-DOS. Users interact through such devices using their icon, navigation using the mouse cursor, etc , and touching. In short, an interface that has graphical options.

so, in the context of the question, the following are examples of GUI.

Virus protection software: Because virus protection software has a graphical interface and user can use it easily by using its graphics and exploration functionality.

Icon: icon is an example of GUI because ICON built on other many graphics parts. In short, the icon is part of the GUI.

The followings are not the example of GUI:

Microphone and USB cord because these are the electronic parts and they don't possess the GUI.

What is the value of grade after the segment of code executes int result = 95?
if (result >= 90) grade = "A";
if (result >= 80) grade = "B";
if (result >= 70) grade = "C";
if (result >= 60) grade = "D";
else grade = "E";
Asnwer Choices
1.A
2.B
3.C
4.D
5.E

Answers

Answer:

the answer is A

because 80 to 90 is B

so 90 to 100 is A

Check ALL that apply. Which statement is TRUE about Test Driven Development (TDD)? a) in TDD, when a program failure is observed it is a direct result of the last code written b) In TDD, there are no untested code sections in the delivered code c) In TDD, if all the tests pass, there is no need to refactor the code. d) In TDD, only the new tests are supposed to pass after implementing the new feature. e) In TDD, your tests should cover all the code that has been developed

Answers

The statements TRUE about Test Driven Development (TDD) are

In TDD, there are no untested code sections in the delivered code.In TDD, your tests should cover all the code that has been developed.

The correct options are (b) and (e).

What is Test Driven Development?

The test- driven development is used in the programming language for the designing many type of test cases in the computer system. The main goal of the test driven development is that it uses to make the system bug free and simple.

It is basically used in the organization to avoid duplication in the code and make the function more efficient.

The basic approach of the test driven development is that the test are develop so that it specify the function for the code to perform.

In TDD, there are no untested code sections in the delivered code.In TDD, your tests should cover all the code that has been developed.

Thus, the statements (b) and (e) are TRUE.

Learn more about Test Driven Development.

https://brainly.com/question/13156414

#SPJ2

How do most business applications and websites process credit card transactions?

a
They develop in-house credit card apps/services.

b
They license third-party credit card apps/services.

c
They run them through banks owned by the business.

d
They refuse to accept credit cards.

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

Most business applications and websites use and process the credit card for their transaction.

For example, e-commerce website such as ali baba, am a zon, accepting credit card transaction when the customer gets to purchase any product from their stores. Their transactions are processed by in house credit card apps/service. But these apps/services owned by a third party. They just give you API services and related code to integrate the credit card services.  

By using their in-house credit card apps/services, they know that user has transferred the money into their account for the purchased product, upon receiving payment confirmation, they then prepare and dispatch the order.

So, the correct answer to this question is:

To process the credit card transactions, they license third-party credit card apps/services backed by the internet merchant who is responsible for handling and managing the money of the business account.    

Write a program that inputs numbers and keeps a running sum. When the sum is greater than 100, output the sum as well as the count of how many numbers were entered.

Sample Run Enter a number: 1 Enter a number: 41 Enter a number: 36 Enter a number: 25 Sum: 103 Numbers Entered: 4

Answers

total = 0

count = 0

while total<=100:

   total += int(input("Enter a number: "))

   count += 1

print("Sum:",total)

print("Numbers Entered:",count)

I wrote my code in python 3.8. I hope this helps

Answer:

total = 0

count = 0

while total<=100:

  total += int(input("Enter a number: "))

  count += 1

print("Sum:",total)

print("Numbers Entered:",count)

Explanation:

What skills, knowledge, and strengths do you feel you bring to the FlexPath program?

Answers

Answer:

The answer is below

Explanation:

Skills: Problem-solving skills, Great attention to details skills

Knowledge: Computer Literacy, Mathematical and Statistical skills

Strength: highly disciplined and well determined.

Hence, I understand that I possess all the aforelisted skills, knowledge, and strength, that would assist me during the Flexpath program.

This will make me excel and complete the required courses with good grades.

Imagine that we have a list of names called nameList. There are various algorithms we could run on it. Here's one such algorithm, which compares each name in the list to every other name:

Answers

Answer:

The algorithm has a quadratic time complexity of O(n^2)

Explanation:

The algorithm has two nested for-loop statements. The length of the name list is denoted as "n". Every name searched in the name list has a time complexity of n, therefore the time complexity of finding two names is (n x n) =  n^2, which is denoted as O(n^2) in Big-O notation.

CAN SOMEONE DO OR LOOK UP THE PIE CHART FOR THIS ANSWER PLS AND I WILL MARK YOU BRAINLIEST BUT PLSSS HELP MEEEE!!!

Answers

Answer:

I highly recommened you use ggl charts.

Explanation:

It's free. ALL YOU NEED IS AN GGL ACCOUNT. You can also choose many types of graph you want.

Do you think that ethics training can really be effective in changing the behavior of employees? Why or why not?

Answers

When employees follow ethical standards, they don't cut corners or short-change the company or its customers. ... Ethical conduct boosts morale and promotes teamwork. When employees can trust one another and management, they can work together more harmoniously and effectively

The tags are always enclosed within a pair of
(a) curly
(b) square
(©) angular​

Answers

Answer:

(©) angular​

Explanation:

The tags should always be enclosed with a pair of angular brackets

In the case of Hyper text markup language (HTML) the brackets that should be used is angular brackets i.e. (< and >)

So as per the given situation, the option c is correct

And, the rest of the options are incorrect

Therefore the tags that should always enclosed with a angular pairs

Answer:

(©) angular

Explanation:

The tags are always enclosed within a pair of angular.

Other Questions
Guys please help me this is for a final What happens when you change only the number of electrons inside of an atom 14.Which of the following organs removes extra waterfrom the blood to keep the amount of fluid in thebloodstream at the proper level?A. kidneysB. liverC.pancreasD. stomach URGENT HELPThe electric motor in the car is powered by a battery.To charge the battery, the car is plugged into the mains supply at 230 VThe power used to charge the battery is 6.9 kWCalculate the current used to charge the battery.Current = ? What is RU?A.20B.30C.12D.15 Use the diagram to find the value of a. The parallel linesare marked.624573106 What is the most important purpose of the narrator in the passage to tell readers how the wolves feel about tabaqui and why they feel that way , to tell readers how tabaqui survive rain the jungle, to tell readers about an encounter with tabaqui I will give 200 point and Brainlest plsss help meee First-person to answer correctly gets brainiest"I Shall Return" by Claude McKayI shall return again; I shall returnTo laugh and love and watch with wonder-eyesAt golden noon the forest fires burn,Wafting their blue-black smoke to sapphire skies.I shall return to loiter by the streamsThat bathe the brown blades of the bending grasses,And realize once more my thousand dreamsOf waters rushing down the mountain passes.I shall return to hear the fiddle and fifeOf village dances, dear delicious tunesThat stir the hidden depths of native life,Stray melodies of dim remembered runes.I shall return, I shall return again,To ease my mind of long, long years of pain.Read the poem "I Shall Return" on the previous card and answer thequestions that follow.2. How does this stanza develop meaning in the poem?3. How does the rhyming in this stanza add to the meaning of the poem? The ___________ Compromise broke the deadlock at the Constitutional Convention concerning the issue of representation. *4/3*3.14*2.6*2.6*2.6 Translate into Spanish: I found him thanks to yourhelp.Lo encontr por medio de tu ayuda.Lo encontr por supuesto de tu ayuda.Lo encontr por lo menos de tu ayuda.Lo encontr por ciento de tu ayuda. helpppp i need the answer fast its timed What might be your strong points being an applicant why you assume that you will be getting the position you wanted to apply?Brainliest will be given if answered correctly 24% said that they have not enough time and 11% said that that they have not enough money however, another 11% said they feel ashamed. when speaking foreign language while 5% had no or limited access to learning materials, 15% of learners suffered from no access to native speaker and 3% were affected by bad teacher, 15% complained that they do not like the teacher although 16% admitted that they need to keep up the motivation.Summarize the main problems faced by people learning a new language: 8 minus the sum of 5 and 43 divided by 8 If this is this then what is what need the answer pleas thx1 Which statement best explains why one passage ismore interesting to read than the other?O Passage A is more interesting because it includesRead the passages.Passage A: Known as "man's best friend," dogs makegreat companions. They are loving, loyal, and forgiving.Some dogs can help to keep you active, and others willwarn your lap for hours. Since there are more than 150breeds to choose from, everyone can find the perfectdog for their lifestyle.more details.O Passage A is more interesting because it contains aO Passage B is more interesting because it contains aO Passage B is more interesting because it includesvariety of sentence types.variety of sentence types.Passage B: Dogs are known as "man's best friend.They make great companions. They are loving, loyal,and forgiving. Some dogs can help to keep you active.Some dogs will warm your lap for hours. There are over150 breeds to choose from. Everyone can find theperfect dog for their lifestyle.more details. Which of the following is most likely to represent a fixed rate, secured debt?1) A student loan2) A credit card3) A loan from a friend4) A dealer-financed auto loan What is the main goal of the healthcare industry? Can someone write me an essayI suck at writing and Im so lazy. I need it by Friday, so please just help me out. *High school* Steam Workshop Downloader