The largest form of a computer network is called
कम्प्युटर नेटवर्कको सबैभन्दा ठूलो रूप
aekar.xe.​

Answers

Answer 1

Answer:

Internet.

Explanation:

In computing, WWW simply means World Wide Web. The world wide web was invented by Sir Tim Berners-Lee in 1990 while working with the European Council for Nuclear Research (CERN); Web 2.0 evolved in 1999. Basically, WWW refers to a collection of web pages that are located on a huge network of interconnected computers (the Internet). Also, users from all over the world can access the world wide web by using an internet connection and a web browser such as Chrome, Firefox, Safari, Opera, etc.

In a nutshell, the World Wide Web is an information system that is generally made up of users and resources (documents) that are connected via hypertext links.

The largest form of a computer network is called internet because it comprises of several groups of computer that are interconnected.

Generally, the standard Internet communications protocols which allow digital computers to transfer (prepare and forward) data over long distances is the TCP/IP suite.


Related Questions

Write a class called Rational with a constructor Rational(int, int) that takes two integers, a numerator and a denominator, and stores those two values in reduced form in corresponding private members. The class should have a private member function void reduce() that is used to accomplish the transformation to reduced form. The class should have an overloaded insertion operator << that will be used for output of objects of the class.

Answers

Answer:

The program in C++ is as follows:

class Rational {

 public:      

 void reduce(int num, int denom) {

   int d = __gcd(num, denom);

num /= d;

   denom /= d;

   cout << "Fraction: " << num <<"/" << denom << endl;

   }

   int num;    int denom;  

};

int main() {

 int numerator, denominator;

 cout<<"Numerator: ";  cin>>numerator;

 cout<<"Denominator: ";  cin>>denominator;

 Rational myObj;  

 myObj . num = numerator;

 myObj . denom = denominator;

 myObj . reduce(myObj . num,myObj . denom);

 return 0;

}

Explanation:

In order to be able to submit my solution, I had to remove and alter some parts of the program.

I've added the complete program as an attachment where I used comments to explain each line of the program

solve the MRS y,x = 12 mean?

Answers

Answer:

Explanation:

The MRS (Marginal Rate of Substitution) is a concept from microeconomics that describes the rate at which one good (in this case, y) can be substituted for another good (in this case, x) while still maintaining the same level of utility or satisfaction for the consumer.

The equation you provided, MRS y,x = 12, tells us that in order for a consumer to maintain the same level of satisfaction, they would be willing to give up 12 units of good y in exchange for 1 unit of good x. This means that, in this specific case, the consumer values good y 12 times more than good x.

It's important to keep in mind that the MRS is a concept that can vary depending on the context and the consumer. The value of the MRS can change depending on the consumer's preferences, the availability of the goods, and the prices of the goods, among other factors.

On this equation alone, I can't confirm what exactly it refers to as more information about the context and the goods themselves is needed, also to make this equation valuable, it's should be done in a utility function or optimization problem in order to give some meaning to the number 12.

How do networks help protect data?

A) by shutting down at 5:00 p.m. each evening
B) by restricting access to department chairs
C) by scheduling regular backups
D) by preventing access by more than one person at a time

Answers

D) by preventing access by more than one person at a time

Networks use authentication and authorization to control access to data. They require that a person entering the network has valid credentials, such as a username and password, before they can access any data on the network. Once the credentials have been provided and verified, the user is typically given limited access to the data that is based on authorization rules set up within the network. This helps ensure that data is securely accessed by only those users that need to access it, preventing unauthorized access by multiple persons at once.

What is the main difference between a goal and an objective?



A goal is a broad-based projection, and an objective is a set of benchmarks.

A goal is a broad-based projection, and an objective is a specific accomplishment.

A goal is a broad-based projection, and an objective is a set of mini-goals.

A goal is a measurable projection, and an objective is a specific accomplishment

Answers

A goal is a desired outcome, but an objective is a targeted action that may be completed quickly and is frequently tied to a goal.

Give an example of each and explain the difference between an objective and a goal.

Objectives are specified in terms of measurable, tangible targets, whereas goals can be immaterial and unmeasurable. For instance, while "offering great customer service" is an intangible goal, "reducing the client wait time to one minute" is a tangible goal that contributes to the achievement of the primary goal.

What distinguishes educational goals from objectives?

Learning In contrast to aims, which convey a broad declaration of intent, objectives are specific, distinct intentions of student performance. Goals cannot be measured or seen; however, objectives can.

to know more about goals and an objective here:

brainly.com/question/28017832

#SPJ1

How BFS takes more memory than DFS?

Answers

Answer:

The BFS have to track of all nodes on the same level

Who takes Mindtap Web Design

Answers

Answer:

MindTap is a new personalized program of digital products and services that engages students with interactivity while also offering students and instructors choice in content, platform, devices, and learning tools. ... The customizable, cloud-based system is a web portal students log into to navigate via a dashboard.

Explanation:

MindTap for Minnick's Responsive Web Design with HTML 5 & CSS, 9th Edition is the digital learning solution that powers students from memorization to mastery. It gives you complete control of your course—to provide engaging content, to challenge every individual, and to build their confidence.

a.) Software architecture is the set of principal design decisions about a system. b.) Software architecture dictates the process used by a team to develop use cases for a software system c.) Software architecture serves as the blueprint for construction and evolution of a software system d.) Software architecture is the clear definition of multiple high-level components that, when working together, form your system and solve your problem e.) All of the above statements are true.

Answers

Question:

Which of the following statements is not a true statement about software architecture?

Answer:

b.) Software architecture dictates the process used by a team to develop use cases for a software system.

Explanation:

A software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications. There are six (6) main stages in the creation of a software and these are;

1. Planning.

2. Analysis.

3. Design.

4. Development (coding).

5. Deployment.

6. Maintenance.

One of the most important steps in the software development life cycle (SDLC) is design. It is the third step of SDLC and comes immediately after the analysis stage.

Basically, method design is the stage where the software developer describes the features, architecture and functions of the proposed solution in accordance with a standard.

Software architecture can be defined as the software blueprint or infrastructure in which the components (elements) of the software providing user functionality and their relationships are defined, deployed and executed. Thus, it is a structured framework used by software developers to model software components (elements), properties and relationships in order to have a good understanding of how the program would behave.

In conclusion, software architecture doesn't dictate the process used by a team to develop use cases for a software system.

The cost of 5/2 kg sugar is Rs. 235/4. What is the cost of 1 kg sugar ? *l​

Answers

Answer:

23.5

Explanation:

Write a Java program for user defined exception that checks the internal and external marks; if the internal marks is greater than 30 it raises the exception “Internal mark exceeded”; if the external marks is greater than 70 it raises the exception and displays the message “External mark exceeded”, Create the above exception and test the exceptions.

Answers

Answer:

class MarksException extends Exception {

   public MarksException(String message) {

       super(message);

   }

}

public class Main {

   public static void main(String[] args) {

       try {

           checkMarks(35, 80);

       } catch (MarksException e) {

           System.out.println(e.getMessage());

       }

   }

   public static void checkMarks(int internal, int external) throws MarksException {

       if (internal > 30) {

           throw new MarksException("Internal mark exceeded");

       }

       if (external > 70) {

           throw new MarksException("External mark exceeded");

       }

   }

}

Explanation:

Which of the following components could you add to your network rec to help protect your servers from brown outdoor blackouts an ethernet switch patch panel

Answers

Assuming your local area experiences brownouts or blackouts during frequent electrical storms. A component which you could add to your network rack to help protect your servers from brownouts or blackouts include the following: A. UPS.

What is a UPS?

In Computer technology, UPS is an abbreviation for Uninterrupted Power Supply and it can be defined as a device that is designed and developed to with an enhanced battery system, in order to allow a computer and other electrical devices to keep running and functioning for at least a short time in the event of a power disruption or when the incoming (input) power is interrupted.

Generally speaking, a short-term decrease in electrical power availability is typically referred to as a ​brownout.

In order to protect a network equipment such as a router, server, or switch from brownouts or blackouts during frequent electrical storms, you must add an Uninterrupted Power Supply (UPS) to your network rack.

Read more on power here: https://brainly.com/question/23438819

#SPJ1

Complete Question:

Your local area experiences brownouts or blackouts during frequent electrical storms. Which of the following components could you add to your network rack to help protect your servers from brownouts or blackouts?

UPS

Ethernet switch

Patch panel

Wireless controller

7.1.5:Doghouse The string is “doghouse”, and you will need to print “h” and “e” using multiple index values. You should use the letters' positions to index. You should print h, e, and e. python

Answers

Answer:

strs = "doghouse"

print(strs[4])

print(strs[7])

print(strs[7])

Explanation:

Given

[tex]String = "doghouse"[/tex]

Required

Print h, e and e.

Let the variable name be strs.

So, we have:

[tex]strs = "doghouse"[/tex]

The index of h is 3.

So,

print(strs[4]) will print h

Similarly,

The index of e is 7.

So,

print(strs[7]) will print e

So, the code to print h, e and e is:

strs = "doghouse"

print(strs[4])

print(strs[7])

print(strs[7])

what do you understand by statistic​

Answers

Statistics is the study and manipulation of data, including methods for data collection, evaluation, analysis, and interpretation.

Describe statistics using an example.

Finding out how many people in a town watch TV relative to the overall population of the town is an example of statistical analysis. Here, the small group of individuals drawn from the population is referred to as the sample.

What are types and statistics?

Statistics is a technique for interpreting, analyzing, and summarizing data in mathematics. In light of these characteristics, the various statistical types are divided into: Statistics that are descriptive and inferential. We analyze and understand data based on how it is presented, such as using pie charts, bar graphs, or tables.

To know more about statistics visit:-

https://brainly.com/question/29093686

#SPJ1

If You're is in credit card debt, why can't you just say your card was stolen so you can avoid the debt.

Answers

You can not claim this because most times credit card issuers will be able to match purchases and charges to your location, ex stores around you, online purchases sent to your location.
because they can see literally everything you do with your card, they monitor everything

gawain sa pagkatuto bilang 1 isipin mong ikaw ay dsa isang patimpalak sa pagsulat ng sanaysay sa inyong paaralan at binigyan ka ng isang form na dapat mong punan ng impormasyon tungkol sa iyong sarili. punan mo itong wastong impormasyon brainly .

Answers

Answer:

Isang pangalan ngayon at kailan ang sagot thank you ❤️❤️❤️❤️

17. Which of the following is NOT a contributing factor to the lasting popularity of League of Legends?
a) The game is free
b) Professional gamers can compete in televised tournaments that award cash prizes
c) Players can customize the characters and their behavior
d) Simple graphics and visuals that don’t distract from the goal of the game

Answers

Answer:

c?

Explanation:

how do I modify objects in power point 2016 for an assignment

Answers

Answer:

PowerPoint gives you pretty good editing control over shapes you insert into a presentation. ...

Once you've selected your shape, you'll notice a new “Shape Format” tab appear. ...

Advertisement. ...

A drop-down menu will appear. ...

Now, to change the shape, click and drag the black edit points to the desired location.

An organization has hired a new remote workforce. Many new employees are reporting that they are unable to access the shared network resources while traveling. They need to be able to travel to and from different locations on a weekly basis. Shared offices are retained at the headquarters location. The remote workforce will have identical file and system access requirements, and must also be able to log in to the headquarters location remotely. Which of the following BEST represent how the remote employees should have been set up initially?

a. User-based access control
b. Shared accounts
c. Group-based access control
d. Roaming profiles
e. Individual accounts

Answers

Answer:

A

Explanation:

Ez put me as brainlist

Which learners like to be outside and are good at preservation, conservation, and organizing a living area?

Answers

A naturalistic learner likes to be outside and is good at preservation, conservation, and organizing a living area The correct option is a.

What is a naturalistic learner?

Naturalistic Learners are students who have strengths in intelligence related to nature. They may be highly connected to nature in many ways: They may have a deep love of plants, animals, people, rocks, nature, being outdoors, camping, hiking, rock climbing, biology, astrology, dinosaurs, etc

Naturalistic learners enjoy nature and being outside, as the name suggests. They learn best outside and can easily connect with concepts centered on plants, animals, and the environment.

Therefore, the correct option is a, naturalistic learner.

To learn more about naturalistic learner, visit here:

https://brainly.com/question/8233227

#SPJ1

The question is incomplete. Your most probably complete question is given below:

naturalistic learner

kinesthetic learners

visual learners

aural Learners

If an image has only 4 colors, how many bits are necessary to represent one pixel’s color? Describe a new custom encoding that uses fewer bits to represent each color in the image. What is your encoding for each color? If you were to re-encode this image using your new encoding, how many bits would you save when compared to the 24 bit RGB encoding?

Answers

Answer:

1) 2 bits 2) shown in explanation 3) shown in explanation 4) 22 bits per pixel (2.75 bytes)

Explanation:

As a bit is one of two states, 1 or 0, 2 bits is sufficient to represent 4 colors:

00 = color 1

01 = color 2,

10 = color 3,

11 = color 4

This would be the custom type of encoding for that specific image as it only uses 4 colors.

Now to calculate the amount of memory saved, which is quite simple:

24-2=22

So you Would save 22 bits per pixel or 2.75 bytes per pixel.

RGB is a colour complementary wherein the main light colors of red, green, and blue are coupled in distinct ways of representing a range of colors. It uses to design is named again for preliminary colors red, blue and green of 3 primary additive color schemes.

Following are the solution to the given question:

Calculating the number of total bits which is required:

          [tex]\bold{= \log_2\ \text{(total number of colors)}}\\\\\bold{= \log_2\ (4)}\\\\\bold{= 2}[/tex]

Because only 4 colors seem to be prevalent, we could have the very next global color encoding:

             [tex]\to \bold{ Black = 00}\\\\\to \bold{White= 01}\\\\\to \bold{Red= 10}\\\\\to \bold{Blue= 11}\\[/tex]

So, the number of total bits through the image:

              [tex]\to \bold{= (17 \times 20) \times 24} \ \bold{= 8160}[/tex]  

          The number of total bits for the picture now is custom encoded                                  

            [tex]\to \bold{= (17 \times 20) \times 2} \ \bold{= 680}[/tex]

            Calculating the percentage:

               [tex]\bold{= \frac{\text{(original bits - new bits)} \times 100}{\text{original bits}}}\\\\\bold{= \frac{(8160 - 680) \times 100}{8160}}\\\\\bold{= \frac{7480 \times 100}{8160}}\\\\\bold{= \frac{748000}{8160}}\\\\\bold{= 91.67\%}[/tex]

So, the final answer is "2,00,01,10,11, and 91.67%"

Note:

Please find the complete question in the attached file.

Learn more:

brainly.com/question/20796198

Identifying How to Print a Record on One Page
Which property ensures that all of the details for a record will be printed on the same page, instead of being broken
up between two pages during printing?
O the Control Source property
the Force New Page property
O the Keep Together property
o the Page Break property

Answers

Answer:

C) The Keep Together Property

Explanation:

Will mark brainliest if correct!
Code to be written in python

A deferred annuity is an annuity which delays its payouts. This means that the payouts do not start until after a certain duration. Notice that a deferred annuity is just a deposit at the start, followed by an annuity. Your task is to define a Higher-order Function that returns a function that takes in a given interest rate and outputs the amount of money that is left in a deferred annuity.

Define a function new_balance(principal, gap, payout, duration) that returns a single-parameter function which takes in a monthly interest rate and outputs the balance in a deferred annuity. gap is the duration in months before the first payment, payout is monthly and duration is just the total number of payouts.

Hint: Note that duration specifies the number of payouts after the deferment, and not the total duration of the deferred annuity.

def new_balance(principal, gap, payout, duration):
# Complete the function
return


# e.g.
# test_balance = new_balance(1000, 2, 100, 2)
# result = test_balance(0.1)

Test Case:
new_balance(1000, 2, 100, 2)(0.1) 1121.0

Answers

Answer:

def new_balance(principal, gap, payout, duration):

   def calculate_balance(interest_rate):

       balance = principal

       for i in range(gap):

           balance *= (1 + interest_rate/12)

       for i in range(duration):

           balance *= (1 + interest_rate/12)

           balance -= payout

       return balance

   return calculate_balance

Explanation:

Answer:

def new_balance(principal, gap, payout, duration):

   # convert monetary amounts to cents

   principal_cents = principal * 100

   payout_cents = payout * 100

   

   def balance(rate):

       # calculate the interest earned during the deferment period in cents

       interest_cents = principal_cents * (1 + rate) ** gap - principal_cents

       # calculate the balance after the first payout in cents

       balance_cents = interest_cents + principal_cents - payout_cents

       # loop through the remaining payouts, calculating the balance after each one in cents

       for i in range(duration - 1):

           balance_cents = balance_cents * (1 + rate) - payout_cents

       # convert the balance back to dollars and round it to the nearest cent

       balance_dollars = round(balance_cents / 100)

       return balance_dollars

   return balance

test_balance = new_balance(1000, 2, 100, 2)

result = test_balance(0.1)

print(float(result))

The user is able to input grades

and their weights, and calculates the overall final mark. The program should also output what you need to achieve on a specific assessment to achieve a desired overall mark. The program should be able to account for multiple courses as well. Lists are allowed.

Name of person
Number of courses
Course ID
Grades and Weights in various categories (Homework, Quiz, and Tests)
Enter grades until -1 is entered for each category
Final Grade before exam
Calculate to get a desired mark (using final exam)
Output all courses

Answers

Answer:

Here is an example of how you could write a program to perform the tasks described:

# Store the student's name and number of courses

name = input("Enter the student's name: ")

num_courses = int(input("Enter the number of courses: "))

# Create an empty list to store the course data

courses = []

# Loop through each course

for i in range(num_courses):

   # Input the course ID and initialize the total grade to 0

   course_id = input("Enter the course ID: ")

   total_grade = 0

   

   # Input the grades and weights for each category

   print("Enter grades and weights for each category (enter -1 to finish)")

   while True:

       category = input("Enter the category (homework, quiz, test): ")

       if category == "-1":

           break

       grade = int(input("Enter the grade: "))

       weight = int(input("Enter the weight: "))

       

       # Calculate the contribution of this category to the total grade

       total_grade += grade * weight

       

   # Store the course data in a dictionary and add it to the list

   course_data = {

       "id": course_id,

       "grade": total_grade

   }

   courses.append(course_data)

   

# Input the final grade before the exam

final_grade_before_exam = int(input("Enter the final grade before the exam: "))

Explain afew of the different ways in which computers can be categorised

Answers

Computers are classed in a variety of ways, including size, function, and processing capacity.

if there is an apple logo on my computer what operating system does it run on

Answers

Answer:Mac OS if there is a apple logo

Mac OS to run off of the apple logo

Workstations are usually applied for scientific, mathematical, and engineering calculations and computer aided-design and computer aided- manufacturing. a. False b. True ​

Answers

Workstations are usually applied for scientific, mathematical, and engineering calculations and computer aided-design and computer aided- manufacturing is True

What is Workstations?

Workstations are specialized computers that are designed for high-performance and resource-intensive tasks such as scientific, mathematical, and engineering calculations, computer-aided design (CAD), and computer-aided manufacturing (CAM).

Therefore, They typically have faster processors, more memory, and better graphics capabilities than general-purpose computers, which allows them to handle the complex tasks required in these fields.

Learn more about Workstations from

https://brainly.com/question/9958445

#SPJ1

what is fruit nursery?​

Answers

A place where young plants are produced through different ways is a nursery. The main work of nursery is to supply young plants and seeds for cultivation purposes for both fruits and vegetables. ... An appropriate environment for germination of seed. The nursery is also very useful for purpose of vegetation propagation.

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

➨ Fruit Nursery

A Place where young plants and trees are grown for sale or for planting elsewhere is known as nursery. From this definition you can generate the definition of fruit nursery as well!

So, fruit nursery is a place where the local wild fruit seed is sown to grow seedlings. Apart from fruit nursery there are various kind of nursery

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

MTBF is a measurement of

A) the speed at which a storage device can read and write data
B) the number of digits used to store a computer file
C) the average length of a time a storage device can reliably hold data without it beginning to degrade
D) the average length of time between failures on a device

Answers

MTBF is a measurement of the average length of time between failures on a device. Thus, the correct option for this question is D.

What is MTBF in computers?

MTBF stands for Mean time between failures. It is often utilized in order to measure the overall failure rates, for both repairable and replaceable/non-repairable products.

It governs the simplest equation for mean time between failure. It is as follows:

MTBF = total operational uptime between failures/number of failures.

It is the predicted elapsed time between inherent failures of a mechanical or electronic system during the normal functioning of the computer system in order to detect an error.

Therefore, MTBF is a measurement of the average length of time between failures on a device. Thus, the correct option for this question is D.

To learn more about MTBF, refer to the link:

https://brainly.com/question/22231226

#SPJ1

Code to be written in python:
Correct answer will be automatically awarded the brainliest!

Since you now have a good understanding of the new situation, write a new num_of_paths function to get the number of ways out. The function should take in a map of maze that Yee Sian sent to you and return the result as an integer. The map is a tuple of n tuples, each with m values. The values inside the tuple are either 0 or 1. So maze[i][j] will tell you what's in cell (i, j) and 0 stands for a bomb in that cell.
For example, this is the maze we saw in the previous question:

((1, 1, 1, 1, 1, 1, 1, 1, 0, 1),
(1, 0, 0, 1, 1, 1, 0, 0, 1, 1),
(0, 1, 1, 1, 0, 0, 1, 1, 1, 0),
(1, 1, 0, 1, 1, 1, 1, 0, 1, 1),
(0, 1, 0, 1, 0, 0, 1, 0, 1, 0),
(1, 0, 1, 1, 1, 1, 0, 1, 1, 1),
(0, 1, 1, 1, 1, 1, 1, 1, 1, 0),
(1, 0, 1, 0, 0, 1, 1, 0, 1, 1),
(1, 0, 1, 1, 1, 0, 1, 0, 1, 0),
(1, 1, 0, 1, 0, 1, 0, 1, 1, 1))
Note: You should be using dynamic programming to pass time limitation test.

Hint: You might find the following algorithm useful:

Initialize an empty table (dictionary), get the number of rows n and number of columns m.
Fill in the first row. For j in range m:
2.1 If maze[0][j] is safe, set table[(0, j)] to be 1 because there's one way to go there.
2.2 If maze[0][j] has a bomb, set table[(0, k)] where k >= j to be 0. Since one cell is broken along the way, all following cells (in the first row) cannot be reached.
Fill in the first column. For i in range n:
3.1 If maze[i][0] is safe, set table[(i, 0)] to be 1 because there's one way to go there.
3.2 If maze[i][0] has a bomb, set table[(i, 0)] and all cells under it to be 0. The reason is same as for the first row.

Main dynamic programming procedure - fill in the rest of the table.
If maze[i][j] has a bomb, set table[(i, j)] = 0.
Otherwise, table[(i, j)] = table[(i - 1, j)] + table[(i, j - 1)]
Return table[(n - 1, m - 1)]

Incomplete code:

def num_of_paths(maze):
# your code here

# Do NOT modify
maze1 = ((1, 1, 1, 1, 1, 1, 1, 1, 0, 1),
(1, 0, 0, 1, 1, 1, 0, 0, 1, 1),
(0, 1, 1, 1, 0, 0, 1, 1, 1, 0),
(1, 1, 0, 1, 1, 1, 1, 0, 1, 1),
(0, 1, 0, 1, 0, 0, 1, 0, 1, 0),
(1, 0, 1, 1, 1, 1, 0, 1, 1, 1),
(1, 1, 0, 1, 0, 1, 0, 0, 1, 1),
(0, 1, 1, 1, 1, 1, 1, 1, 1, 0),
(1, 0, 1, 0, 0, 1, 1, 0, 1, 1),
(1, 0, 1, 1, 1, 0, 1, 0, 1, 0),
(1, 1, 0, 1, 0, 1, 0, 1, 1, 1))


maze2 = ((1, 1, 1, 1, 1, 1, 1, 1, 1),
(1, 1, 1, 1, 1, 1, 1, 1, 1),
(1, 1, 1, 1, 1, 1, 1, 1, 1),
(1, 1, 1, 1, 1, 1, 1, 1, 1),
(1, 1, 1, 1, 1, 1, 1, 1, 1),
(1, 1, 1, 1, 1, 1, 1, 1, 1),
(1, 1, 1, 1, 1, 1, 1, 1, 1))

maze3 = ((1, 0, 1, 1),
(1, 0, 1, 1),
(1, 0, 1, 1),
(1, 0, 1, 1),
(1, 0, 1, 0),
(1, 0, 0, 1))

Test Cases:
num_of_paths(maze1) 2
num_of_paths(maze2) 3003
num_of_paths(maze3) 0

Answers

Here is the completed num_of_paths function:

def num_of_paths(maze):
# Initialize an empty table (dictionary)
table = {}
# Get the number of rows and number of columns
n = len(maze)
m = len(maze[0])

# Fill in the first row
for j in range(m):
# If maze[0][j] is safe, set table[(0, j)] to be 1 because there's one way to go there
if maze[0][j] == 0:
table[(0, j)] = 1
# If maze[0][j] has a bomb, set table[(0, k)] where k >= j to be 0.
# Since one cell is broken along the way, all following cells (in the first row) cannot be reached
else:
for k in range(j, m):
table[(0, k)] = 0
break

# Fill in the first column
for i in range(n):
# If maze[i][0] is safe, set table[(i, 0)] to be 1 because there's one way to go there
if maze[i][0] == 0:
table[(i, 0)] = 1
# If maze[i][0] has a bomb, set table[(i, 0)] and all cells under it to be 0.
# The reason is same as for the first row
else:
for k in range(i, n):
table[(k, 0)] = 0
break

# Main dynamic programming procedure - fill in the rest of the table
for i in range(1, n):
for j in range(1, m):
# If maze[i][j] has a bomb, set table[(i, j)] = 0
if maze[i][j] == 1:
table[(i, j)] = 0
# Otherwise, table[(i, j)] = table[(i - 1, j)] + table[(i, j - 1)]
else:
table[(i, j)] = table[(i - 1, j)] + table[(i, j - 1)]

# Return table[(n - 1, m - 1)]
return table[(n - 1, m - 1)]

You can test the function using the following code:

# Test maze1
print(num_of_paths(maze1) )

# Expected output: 2

# Test maze2
print (num_of_paths(maze2) )

# Expected output: 1

NOTE: I can also provide a picture of the code (2)

Specifications and Cloud Service Providers will be given. (a) You have to find the best provider (b) Determine the cost using THREE BIG cloud providers in the world (c) In case of any failure how you handle.

Answers

Your team has a unified view of every customer, from their initial click to their final call, thanks to Service Cloud. By viewing all customer information and interactions on one screen, handling time can be decreased.

Who are the top three providers of cloud services?

The three cloud service providers with the greatest market shares—Web Services (AWS), Azure, and Cloud Platform (GCP)—acquire approximately 65% of the money spent on cloud infrastructure services.

Which services do cloud service providers offer in total?

Cloud computing refers to the delivery of services including networking, storage, servers, and databases over the internet. It is a novel approach to resource provisioning, application staging, and platform-agnostic user access to services.

to know more about Specifications and Cloud Service here:

brainly.com/question/29707159

#SPJ1

Apply _____ to help readers spot trends and patterns in data.Immersive Reader
(1 Point)

wide margins on a printout

conditional formatting

gridlines to the worksheet

a theme to the worksheet

Answers

Answer: conditional formatting

Explanation:

Conditional formatting is typically seen in spreadsheet applications and it enables one to be able to apply formatting to cells which meet s particular criteria.

It can be used to highlight data or information and also enable the readers to spot trends and patterns in data.

, emphasize, or differentiate among data and information stored in a

Other Questions
PLEASE HELP ME how do wildfires create conditions that can lead to mudslides? Which of the following sets of events cause population size to increase? *1 pointa) Emigration and deathsb) Emigration and birthsc) Immigration and deathsd) Immigration and births What makes mollusks unique? Please answer I really need help Josephine wrote the numbers 1-100 and placed them in a bag.If she selects a number without looking what is the probability that the number is greater than 78 Help me out with this science question please. Pls help question 9,10 and 11. And can u explain or show how u make the equation ? What is the 2 smallest city in the world? Mesosaurus was a freshwater reptile whose fossil was found in the northwest part of South America and __________. Alfred Wegener used the placement of this fossil as scientific proof of his continental drift theory. A third-grade student is asked to find the best estimated answer for the problem below by rounding to the nearest ten. 162 287 395 The student gets an answer of 840. Which of the following best describes the student's error The market for wheat is initially in equilibrium. If workers in the wheat industry are successful in negotiating higher wages we would expect equilibrium prices to ______. Una tribu de indios observa que la manada de bfalos del territorio donde se han instalado se reduce segn una funcin de decrecimiento exponencial dada por f(x)=kax. Hace 12 lunas contabilizaron 1944 bfalos y actualmente hay 1296 bfalos en la manada. Si se mantiene el decrecimiento exponencial, calcular dentro de cuntas lunas tendrn que abandonar la pradera, sabiendo que esa tribu cambia de territorio cuando quedan menos de de 100 bfalos. A harh drought killed ome of the farm family corn and everal head of it cattle. Where on the production poibilitie curve could you poition a point to reflect thee circumtance? How does erosion by runoff differ from stream erosion? brainliest for best answer and i will give fr..ee points in my next question so get readyHow have Sojourner Truth and Malala Yousafzai worked to create change in society? In a minimum of three sentences, support with evidence from both speeches and explain how both women worked to create change in society. John Smith discussed one colonist's act of killing and "powdering" his wife to illustrate ...A. the cannibalistic nature of the PowhatansB. the acceptable solution to famineC. the desperation of the famished colonistsD. colonists' punishments for heresy Someone please help me Ill give out brainliest please dont answer if you dont know will give 33 poits and will be marked brainliest please solve this and post answer is it and explain how you got it. There are 4 types of computers: supercomputers, ________ computers, mid-range computers, and personal computers. (hint: m_____e) Please help me with this work please.