Suppose you were implementing a data structure to store information about the paintings on display at an art dealer's Of the following data structures, which one is the right one to use? 1. )Unordered array 2.)Sorted array 3.)Linked list 4.)Binary search tree 5.)It depends [This was a recurring theme in our discussions of data structures. You have to know how the data structure will be used and which operations need to be efficient to make an intelligent choice.

Answers

Answer 1

When implementing a data structure to store information about paintings, a linked list is the right one to use. The reason is that linked lists do not need to be sorted, and their primary advantage is that items can be added and removed from the list without having to move other elements to make room.

If the art dealer frequently adds or removes paintings from their display, a linked list is the best choice as it is the most efficient data structure.The Linked list is one of the simplest linear data structures that allows efficient insertion and removal operations. It consists of a sequence of nodes, each of which contains data and a reference (link) to the next node in the sequence. A linked list does not need to be sorted, so it can be used to store information about paintings without any constraints regarding ordering. It also allows efficient add and remove operations without having to move other elements. Therefore, it is the ideal data structure to store the paintings’ information.

To know more about data structure visit:

brainly.com/question/28447743

#SPJ11


Related Questions

Select the correct answer.
Nate is team lead at a firm. He uploads a file to a shared location. At the end of each week, all his team members update their tasks in this file.
What specific permission does each team member have?
OA View
ОВ.
read
OC change
OD
full control

Answers

Answer:

OC change i think..

Explanation:

The functions of forums

Answers

Answer:

The purpose of the forum is to talk about features that are currently in the game, whether they’re working, whether they’re not working, what we enjoy or dislike, what we would like to see in future, and what we would like to see less of, sharing tips and advice, and sharing creative stuff in the player content section.

Explanation:

Alliance wars is currently in beta testing. Anyone enrolled in the testing has their own access to a separate forum for discussion to discuss amongst themselves, and to provide feedback to the devs, on what is working and what isn’t. None of that information needs to be shared outside of the beta forum. Anyone NOT enrolled in the testing has no idea what is going on with it, so has no reason to be involved with discussing that side of things. If you don’t like that, you had your chance to apply the same as they did.

So yes, that thread should have been removed.

Asia pacific and Japanese sales team from cloud kicks have requested separate report folders for each region.The VP of sales needs one place to find the reports and still wants to retain visibility of the reports in each folder. What should a consultant recommended to meet this requirement.

Answers

Answer:

B) Create all new regional folders and move the reports to the respective region folder with viewer access.

Explanation:

Below are the options

A) Create grouped folders, keeping the top region folder sharing settings and limiting the sharing settings for the grouped folders for each region.

B) Create all new regional folders and move the reports to the respective region folder with viewer access.

C) Create all new regional folders and move the reports to the respective region folder with subscribe access.

D) Create subfolders, keeping the top region folder sharing settings and limiting the sharing settings for the subfolders for each region

In order to required reports at one place and also wants to retain the visibility for each folder the consultant should suggest that all new regional folders should be created and afterwards it would be moved to their relevant region folders by involving the viewer access feature so that the VP should access it anytime

Hence, the correct option is B.

Based on the information given, the correct option will be B. Create all new regional folders and move the reports to the respective region folder with viewer access.

From the information given, it was stated that the VP of sales needs one place to find the reports and still wants to retain visibility of the reports in each folder.

Therefore, it's important to create all new regional folders and move the reports to the respective region folder with viewer access.

Learn more about folders on:

https://brainly.com/question/20262915

This task is meant as a review of your database querying skills. Once you feel comfortable with your skills in producing these queries, the next tasks are focused more on the internal auditing context. Ensure that the output is listed in the order stated in each question. Required Complete the following workflow tasks. Label each of your solutions using the following convention in acontainer: Task4_Questionㄱ where # should be the question number. For example, the answer to question 3 should be labeled Task4_Question3. You should turn off the previous containers to improve the processing time of your workflow. 1. Show all transactions sorted by amount (largest to smallest), with the most expensive transactions listed first. Display the year, month, cardholder name, the amount of the transaction and the vendor. 2. Show all transactions that occurred in the 2014 calendar year for more than $3,000. Sort by month and then within each month list the most expensive transactions first. Display the year, month, cardholder name, the amount of the transaction and the vendor. 3. Show all transactions that came from a vendor with Amazon somewhere in the name that occurred in the 2014 calendar year that are more than $3,000. Display the vendor name, employee name, amount, year and month. Sort by amount so the smallest amount is listed first. 4. What is the total dollar amount of transactions returned from January to March, inclusive, in 2014? Label the column TotalRetums2014Q1. 5. What is the total number of P-card transactions in the database for each year? Sort the data by year so the most recent date is listed first. Label the column with the counts as TotalTrans. 6. List the names of all cardholders sorted based on who had the most transactions in the 2014 calendar year. Display the name and number of transactions (labeled as NumTrans). 7. The university would like to know how much money it saved by not paying state sales tax. The state sales tax rate is 4.5%. If you assume all sales are made net of the state sales tax, how much money did OSU avoid paying in sales tax to the government on P-card transactions for each calendar year? Show the year, total amount spent and total amount saved in sales tax (label as SalesTaxSaved). Make sure to round dollar figures to the nearest cent. Sort the data by year with the most recent year listed first. 8. Create a risk ranking of returned items in 2014. Create a new column of data that shows whether something is high risk, medium risk or low risk based on the following criteria. If the return was equal to or more than $1,000, it is high risk; if the retum is equal to or more than $500 and less than $1,000, it is medium risk; and if the return is less than $500, it is low risk. Display the year, name of the cardholder, description, vendor, amount of return and the new column (labeled RiskRanking). Sort the data so that the largest returns are listed first, and do not list any data that is not a return. As a hint, remember that returns are listed as negative numbers - make sure to think about this carefully. Note: Alteryx has an If function that is structured very similarly to Excel's =lf function; Start typing "if" in the formula to find the formula preset (IF c THEN t ELSEIF c2 THEN t2 ELSE f ENDIF). 9. OSU potentially can earn money from Amazon.com if employees make their purchases at smile.amazon.com and direct the earnings to OSU. Assume that for all transactions at the vendor Amazon.com, OSU would earn 0.75% for transactions $500 and more and 0.50% for transactions less than $500. Any returns would deduct the original earnings. What is the total amount that OSU would earn for 2014 based on these amounts? Label the column AmazonEarnings in your output.

Answers

This task is aimed at reviewing the database querying skills. There are nine queries for auditing context. Each solution must be labeled using the given convention. The total amount that OSU would earn for 2014 based on the transaction at Amazon.com is obtained by multiplying the transaction amount by the given percentage. Any returns would be subtracted from the total earnings.

Task 4: Queries for auditing context1. Explanation of task and solution labeling Task 4 focuses on reviewing the database querying skills. After feeling comfortable with the skills in producing queries, the next tasks are aimed at the internal auditing context. The solution must be labeled using the given convention. Example, for question three, the answer should be labeled Task4_Question3. Turning off previous containers enhances processing time. 2. Queries for auditing contextThe following are queries for auditing context:

1. Show all transactions sorted by amount (largest to smallest), with the most expensive transactions listed first. Display the year, month, cardholder name, the amount of the transaction, and the vendor.

2. Show all transactions that occurred in the 2014 calendar year for more than $3,000. Sort by month and then within each month list the most expensive transactions first. Display the year, month, cardholder name, the amount of the transaction, and the vendor.

3. Show all transactions that came from a vendor with Amazon somewhere in the name that occurred in the 2014 calendar year that are more than $3,000. Display the vendor name, employee name, amount, year, and month. Sort by amount so the smallest amount is listed first.

4. The total dollar amount of transactions returned from January to March, inclusive, in 2014. Label the column TotalRetums2014Q1.

5. The total number of P-card transactions in the database for each year. Sort the data by year so the most recent date is listed first. Label the column with the counts as TotalTrans.

6. List the names of all cardholders sorted based on who had the most transactions in the 2014 calendar year. Display the name and number of transactions (labeled as NumTrans).

7. The university would like to know how much money it saved by not paying state sales tax. The state sales tax rate is 4.5%. If you assume all sales are made net of the state sales tax, how much money did OSU avoid paying in sales tax to the government on P-card transactions for each calendar year?

Show the year, total amount spent, and total amount saved in sales tax (label as SalesTaxSaved). Make sure to round dollar figures to the nearest cent. Sort the data by year with the most recent year listed first.

8. Create a risk ranking of returned items in 2014. Create a new column of data that shows whether something is high risk, medium risk, or low risk based on the following criteria. If the return was equal to or more than $1,000, it is high risk;

if the return is equal to or more than $500 and less than $1,000, it is medium risk; and if the return is less than $500, it is low risk. Display the year, name of the cardholder, description, vendor, amount of return, and the new column (labeled RiskRanking). Sort the data so that the largest returns are listed first, and do not list any data that is not a return. As a hint, remember that returns are listed as negative numbers - make sure to think about this carefully. Note: Alteryx has an If function that is structured very similarly to Excel's =lf function; Start typing "if" in the formula to find the formula preset (IF c THEN t ELSEIF c2 THEN t2 ELSE f ENDIF). 9. OSU potentially can earn money from Amazon.com if employees make their purchases at smile.amazon.com and direct the earnings to OSU. Assume that for all transactions at the vendor Amazon.com, OSU would earn 0.75% for transactions $500 and more and 0.50% for transactions less than $500. Any returns would deduct the original earnings. What is the total amount that OSU would earn for 2014 based on these amounts? Label the column AmazonEarnings in your output.3.  

To know more about database visit:

brainly.com/question/30163202

#SPJ11

A few months ago, your friend started an online friendship with somebody she met on a forum about her favorite sports team. This person claims to be the same age and lives in a different city. Coincidentally, your friend’s family is going on vacation to the city where her Internet friend lives. Your friend tells you that she plans to meet her Internet friend in person.

What steps should you take to respond to this situation? by the way this is school not real life

Answers

Answer:

1. Ask someone to go with you, your other friend or an adult

2. You should find a meeting place that is out in the open

3. Try to make a group hangout

4. Have your phone on you

Which of the following uses replication to Infect multiple computers?
Viruses
Trojan horse
Spyware
Worms​

Answers

Answer:

Trojan horse

Explanation:

mostly all the above mentioned use replication to infect computers but the one that uses replication to invest multiple computers at a time is Trojan horse.

hope it helps .

Answer:

trojan house

Explanation:

i just took the house

ifweimplementedthestacksfromthepreviousproblemwithanarray,as described in this chapter, then what is the current value of the top member variable?

Answers

If we implemented the stacks from the previous problem with an array, as described in this chapter, then the current value of the top member variable would depend on how many items have been pushed onto the stack and how many have been popped off.

Initially, the top member variable would be set to -1, indicating that the stack is empty. As items are pushed onto the stack, the top member variable would be incremented to reflect the new top item. Conversely, as items are popped off the stack, the top member variable would be decremented to reflect the new top item. Ultimately, the current value of the top member variable would correspond to the index of the top item in the stack array, with -1 indicating an empty stack and 0 or greater indicating a non-empty stack.

learn more about stacks here:

https://brainly.com/question/32295222

#SPJ11

How can you find your local ip address from command prompt?

Answers

Answer: run ipconfig

Explanation: This gives you all of ip information need

Can you please help me? I give you a brainlest
! ​

Can you please help me? I give you a brainlest !

Answers

1.
2.satin stitch
3.lazy daisy stitch (detached chain )
4.chain stitch
5. cross stitch
6. french knot
7.
8.split stitch
9.
10. back stitch
the others i can’t tell.

in this lab, you will complete a prewritten java program that computes the largest and smallest of three integer values. the three values are –50, 53, and 78.

Answers

The pre-written Java program computes the largest and smallest of three integer values (-50, 53, and 78) using conditional statements. The largest number is printed first, followed by the smallest number.

In this lab, you will complete a pre-written java program that computes the largest and smallest of three integer values.

The three values are -50, 53, and 78.In order to compute the largest and smallest of the three integer values (-50, 53, and 78), we can write a Java program that makes use of conditional statements to evaluate which number is greater or smaller.

Here is the program code to compute the largest and smallest of three integer values.

```public class LargestSmallest{public static void main(String[] args) {int a=-50, b=53, c=78;int largest, smallest;if(a>b && a>c){largest=a;}else if(b>a && b>c){largest=b;}else{largest=c;}System.out.println("Largest number is "+largest);if(a

Learn more about Java program: brainly.com/question/26789430

#SPJ11

Anyone here good with Alice? I need help ASAP

Answers

Answer:

who is alice again we dont understand

Draw a flow chart that accepts mass and volume as input from the user. The flow chart should compute and display the density of the liquid.( Note: density = mass/volume ).​

Answers

Answer:

See attachment for flowchart

Explanation:

The flowchart is represented by the following algorithm:

1. Start

2. Input Mass

3. Input Volume

4 Density = Mass/Volume

5. Print Density

6. Stop

The flowchart is explained by the algorithm above.

It starts by accepting input for Mass

Then it accepts input for Volume

Step 4 of the flowchart/algorithm calculated the Density using the following formula: Density = Mass/Volume

Step 5 prints the calculated Density

The flowchart stops execution afterwards

Note that the flowchart assumes that the user input is of number type (integer, float, double, etc.)

Draw a flow chart that accepts mass and volume as input from the user. The flow chart should compute

The ______ tab is a contextual tab and displays only when media content on your slide is selected

Answers

The complete statement is:

The Table Tools tab is a contextual tab and displays only when media content on your slide is selected

How to determine the tab

There are several tabs in Microsoft Office packages

Some of these tabs include

Home Page layoutReview and ViewEtc

Of all the available tabs in these packages, the table tool tab is contextual.

This is so because it is not display unless the media is selected

Read more about tabs at:

https://brainly.com/question/14139335

What network is carrying the ncaa championship game.

Answers

The network carrying the NCAA championship game can vary depending on the year and the specific agreement in place.

However, major networks such as CBS, TBS, TNT, and TruTV have all aired the game in recent years. It's always a good idea to check your local listings or the NCAA website for the most up-to-date information on where to watch the championship game. A network is a group of interconnected devices or systems that can communicate and exchange data. It can be as small as a local area network (LAN) within a single building or as large as the internet, which spans the globe. Networks can be wired or wireless and use various protocols and technologies to transmit data. They are used in various industries and contexts, including business, education, healthcare, and entertainment. Networks can provide access to shared resources, such as printers and files, and enable collaboration and communication between users. Proper network design, security, and management are essential for ensuring reliable and secure communication and preventing unauthorized access or data breaches.

Learn more about network here:

https://brainly.com/question/13992507

#SPJ11

A film company want to video animals in the wild acting naturally. They decide to
create life-like robots that use artificial intelligence to react naturally with their
environment. The robots have cameras inside that record the interactions.
a. Describe how artificial intelligence can be used to allow the robots to
react to their environment. [5]

b. Discuss the robots to record the animals. [5]

Answers

Answer:

y

Explanation:

g

which pc motherboard bus is used to connect the cpu to ram and other motherboard components?

Answers

Answer: A Front side is used to connect the CPU to ram and other motherboard components.

"Front side" refers to the external interface from the processor to the rest of the computer system, as opposed to the back side, where the back-side bus connects the cache (and potentially other CPUs). A front-side bus (FSB) is mostly used on PC-related motherboards (including personal computers and servers).

Explanation: Hope this helps!! :)) Mark me as brainliest and have a good day!! :)))

Select the correct answer.

Which TWO objects are likely to have SSD chips in them?

1. office access card
2. bank debit card
3. food service token
4. discount coupon
5. business card

Select the correct answer.Which TWO objects are likely to have SSD chips in them?1. office access card2.

Answers

Answer:

I think the three and four

In which of the following situations would parallel systems MOST likely be used to help analyze data?



A. Data analysis involving two or more columns of data

B. Data analysis involving both string and numeric data

C. Data analysis involving large datasets

D. Data analysis that could result in two or more different types of visualizations

Answers

Answer:c

Explanation: big data

Big Data defines as more diverse information, with rising numbers and speed.The data sets are larger and more complicated, in particular new data sources.The datasets are so big because they can't manage using typical information processing software. However, a huge amount of data is used to deal with business issues that you had not before been able to handle.Parallel analysis is a way to analyze data utilizing parallel processes that are running on numerous computers concurrently.This procedure is often employed in large-scale data analysis and general data analysis.

The wrong choice description can be defined as follows:

In option A and Option B both are wrong because it doesn't include data columns and string and numeric value.In Option D it is wrong because it not used in visualization.

Learn more:

brainly.com/question/14843342

Assume a file containing a series of integers is named numbers.txt and exists on the computers disk. Write a program that calculates the average of all the numbers stored on the file. Write this in Python

Answers

Answer:Here is one way to calculate the average of all the numbers stored in a file named "numbers.txt" in Python:

Explanation:

# Open the file for reading

with open("numbers.txt", "r") as file:

   # Read all the lines in the file

   lines = file.readlines()

   

   # Convert each line to an integer

   numbers = [int(line.strip()) for line in lines]

   

   # Calculate the sum of the numbers

   total = sum(numbers)

   

   # Calculate the average by dividing the total by the number of numbers

   average = total / len(numbers)

   

   # Print the result

   print("The average of the numbers is", average)

Which code segment results in "true" being returned if a number is even? Replace "MISSING CONDITION" with the correct code segment.

function isEven(num){

if(MISSING CONDITION){

return true;

} else {

return false;

}

}


A. num % 2 == 0;

B. num % 0 == 2;

C. num % 1 == 0;

D. num % 1 == 2;

Answers

Answer:

The answer is "Choice A".

Explanation:

In this code, a method "isEven" is declared that accepts the "num" variable in its parameter, and inside the method and if block is declared that checks the even number condition if it is true it will return a value that is "true" otherwise it will go to else block that will return "false" value, that's why other choices are wrong.

The correct code segment that tests if a number is even is num % 2 == 0

When a number is divided by 2, and the remainder after the division is 0, then it means that the number is an even number.

Assume the variable that represents the number is num

The condition that tests for even number would be num % 2 == 0

Hence, the correct code segment that tests if a number is even is (a) num % 2 == 0

Read more about boolean statements at:

https://brainly.com/question/2467366

What is the size of BIOS?

Answers

Answer:

The size of BIOS is 32 megabytes

What is the size of BIOS?

Answer:

32 megabytes

Explanation:

given a string matrix we in that need to find the
number which is occured two times or more than two times and and
give the sum of those numbers
Sample input::
[1 3 4
3 6 8
8 6 8]
Output:
3+8=11"
Plea

Answers

Given a string matrix, we need to find the number that occurred two times or more than two times and give the sum of those numbers. In order to do this, we can take the following approach:We can convert the string matrix into an integer matrix. We can create an empty dictionary. We will iterate through each element in the matrix.

If the element is not present in the dictionary, we will add it with the value 1. If the element is already present in the dictionary, we will increment its value by 1. After iterating through the matrix, we will iterate through the keys of the dictionary and add the sum of the keys whose values are greater than or equal to 2. The sum of these keys will be the desired output.

Here is the implementation of the above approach in Python: matrix = [[1, 3, 4], [3, 6, 8], [8, 6, 8]]d = {}# Convert string matrix to integer matrix for i in range(len(matrix)):    for j in range(len(matrix[i])):        matrix[i][j] = int(matrix[i][j])# Populate dictionary with occurrences of each number for i in range(len(matrix)):    for j in range(len(matrix[i])):        if matrix[i][j] not in d:            d[matrix[i][j]] = 1        else:            d[matrix[i][j]] += 1# Calculate sum of numbers that occurred 2 or more times sum = 0for key in d:    if d[key] >= 2:        sum += key print(sum) In the given problem, we have a matrix of strings and we need to find the numbers that occurred two or more times and sum them up. To solve this problem, we first need to convert the string matrix into an integer matrix. We then need to iterate through each element in the matrix and populate a dictionary with occurrences of each number in the matrix.

To know more about matrix visit:

https://brainly.com/question/29132693

#SPJ11

Many surveys are conducted over the phone. Which of the following would be most likely to cast doubt on the external validity of these studies? a. All of the people participating in the survey own telephones, b. The phone calls were not all placed at the same time of day. c. Some of the calls were dropped and the person had to be called back. d. The person conducting the survey was not good at operating a telephone Oe. The phone surveys were conducted by 12 surveyors instead of one

Answers

The option that would be most likely to cast doubt on the external validity of phone surveys is "a. All of the people participating in the survey own telephones".

What does External validity refers to?

External validity refers to the extent to which the findings of a study can be generalized to the larger population from which the study sample was drawn. If a survey is conducted only among people who own telephones, then the findings may not be representative of the entire population, as some segments of the population may not own telephones.

Therefore, option "a. All of the people participating in the survey own telephones" would cast doubt on the external validity of the survey. The other options may affect the internal validity of the study, but they would not necessarily impact its external validity.

Learn more about  phone surveys

brainly.com/question/29187620

#SPJ11

Fill in the blanks to complete the “countdown” function. This function should begin at the “start” variable, which is an integer that is passed to the function, and count down to 0. Complete the code so that a function call like “countdown(2)” will return the numbers “2,1,0”.

Answers

Answer:

Check the code down below

Explanation:

You can use this code:

for i in range(5,-1,-1):

print(i)

This will print:

5

4

3

2

1

0

5 is changeable by the way!

The complete the “countdown” function. This function should begin at the “start” variable, which is an integer that is passed to the function, and count down to 0 is in the explanation part.

What is programming?

The process of creating a set of instructions that tells a computer how to perform a task is known as programming.

Computer programming languages such as JavaScript, Python, and C++ can be used to create programs.

Here is the code to complete the “countdown” function:

def countdown(start):

   for i in range(start, -1, -1):

       print(i, end=",")

The countdown function takes an integer start as an argument and counts down from start to 0 using a for loop.

The range function is used to generate an integer sequence from start to 0, with a step size of -1. (i.e., counting backwards).

Thus, each integer in the sequence, separated by commas, is printed using the print function.

For more details regarding programming, visit:

https://brainly.com/question/11023419

#SPJ2

Write a program in java to input N numbers from the user in a Single Dimensional Array .Now, display only those numbers that are palindrome

Answers

Using the knowledge of computational language in JAVA it is possible to write a code that  input N numbers from the user in a Single Dimensional Array .

Writting the code:

class GFG {

   // Function to reverse a number n

   static int reverse(int n)

   {

       int d = 0, s = 0;

       while (n > 0) {

           d = n % 10;

           s = s * 10 + d;

           n = n / 10;

       }

       return s;

   }

   // Function to check if a number n is

   // palindrome

   static boolean isPalin(int n)

   {

       // If n is equal to the reverse of n

       // it is a palindrome

       return n == reverse(n);

   }

   // Function to calculate sum of all array

   // elements which are palindrome

   static int sumOfArray(int[] arr, int n)

   {

       int s = 0;

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

           if ((arr[i] > 10) && isPalin(arr[i])) {

               // summation of all palindrome numbers

               // present in array

               s += arr[i];

           }

       }

       return s;

   }

   // Driver Code

   public static void main(String[] args)

   {

       int n = 6;

       int[] arr = { 12, 313, 11, 44, 9, 1 };

       System.out.println(sumOfArray(arr, n));

   }

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Write a program in java to input N numbers from the user in a Single Dimensional Array .Now, display

Part 1: Plan and Write the Pseudocode

Use the following guidelines to write your pseudocode for a fill-in story program.
1. Decide on a list of items the program will ask the user to input.
2. Your program should include at least four interactive prompts.
3. Input from the user should be assigned to variables and used in the story.
4. Use concatenation to join strings together in the story.
5. Print the story for the user to read.

Answers

Coding:

def main():

 name = input("Enter your name: ")

 age = input("Enter your age: ")

 color = input("Enter you favorite color: ")

 birth = input("Enter your birthday: ")

 print(name + " is "+age+" year(s) old.")

 print(name + "'s favorite color is "+color)

 print(name + " was born on "+ birth)

main()

Explanation:

Pseudocode is a generic way of writing an algorithm, using a simple language (native to whoever writes it, so that it can be understood by anyone) without the need to know the syntax of any programming language.

Part 1: Plan and Write the PseudocodeUse the following guidelines to write your pseudocode for a fill-in

What is the worst-case asymptotic running-time for the best algorithm for finding something in a dictionary implemented with a sorted array?

Answers

The behavior that prevents the execution time of an algorithm from growing indefinitely long. This is typically represented using Big-O notation. Keep an eye out for asymptotic spatial complexity as well.

What is the asymptotic running time?The behavior that prevents the execution time of an algorithm from growing indefinitely long. This is typically represented using Big-O notation. Keep an eye out for asymptotic spatial complexity as well.Asymptotic analysis is the evaluation of an algorithm's performance using only the input size (N), where N is very large. It is critical to evaluate the performance of your code because it provides insight into the application's limiting behavior.

To find the worst-case asymptotic running time methods.

A. Worst-case scenario in a sorted array At asymptotes, the running time is: O (log n)

B. In a sorted array, the best case At asymptotes, the running time is: O (1)

C. A sorted linked list's worst-case asymptotic running time is O. (n)

D. Asymptotic best case running time in a sorted linked list: O (1)

E. Film length: O (N2)

Because everything was hashed to a collision location number: 0 + 1 + 3 +............ + n - 1.

F. Film length: O (N)

All in one bucket G, therefore

Time Spent: O (N5)

Therefore, check every N5 position.

To learn more about Asymptotic Running time, refer to:

https://brainly.com/question/28328185

#SPJ4

Click this link to view O*NET's Work Activities section for Actors. Note that common activities are listed toward the top, and less common activities are listed toward the bottom. According to O*NET, what are common work activities performed by Actors? Check all that apply. repairing and maintaining electronic equipment performing administrative activities thinking creatively controlling machines and processes performing for or working directly with the public establishing and maintaining interpersonal relationships​

Answers

Based on  O*NET, the common work activities performed by Actors are:

Scheduling work and activities. Getting information. Making decisions and solving problems. Coordinating the work and activities of others.

What is activity in the workplace?

An activity in the workplace is one that connote the way to promote strong work relationships and boast morale.

Note that Getting all actors to be involved in a team workplace activity is one that help develop a kind of personal bonds and also enhance the professional relationship of all actors.

Learn more about  Work Activities from

https://brainly.com/question/25530656

What is the value of the variable result after these lines of code are executed?

>>> a=6

>>> b=2

>>> C=3

>>> result = a*b-alc

The value of the variable is

Answers

Answer:

W

Explanation:

W

Answer:

a + b - a|c = 7

Explanation:

"The output of bitwise OR is 1 if at  least one corresponding bit of two operands is 1. In C Programming, bitwise OR operator is denoted by |."

-Ayush Rikhra

Good Luck!

What is the value of the variable result after these lines of code are executed?&gt;&gt;&gt; a=6&gt;&gt;&gt;

How do you identify quality resources on the Internet? There are 4 correct answers. Select each answer.

Question 3 options:

Check the information for accuracy by looking for references or searching for the same information with another source.


Determine if the information seems to balance pros and cons. If it's difficult to tell the difference between facts and opinions, the website may not be research based.


Determine who wrote the information. Anyone can post to the internet.


Find out when the information was published or edited last. The facts could be out of date.


When you conduct an Internet search, observe where the website is in the list of search results. The websites listed first are the most reliable resources.

Answers

Answer:

Every option except option E.) is true. I hope this helps! :)

Other Questions
Shorten this and put it in your own wordsAround the year 133 BC, Rome was set up as a democracy. Later the Roman people were sovereign. Even the system of voting was weighted to give more influence to the votes of the wealthy. By 14 AD, when the first emperor Augustus died, popular elections had all but disappeared. This was nothing short of a revolution, brought about through a century of constant civil strife, and sometimes open warfare. Many Romans themselves put the key turning point in 133 BC. The course of events is clear enough.In the process, he deposed from office another tribune who opposed the distribution and argued that his reforms should be funded from the money that came from the new Roman imperial province of Asia. Gracchus's land bill was passed. Gracchus's motivation is much less clear. Whatever his motives were, his career crystallised many of the main issues that were to underlie the revolutionary politics of the next hundred years.The consequences of Rome's growing empire were crucial. Tiberius's decision to use the revenues of Asia for his land distribution was a provocative claim - that the poor as well as the rich should enjoy the fruits of Rome's conquests. But Tiberius's desire to stand for a second tribunate also raised questions of personal political dominance. This became an increasingly urgent issue as leading men in the first century BC, such as Julius Caesar, were sometimes given vast power to deal with the military threats facing Rome from overseas - and then proved unwilling to lay down that power when they returned to civilian life. The events of 133 BC were followed by a series of intensifying crises. At the end of the century Gaius Marius, a stunningly successful soldier, defeated enemies in Africa, Gaul and finally in Italy, when Rome's allies in Italy rebelled against her.He held the highest office of state, the consulship, no fewer than seven times, an unprecedented level of long-term dominance of the political process. Marius then came into violent conflict with Lucius Cornelius Sulla, another Roman warlord, who after victories in the east actually marched on Rome in 82 BC and established himself 'dictator'.This had been an ancient Roman office designed to give a leading politician short terms powers in an emergency.Unlike Julius Caesar, however, who was to become dictator 40 years later, Sulla retired from the office and died in his bed.The middle years of the first century BC were marked by violence in the city, and fighting between gangs supporting rival politicians and political programmes.The two protagonists were Gnaeus Pompeius Magnus ('Pompey the Great', as he was called, after Alexander the Great) and Julius Caesar.Caesar promoted radical policies in the spirit of Tiberius Gracchus; Pompey had the support of the traditionalists.Historians in both the ancient and modern world have devoted enormous energy to tracking the precise stages by which these two men came head-to-head in civil war. But the fact is that, given the power each had accrued and their entrenched opposition, war between them was almost inevitable. Not much 'liberty' was to follow. Instead there was another decade of civil war as Caesar's supporters first of all battled it out with his assassins, and when they had been finished off, fought among themselves. Will give brainliest 7. List the following in increasing order.0.65, 6.5%, 2/3, 1/2 Solve the problem.A teacher is going to assign each student a 3-digit code using the digits 0 through 4. How many codes are possible if no repetitions are allowed?A.) 60B.) 125C.) 24D.) 64 suppose that you wanted to reduce the resonant frequency of a mass and spring harmonic motion system, what could you do? how many pounds of chicken feed that is 50% corn must be mixedwith 24 pounds of feed that is 90% corn to make a chicken feed thatis 80% corn Using the Web or another research tool, search for alternative means of defending against either general DoS attacks or a specific type of DoS attack. This can be any defense other than the ones already mentioned in this lesson. A business success depends on four key factors: financing, location, management, and _____. a. opportunity costs b. retail sales c. competition d. employment opportunities 1)A person with normal vision (near point 28cm) is standing in front of a plane mirror. What is the closest distance to the mirror the person can stand and still see himself in focus In photosynthesis, plants use sunlight to convert carbon dioxide into __________. Suppose you are thinking about purchasing a small office building for $1,500,000. The 30 year fixed rate mortgage that you have arranged covers 80% of the purchase price and has an interest rate of 8%. Assume you were to default and go into foreclosure in year 10 of this loan. If the lender was able to sell this property for $700,000, how much does the lender stand to lose in the absence of pmi?. Marketers will utilize native advertising to help educate their customers about both online and in-store sales specials. This tactic integrates the _____ element of the marketing mix. Multiple Choice place product packaging promotion price What is the area of this triangle? What advice does Hamlet have for the actors Why?. What is the answer to this question? The table shows the heights of three monster trucks. Bigfoot 5 is 4.9 feet taller than Bigfoot 2. Write and solve an addition equation to find the height of Bigfoot 2. not looking for work. The labor force equals 50,000 65,000 55,000 80,000 20 of 25 Which of the following people would be considered unemployed? The categories of the Consumer Price Index (CPI) include ALL of the following except: Food Housing Technology Apparel How do you economists use data Jorge does not experience a strong stress response to public speaking, but Dan does. Which factor most likely causes this difference? from the choices below, which is the only permissible option if you need to electronically save the names, ssns and/or other data regarding your patients?