In devising a route to get water from a local lake to its central water storage tank, the city of Rocky Mount considered the various routes and capacities that might be taken between the lake and the storage tank. The city council members want to use a network model to determine if the city's pipe system has enough capacity to handle the demand.
1. They should use ____________.
A. Minimal Spanning Tree Method
B. Shortest Path Method
C. Maximal Flow Method
D. Any of the above will do

Answers

Answer 1

Answer:

C. Maximal Flow Method

Explanation:

When it comes to optimization theory, Maximal Flow Method or problems have to do with finding a possible or viable flow through a flow network that obtains the maximum potential flow rate. The maximum flow problem can be viewed as an exceptional case of more complex and complicated network flow problems, such as that of the circulation problem.


Related Questions

2. Write a C program that generates following outputs. Each of the

outputs are nothing but 2-dimensional arrays, where ‘*’ represents

any random number. For all the problems below, you must use for

loops to initialize, insert and print the array elements as and where

needed. Hard-coded initialization/printing of arrays will receive a 0

grade. (5 + 5 + 5 = 15 Points)

i)

* 0 0 0

* * 0 0

* * * 0

* * * *

ii)

* * * *

0 * * *

0 0 * *

0 0 0 *

iii)

* 0 0 0

0 * 0 0

0 0 * 0

0 0 0 *

2. Write a C program that generates following outputs. Each of the outputs are nothing but 2-dimensional

Answers

Answer:

#include <stdio.h>

int main(void)

{

int arr1[4][4];

int a;

printf("Enter a number:\n");

scanf("%d", &a);

for (int i=0; i<4; i++)

{

for(int j=0; j<4; j++)

{

 if(j<=i)

 {

  arr1[i][j]=a;

 }

 else

 {

  arr1[i][j]=0;

 }

}

}

for(int i=0; i<4; i++)

{

for(int j=0; j<4; j++)

{

 printf("%d", arr1[i][j]);

}

printf("\n");

}

printf("\n");

int arr2[4][4];

int b;

printf("Enter a number:\n");

scanf("%d", &b);

for (int i=0; i<4; i++)

{

 for(int j=0; j<4; j++)

 {

  if(j>=i)

  {

   arr1[i][j]=b;

  }

  else

  {

   arr1[i][j]=0;

  }

 }

}

for(int i=0; i<4; i++)

{

 for(int j=0; j<4; j++)

 {

  printf("%d", arr1[i][j]);

 }

 printf("\n");

}

printf("\n");

int arr3[4][4];

int c;

printf("Enter a number:\n");

scanf("%d", &c);

for (int i=0; i<4; i++)

{

 for(int j=0; j<4; j++)

 {

  if(j!=i)

  {

   arr1[i][j]=c;

  }

  else

  {

   arr1[i][j]=0;

  }

 }

}

for(int i=0; i<4; i++)

{

 for(int j=0; j<4; j++)

 {

  printf("%d", arr1[i][j]);

 }

 printf("\n");

}

printf("\n");

return 0;

}

Explanation:

arr1[][] is for i

arr2[][] is for ii

arr3[][] is for iii

2. Write a C program that generates following outputs. Each of the outputs are nothing but 2-dimensional
2. Write a C program that generates following outputs. Each of the outputs are nothing but 2-dimensional

Question 2 Below is a Unified Modelling Language (UML) diagram of an election class. Election - candidate String - num Votes: int >+ Election () >+ Election (nm : String, nVotes: int) + setCandidate( nm : String) + setNum Votes(): int + toString(): String [30 marks] Using your knowledge of classes, arrays, and array list, write the Java code for the UML above in NetBeans. [7 marks]​

Answers

A good example of the  implementation of the Election class based on the above UML diagram is given below

What is the  Unified Modelling Language

The Election class is known to be one that is defined in the given code and it  known also to be one that includes its constructor, getter and setter methods, and ToString() method.

Furthermore, it showcases the process of generating Election entities, defining their features, and preserving them within an ArrayList. Lastly, it produces the specifics of every Election object enlisted in the ArrayList.

Learn more about  Unified Modelling Language from

https://brainly.com/question/15078406

#SPJ1

Question 2 Below is a Unified Modelling Language (UML) diagram of an election class. Election - candidate
Question 2 Below is a Unified Modelling Language (UML) diagram of an election class. Election - candidate

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to index if the value of s would come between "mortgage" and "mortuary" in the dictionary. Otherwise, assign 0 to index.

Answers

Using the knowledge in computational language in python it is possible to write a code that Assume the variable s is a String and index is an int.

Writting the code:

Assume the variable s is a String

and index is an int

an if-else statement that assigns 100 to index

if the value of s would come between "mortgage" and "mortuary" in the dictionary

Otherwise, assign 0 to index

is

if(s.compareTo("mortgage")>0 && s.compareTo("mortuary")<0)

{

   index = 100;

}

else

{

   index = 0;

}

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

#SPJ1

Assume the variable s is a String and index is an int. Write an if-else statement that assigns 100 to

Actividades que puedes Aser con un martillo y su explicación

Answers

Answer:

hi how are you thx yets1wud

Is there a parrapa level for stage 1 in umjammer lammy?

Answers

Answer:yes there WAS a parrapa level but it was scrapped from the game I think you can find it in beta versions of the game but

which of the following is not true? an algorithm allows ambiguity. an algorithm, when carried out, must eventually stop. an algorithm, can be carried out by a human being

Answers

The one that is not true: An algorithm allows ambiguity.

An algorithm is a set of instructions that must be followed precisely, without any ambiguity, in order to produce the desired result.

An algorithm is a set of precise instructions used to solve a problem or complete a task. It must be followed exactly in order to produce the desired results. An algorithm can be carried out either through a computer program or by a human being. The algorithm should be formulated in such a way that it is unambiguous and ensures that all steps are clear and complete. The algorithm should also be designed so that it has a definite end point, otherwise it could run indefinitely without reaching a solution. Algorithms are essential for solving complex problems, as they provide an unambiguous, repeatable way to reach a solution.

Learn more about algorithm: https://brainly.com/question/24953880

#SPJ4

Which properties would be useful to know to search for a Word document? Check all that apply.

Answers

Answer:

Alternatively, you can click the comment box icon (next to “Share”) to see all the suggested edits and comments in one place.

Answer:

A. the original author

C. the version number

D. the last user to edit the document

F. the date the document was last updated

Explanation:

hope this helps :)

Online Book Merchants offers premium customers 1 free book with every purchase of 5 or more books and offers 2 free books with every purchase of 8 or more books. It offers regular customers 1 free book with every purchase of 7 or more books, and offers 2 free books with every purchase of 12 or more books.

Write a statement that assigns freeBooks the appropriate value based on the values of the bool variable isPremiumCustomer and the int variable nbooksPurchased. Assign 0 to freeBooks if no free books are offered. Assume the variables freeBooks, isPremiumCustomer, and nbooksPurchased are already declared.

In C++ please

Answers

fill in the blanks

we should our selves

Input a list of employee names and salaries and store them in parallel arrays. End the input with a sentinel value. The salaries should be floating point numbers Salaries should be input in even hundreds. For example, a salary of 36,510 should be input as 36.5 and a salary of 69,030 should be entered as 69.0. Find the average of all the salaries of the employees. Then find the names and salaries of any employee who's salary is within 5,000 of the average. So if the average is 30,000 and an employee earns 33,000, his/her name would be found. Display the following using proper labels. Save your file using the naming format LASTNAME_FIRSTNAME_M08 FE. Turn in your file by clicking on the Start Here button in the upper right corner of your screen. 1.Display the names and salaries of all the employees. 2. Display the average of all the salaries 3. Display all employees that are within 5,000 range of the average.

Answers

Using the knowledge in computational language in JAVA it is possible to write the code being Input a list of employee names and salaries and store them in parallel arrays

Writting the code in JAVA:

BEGIN

DECLARE

employeeNames[100] As String

employeeSalaries[100] as float

name as String

salary, totalSalary as float

averageSalary as float

count as integer

x as integer

rangeMin, rangeMax as float

INITIALIZE

count = 0;

totalSalary =0

DISPLAY “Enter employee name. (Enter * to quit.)”

READ name

//Read Employee data

WHILE name != “*” AND count < 100

employeeNames [count] = name

DISPLAY“Enter salary for “ + name + “.”

READ salary

employeeSalaries[count] = salary

totalSalary = totalSalary + salary

count = count + 1

DISPLAY “Enter employee name. (Enter * to quit.)”

READ name

END WHILE

//Calculate average salary with mix , max range

averageSalary = totalSalary / count

rangeMin = averageSalary - 5

rangeMax = averageSalary + 5

DISPLAY “The following employees have a salary within $5,000 of the mean salary of “ + averageSalary + “.”

For (x = 0; x < count; x++)

IF (employeeSalaries[x] >= rangeMin OR employeeSalaries[x] <= rangeMax )

DISPLAY employeeNames[x] + “\t” + employeeSalaries[x]

END IF

END FOR

END

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

#SPJ1

Input a list of employee names and salaries and store them in parallel arrays. End the input with a sentinel

How could you use a spreadsheet you didn't like to simplify access also the problem

Answers

Answer:

Explanation:

......

Research and a well-written problem statement are important because A)they give a clear understanding of the problem and its solution. B)they ensure that anyone in the general public will be able to understand and solve the problem. C)they give a list of the needs of the stakeholders. D)they ensure that questions still need to be asked about the problem.

Answers

Answer:

A. they give a clear understanding of the problem and it's solution

Explanation:

Research and a well-written problem statement are important because they give a clear understanding of the problem and its solution.

Answer:

Research and a well-written problem statement are important because

they give a clear understanding of the problem and its solution.

they ensure that anyone in the general public will be able to understand and solve the problem.

they give a list of the needs of the stakeholders.

they ensure that questions still need to be asked about the problem.

I woke up this morning and turned on my computer to do some school work and my display was like shifted and some of the display was just black. You can even see on my task bar that it is going off the screen. I've tried changing my graphics and resolution and they we're the same, I've tried restarting my pc and refreshing my display still doesn't work. I've also done nothing for it to do this and I'm really confused. Please help me with this It's really stressing me out and I will do anything

Answers

Answer: This happened to me before, your computer has a virus and i had to get a new one , but you have two options, you have to open the pc and rearrange the blue and white wires or.... buy a new one

Explanation:

Answer:

You know what, it happened to me too. I had to reset it to the factory on my computer.

TCP supports connection-oriented services, so many Internet applications are running on TCP. But we still say Internet is connectionless, why

Answers

Answer:

Much of the traffic on the internet is connectionless because this approach makes it easier to handle certain types of traffic without incurring the overhead of data transmission services, such as connection-oriented protocols


Python help
Instructions
Write a method swap_values that has three parameters: dcn, key1, and key2. The method should take the value in
the dictionary den stored with a key of key1 and swap it with the value stored with a key of key2. For example, the
following call to the method
positions = {"C": "Anja", "PF": "Jiang", "SF": "Micah", "PG": "Devi", "SG": "Maria")
swap_values (positions, "C", "PF")
should change the dictionary positions so it is now the following:
{'C': 'Jiang', 'PF': 'Anja', 'SF': 'Micah', 'PG': 'Devi', 'SG': 'Maria')

Answers

def swap_values(dcn, key1, key2):

   temp = dcn[key1]

   dcn[key1] = dcn[key2]

   dcn[key2] = temp

   return dcn

The method in the interface for a dictionary collection returns an iterator on the key/value pairs in the dictionary is the Keys () method.

Consider the scenario where you want to develop a class that functions like a dictionary and offers methods for locating the key that corresponds to a specific target value.

You require a method that returns the initial key corresponding to the desired value. A process that returns an iterator over those keys that map to identical values is also something you desire.

Here is an example of how this unique dictionary might be used:

# value_dict.py

class ValueDict(dict):

  def key_of(self, value):

      for k, v in self.items():

          if v == value:

              return k

      raise ValueError(value)

  def keys_of(self, value):

      for k, v in self.items():

          if v == value:

              yield k

Learn more about Method on:

brainly.com/question/17216882

#SPJ1

What happens when QuickBooks Online doesn't find a rule that applies to a transaction?

Answers

QuickBooks employs the Uncategorized Income, Uncategorized Expense, or Uncategorized Asset accounts to hold transactions that it is unable to categorize. These accounts cannot be used to establish bank policies.

What is QuickBooks Online?

A cloud-based financial management tool is QuickBooks Online. By assisting you with things like: Creating quotes and invoices, it is intended to reduce the amount of time you spend handling your company's money. monitoring the cash flow and sales.

While QuickBooks Online is a cloud-based accounting program you access online, QuickBooks Desktop is more conventional accounting software that you download and install on your computer.

QuickBooks is an accounting program created by Intuit whose products offer desktop, internet, and cloud-based accounting programs that can process invoices and business payments. The majority of QuickBooks' customers are medium-sized and small enterprises.

Thus, QuickBooks employs the Uncategorized Income.

For more information about QuickBooks Online, click here:

https://brainly.com/question/20734390

#SPJ1

Nia is editing a row in an Access table. The row contains the Pencil icon on the left end of the record
this icon indicate?
A. The record is committed.
B. The record has not been written.
C. The record has been written.
D. Nia is editing the record currently.

Answers

Answer:

The answer is D

Explanation:

That little pencil reminds you that you are entering or editing the current record, and that the changes you are making are not yet saved. The little pencil disappears as soon as you move off the current record. Take that as confirmation that Access has saved your new record, or the changes you made to an existing one.

In the case above, The row has the Pencil icon on the left end of the record this icon indicate Nia is editing the record currently.

What is record?

A record is known to be the state or fact of an act been put down or is been recorded.

Note that In the case above, The row has the Pencil icon on the left end of the record this icon indicate Nia is editing the record currently as it shows the pen icon.

Learn more about record  from

https://brainly.com/question/25562729

#SPJ9

Who is Heavy Weapons Guy?

Who is Heavy Weapons Guy?

Answers

Answer:

The Heavy, whose real name is Mikhail (called Misha by his family), is a hulk hailing from the USSR, and possibly the most dangerous class in Team Fortress, armed with a powerful Minigun .

Answer:

Gary Schwartz

Current Tetra Shillings user accounts are management from the company's on-premises Active Directory. Tetra Shillings employees sign-in into the company network using their Active Directory username and password.

Answers

Employees log into the corporate network using their Active Directory login credentials, which are maintained by Tetra Shillings' on-premises Active Directory.

Which collection of Azure Active Directory features allows businesses to secure and manage any external user, including clients and partners?

Customers, partners, and other external users can all be secured and managed by enterprises using a set of tools called external identities. External Identities expands on B2B collaboration by giving you new options to communicate and collaborate with users outside of your company.

What are the three activities that Azure Active Directory Azure AD identity protection can be used for?

Three crucial duties are made possible for businesses by identity protection: Automate the identification and elimination of threats based on identity. Use the portal's data to research dangers.

To know more about network visit:-

https://brainly.com/question/14276789

#SPJ1

Question 18
Which of the following is true?
a = 1
b = 10
a b<= a or a >= b
a>bor a == b
a band a == b

Answers

Answer:

None

Explanation:

Logical operators:

'and' indicates that the statement is true if both conditions are true.

'or' indicates that the statement is true if one or both conditions are true.

Given that a = 1 and b = 10:

The first statement is false (1×10 <= 1 is false, 1 >= 10 is also false)

The second statement is false (1>10 is false, a does not equal b)

The third statement is false (a does not equal b)

None of these statements are true.

Hope this helps :)

find four
reasons
Why must shutdown the system following the normal sequence

Answers

If you have a problem with a server and you want to bring the system down so that you could then reseat the card before restarting it, you can use this command, it will shut down the system in an orderly manner.

"init 0" command completely shuts down the system in an order manner

init is the first process to start when a computer boots up and keep running until the system ends. It is the root of all other processes.

İnit command is used in different runlevels, which extend from 0 through 6. "init 0" is used to halt the system, basically init 0

shuts down the system before safely turning power off.

stops system services and daemons.

terminates all running processes.

Unmounts all file systems.

Learn more about  server on:

https://brainly.com/question/29888289

#SPJ1

identify another natural cyclic event, other than phases and eclipses, that is caused by the moon's gravitational pull on earth

Answers

Answer:

TEKS Navigation

Earth Rotation.

Moon Phases.

Tides.

Cyclical events happen in a particular order, one following the other, and are often repeated: Changes in the economy have followed a cyclical pattern. an example would be pamdemic and vircus it is belived that a new pamdemic starts every 100 years.

Explanation:

The rise and fall of ocean tides is the natural cyclic event caused by the moon's gravitational pull on earth

The gravitational pull of the moon's causes the two bulges of water on the Earth's oceans:

where ocean waters face the moon and the pull is strongestwhere ocean waters face away from the moon and the pull is weakest

In conclusion, the rise and fall of ocean tides is the natural cyclic event caused by the moon's gravitational pull on earth

Read more about gravitational pull

brainly.com/question/856541

What decision-making style most likely requires the most amount of data analysis?

Answers

The analytical decision-making style most likely requires the most amount of data analysis.

Define data analysis.

Data analysis is the process of systematically inspecting, cleaning, transforming, and modeling data with the goal of discovering useful information, drawing conclusions, and supporting decision-making. Data analysis is used in a wide range of fields, including business, science, social sciences, and engineering, to extract insights from raw data and identify patterns, trends, and relationships. The process of data analysis typically involves using statistical and mathematical techniques, as well as visualization tools, to interpret and communicate the results of the analysis.

The analytical decision-making style is most likely to require the most amount of data analysis. Analytical decision-making involves a methodical and thorough approach to gathering and analyzing data before making a decision. This style of decision-making is often used in complex or high-stakes situations, where there are many variables to consider and the consequences of a poor decision could be significant. Analytical decision-making involves collecting data from multiple sources, analyzing the data using various methods, and making a decision based on the results of the analysis. This style of decision-making can be time-consuming and requires a significant amount of data analysis to ensure that all relevant information has been considered before making a decision.

To learn more about the data analysis click here

https://brainly.com/question/1906563

#SPJ1

Which of the following works on the pay-per-click (PPC) and cost-per-click (CPC) concept?
A. Google Adwords B. Technorati search C. Bing Ads D. Radian6

Answers

Answer:

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

Explanation:

The correct answer to this question is Google Adwords and Bing Ads.

First we need to know what is CPC and PPC.

Cost per click (CPC) is a paid advertising term used by Google where an advertiser pays a cost to the publisher for every click when an internet user will click on the advertisement or ad.

Cost per click is also called PPC (Pay per click). CPC is used to determine the costs of showing advertisements on the search engine, for example Google Adwords and Bing Ads. Bing Ads is microsoft advertising strategy on internet using PPC advertising strategy.

While other options are not correct because:

technorati search does not allow you to apply these concepts because it searches the list of blogs on the internet.

Radian6 is a social media monitoring platform for marketers to study customer opinions on their products in real-time.

Answer:

A

Explanation:

This is for plato

Which of the following works on the pay-per-click (PPC) and cost-per-click (CPC) concept? A. Google Adwords

Python coding.............

Python coding.............

Answers

Answer:

# Take in four positive integers

num1 = int(input("Enter the first number: "))

num2 = int(input("Enter the second number: "))

num3 = int(input("Enter the third number: "))

num4 = int(input("Enter the fourth number: "))

# Initialize the count of odd numbers

odd_count = 0

# Check each number for oddness

if num1 % 2 != 0:

   odd_count += 1

if num2 % 2 != 0:

   odd_count += 1

if num3 % 2 != 0:

   odd_count += 1

if num4 % 2 != 0:

   odd_count += 1

# Output the total count of odd numbers

print("The number of odd numbers is:", odd_count)

Explanation:

Enter the first number: 1

Enter the second number: 2

Enter the third number: 3

Enter the fourth number: 4

The number of odd numbers is: 2

Please explain election technology

Answers

Answer:

Technlogy is the application of scientific knowledge for practical purposes, especially in industry.

Explanation:

Question #2
Multiple Choice
What is the index of 7 in this list?
[5, 6, 10, 7, 3, 2.5]

A ) 3
B ) 2
C ) 4
D ) 7

Answers

Answer:

C.

Explanation:

mukhang

letter

C.

pambihira

ka

naman

bat

hindi

ka

magtanong

sa

mga

nakakatanda

mong

kapatid

Answer:

The answer to your question is C. Have a wonderful safe day. <3 <3 <3

Explanation:

import sys

sys.argv([0])

sentence = str(sys.argv([1])

def longest_word(sentence):
longest_word = max(sentence, key=len)
return longest_word

print("Longest word is: ", sentence)

I keep getting an error where it states
def longest_word(sentence):
^
SyntaxError: invalid syntax
Please help me where I went wrong.

Answers

The error in your code is that you are missing the : at the end of the if statement

The corrected code:

def find_longest_word(word_list):  

   longest_word = ''  

   longest_size = 0  

   for word in word_list:    

       if (len(word) > longest_size):

           longest_word = word

           longest_size = len(word)      

   return longest_word

words = input('Please enter a few words')  

word_list = words.split()  

find_longest_word(word_list)

Read more about python programming  here:

https://brainly.com/question/26497128

#SPJ1

what is a computer ?​

Answers

Answer:

A computer is a machine that can be instructed to carry out sequences of arithmetic or logical operations automatically via computer programming. Modern computers have the ability to follow generalized sets of operations, called programs. These programs enable computers to perform an extremely wide range of tasks.

Explanation:


Well.......

A computer is a machine that can be instructed to carry out sequences of arithmetic or logical operations automatically via computer programming. Modern computers have the ability to follow generalized sets of operations, called programs. These programs enable computers to perform an extraordinary wide range of tasks.










According to Wikipedia ;))

4. What are the traits of a good follower?​

Answers

Answer:

Judgment. Followers must take direction, but not blindly. Work ethic. Good followers are good workers. Competence. In order to follow, followers must be competent. Honesty. Followers have a responsibility to be honest. Courage. Discretion. Loyalty. Ego management.

What are the core steps to add revisions or features to a project?(1 point)
Responses

Evaluate feasibility of the goals, create a list of functionality requirements, and develop the requirements of the feature.

Evaluate feasibility of the goals, develop programming solutions, and evaluate how well the solutions address the goals.

understand the goals, evaluate the impact on the project, create a list of functionality requirements, and develop the requirements of the feature.

Communicate with the client, create a sprint backlog, develop the project, and evaluate how well the solution fits the requirements.

Answers

The core steps to add revisions or features to a project are ""Understand the goals, evaluate the impact on the project, create a list of functionality requirements, and develop the requirements of the feature." (Option C)

How  is this so?

 

The core steps to add revisions or features to a project include understanding the goals,evaluating the impact on   the project, creating a list of functionality requirements,and developing   the requirements of the feature.

These steps ensure that the goals are clear, the impact is assessed, and the necessary functionality is identified and implemented effectively.

Learn more about project management at:

https://brainly.com/question/16927451

#SPJ1

Other Questions
The estimated regression equation for a model involving two independent variables and 10 observations follows. Here SST = 6,724.125, SSE = 507.75, sb 1= 0.0813, and sb 2= 0.0567. y ^ = 29.1270 + 0.5906x1 + 0.4980x2a. Interpret the regression coefficients in this estimated regression equation-A one-unit increase in x1 will lead to a 0.5906 unit increase in y . A one-unit increase in x2 will lead to a 0.498 unit increase in y.b. Predict y when x1 = 180 and x2 = 310-289.82c. Find SSR-6,216.375d. Compute R2-0.924e. Computef. Compute MSRg. Compute MSEh. Use the F test to determine the overall significance of the relationship among the variables. Use = 0.05.i. Perform a t test for the significance of x1. Use a 0.05 level of significance.j. Perform a t test for the significance of x2. Use a 0.05 level of significance.k. Construct a 95% confidence interval for the coefficient of x2. Which is greater, 6/10 or 6/100? Explain. when converting the erd to a relational table, what would be the primary key of the roomassign table? 600 can be written as 2 b cowhere a, b, c and d are all prime numbers.Find the values of a, b, cand d. Please help me with this. based on intermolecular forces, rank the solubility of methanol, ch3oh; propanol, c3h7oh; octanol, c8h17oh; and ethanol, c2h5oh, from most soluble to least soluble in hexane. What does this sentence suggest about the relationship between the narrator and the author? Select the correct answer from each drop-down menu.How has the media brought about change for women?_____plays a major role in representing the concerns of women and helps to reduce What is one way a compensation manager can effectively age data to provide a more accurate market analysis?a..By altering wage data as requirements of a job changeb. By adjusting wage data for inflationc.By including both salary and benefits in figuring total compensationd. By changing hourly rates to a salary paano gumawa ng tie dye t-shirt. 1.ano Ang kailangan kagamitan sa paggawa ng tie dye t-shirt 2.ano ano Ang mag hakbang at pamamaraan Ang dapat tandaan sa pag sasagawa pasagot po pls 3. From a container of 900 computer disks, 30 of these disks are defective (12 pts. (therefore 870 disks are good). We randomly select a batch of 25 disks. In part C, you will determine the probability of randomly selecting 10 defective disks and 15 good disks for our batch or 8 defective disks and 17 good disks for our batch. A. What is the size of your sample space S ? i.e., How many different outcomes (batches of 25 disks) in your sample space? What counting technique(s) are you using? What are the conditions: Example of an outcome: B. How many outcomes (batches) contain 10 defective disks and 15 good disks? What counting technique(s) are you using? What are the conditions: C. What is the probability of randomly selecting 10 defective disks and 15 good disks for our batch or 8 defective disks and 17 good disks for our batch. (1) Define the event corresponding to this statement. (2) Now provide the probability statement and its probability. Select all of the objective pronouns.theiryouryoum himm herhersthemm shes meI usit What is the sign of s^67/t^9 when s < 0 and t > 0?possible answers:. positive. negative. zero The time it takes to cover the distance between two cities by car varies inversely with the speed of the car. The trip takes 8 hours for a car moving at 45 mph How long does the trip take for a car moving at 30 mph? FILL THE BLANK. use a ________ pattern of organization when the audience does not feel a strong need to change from the status quo. QuestionA square based pyramid has a height of 6 feet and the edge length of the base is 2 feet. A second square based pyramid is 2 feet taller and the edge length of the base is 0.5 feet greater than the first pyramid. How much greater is the volume of the second pyramid than the volume of the first pyramid? Round your answer to the nearest hundredth.please help pls helppp me i dot get this i need help on this question A(n) ____ is true anywhere and has been extensively demonstrated in the lab Using the graph, find the equation of the line in slope-intercept form.What is the slope-intercept form of the equation of the line?y =