Dutermine the number of hosts in each of the subnet in the network shown in Figure ?​

Answers

Answer 1

Answer:

Neither answer so far is correct. Assuming you are starting with a class B address, you have 10 bits for subnets. 2^10 is 1024. So 1024 subnets are available.

Each subnet will have 6 bits for hosts. 2^6 = 64. We subtract 2 for the first and last address in the subnet, so 62 host addresses are available per subnet.

Explanation:

there is the example

with detail in image

Dutermine The Number Of Hosts In Each Of The Subnet In The Network Shown In Figure ?
Dutermine The Number Of Hosts In Each Of The Subnet In The Network Shown In Figure ?
Dutermine The Number Of Hosts In Each Of The Subnet In The Network Shown In Figure ?
Dutermine The Number Of Hosts In Each Of The Subnet In The Network Shown In Figure ?

Related Questions

Todd Wallace works as the chief knowledge officer for Pennsylvania Lumber Company. He has been given the responsibility to create a product or service that will bring an added value to its customers to increase the company's revenue. Todd determines that the best value he can add is by creating a service that offers free next day shipping on any order over $50. Where in the value chain is Todd adding value?

a. The primary value activity inbound logistics
b. The primary value activity marketing and sales
c. The primary levy outbound logistics

Answers

Answer:

c. The primary levy outbound logistics.

Explanation:

Todd Wallace has identified a marketing strategy and has introduced a levy on outbound logistics for its customers. It has introduced a campaign for its customer free shipping on an order of $50 or above.

quá trình xử lý dữ liệu (OSI) bên máy gởi, nhận có vẽ hình minh họa

Answers

Answer:

haywood is and best president for you me ravi in the a for and have to the a and should you of lost

Write a C++ program which accepts the quantity of a product purchased and prints the amount to be paid by the customer.​

Answers

Answer:

firstly the exel program is very useful to costumer or to calculate by Microsoft. People use it to company or office. It works for make good commination

Design and Analyze an algorithm for the following problem,
Give pseudocode for your algorithm.
Prove that your algorithm is correct.
Give the recurrence relation for the running time for your algorithm.
Solve the recurrence relation.
Suppose you are given 3n marbles that look identical, with one special marble that weighs more than the other marbles. You are also given a balancing scale that takes two items (or sets of items) and compares their weights. Design and analyze a divide and conquer algorithm to find the heavy marble using the balancing scale at most n times.

Answers

Answer:

If you have 3n marbles, then you need at least n weighings to find the heavier marble.  

  Algorithm:-  

   Label all marbles from 1 to n.

Divide the marbles into three groups G1, G2, and G3 such 2 groups G1, and G2 are compared to every other employing a pan, and therefore the third group G3 is kept aside.

Condition 1- If G1>G2, If the special marble is one among the primary two groups that are being weighed,i.e., special marble is in G1.

Condition 2- If G2>G1, If the special marble in group 2, G2.

Condition 3- If G1=G2 If the primary two groups weigh equal, then special marble is present within the third group, G3.

Take the group containing special marble and perform the above steps 1,2,3,4 on it.

Keep repeating the above steps until, a gaggle of three marbles is obtained, and therefore the special marble is found from that group by performing steps 1,2,3,4 on the group.

Explanation:  

   Pseudocode:-  

function puzzle( G1, G2, G3)  

{  

Compare the values G1, G2  

if G1>G2  

return G1  

else if G2>G1  

return G2  

else  

return G3  

end of function puzzle  

}  

function main()  

{  

print prompt "Enter the value of n"  

Take the value of n from the user  

while(n != 0)  

{  

Create 3 groups/arrays each of size 3n-1  

G= puzzle( g1,g2,g3)  

n= 3n-1  

}  

print the value in G  

end of main  

}  

   Recurrence relation for the running time for the algorithm:-  

T (n) = 2T ( n1/3) + 1 with base T (3) = 1.,  

here n is the total number of marbles.  

We cannot apply the master theorem because of the cube root, so we draw the recursion tree.  

First, we determine the height of the tree; denote this by h. By observing the powers of the arguments in the tree, we can see that in order to get to the base case of n = 3, it must be that,  

n(1/2)h=3  

(1/3)h=logn(3) = log 3/ log n = 1/log n  

3h=log n  

Now, since we do a constant amount of work (1, specifically) at each node in the recursion tree, we note that at depth d in the recursion tree we do 3d total work. We can therefore write the sum over the tree as a geometric series as follows:  

[tex]T(n)= \sum_{d=0}^{log(logn)}3^d = (1-3^{log(log(n)+1)})/1-3)=(3^{log(log(n)+1)}-1)/2\\T (n) = 3 log (n)-1[/tex]  

Therefore,  

T (n) = Θ(log n).

Which of the following is a virtual space, used for internal communications, that allows employees to share files and work together?
O Intranet
O Internet
O Telnet
O World Wide Web

Answers

Uh the internet makes people be able to share files with each other and like talk and work together basically?

Answer: intranet

Intranet is run on local networks only, but it is created based on the world wide web.

What's the difference between repetition and selection control structure.​

Answers

Answer:

Selection statements test conditions and selectively execute code depending on the outcome of the test condition, whereas repetition statements repeat a set of statements till a test condition is satisfied.

Answer:

repetition control structure is the grouping of codes which are designed to repeat a set of of related statements whereas selection control structure performs different computations based on the result that is obtained after checking conditions

implementations
in c++ programming when finding lcm and gcd in c++​

Answers

Answer:

#include<iostream>

using namespace std;

int lcm(int m, int n) {

  int a;

  a = (m > n) ? m: n;

  while (true) {

     if (a % m == 0 && a % n == 0)

        return a;

        ++a;

  }

}

int gcd(int m, int n) {

  int r = 0, a, b;

  a = (m > n) ? m : n;

  b = (m < n) ? m : n;

  r = b;

  while (a % b != 0) {

     r = a % b;

     a = b;

     b = r;

  }

  return r;

}

int main(int argc, char **argv) {

  cout << "Enter the two numbers: ";

  int m, n;

  cin >> m >> n;

  cout << "The LCM of two numbers is: " << lcm(m, n) << endl;

  cout << "The GCD of two numbers is: " << gcd(m, n) << endl;  

  return 0;

}

Explanation:

Write a C# program named DoubleDecimalTest thatdeclares and displays two variables - a double and a decimal.Experiment by assigning the same constant value to each variable sothat the assignment to the double is legal but the assignment tothe decimal is not. In other words, when you leave the decimalassignment statement in the program, an error message should begenerated that indicates the value is outside the range of the typedecimal, but when you comment out the decimal assignment and itsoutput statement, the program should compile correctly.

Answers

Answer:

whatt is this na ni??

Explanation:

sihle bought half adozen KOO canned beans from a wholesale.how many cans did she get?​

Answers

Step 1: Divide 12 by 2(Since there is 12 in every dozen, half of 12 is 6)
12/2 = 6
Sihle will get 6 cans of beans from the wholesale.

What is 4÷15-18×27.6​

Answers

-496.53 I hope this help(sry if it’s wrong)

mention five features on the desktop screen​

Answers

Answer:

The Windows desktop has the following program access points:

Work area. The onscreen area where users can perform their work, as well as store programs, documents, and their shortcuts. ...

Start button. ...

Quick Launch. ...

Taskbar. ...

Deskbands. ...

Notification area.

Explanation:

With the GIS moving into the cloud, developers of enterprise applications based on SAP, Microsoft Office, SharePoint, MicroStrategy, IBM Cognos, and Microsoft Dynamics CRM are not using it to create a wide range of mobile applications.
a. True
b. False

Answers

Answer:

):

Explanation:

What is E-Commerce? Answer The Following. Pls Help Me​

Answers

Answer: Ecommerce, also known as electronic commerce or internet commerce, refers to the buying and selling of goods or services using the internet, and the transfer of money and data to execute these transactions.

Explanation: Brainelist Me :)

Suppose there is exactly one packet switch between a sending user and a receiving user. The transmission rates between the sending user and the switch and between the switch and the receiving user are R1 and R2, respectively. Assuming that the switch uses store-and-forward packet switching, what is the

Answers

Answer: Hello your question lacks some data below is the missing data

what is the total end-to-end delay to send a packet of length L? (Ignore queuing, propagation, and processing delay) extend to N-1 packet switches interconnected by N links with rates R1, R2, …, RN

answer:

L/R1 + L/R2

Explanation:

The sending host will begin to transmit at to

At ( t1 = L/R1 ) the entire packet will be received at the router because at this time the sending host will complete the transmission process  to the router.( No propagation delay )

At ( t2 = L/R2 ) the router completes transmission of the entire packet to the receiving host ( note : The transmission of the packet to the receiving host by the router starts at t1 hence No propagation delay is recorded. )

The C++ standard library provides code that’s organized into a. folders b. namespaces c. sublibraries d. none of the above

Answers

Answer:

Namespaces ( B )

Explanation:

The codes in the C++ standard library are organized into folders Known as  namespaces .

namespaces are general used to organize various codes into logical groups to avoid name collisions that may occur when there is the presence of multiple libraries in a code base.

You are in charge of five software development projects. The ‘characteristics’ of each of your projects are as follows:

• Project 1: Web-site for a local company. Relatively small system. Requirements are unclear and likely to change in the near future.

• Project 2: A very large embedded system whose requirements can be easily identified and are relatively stable.

• Project 3: A ‘standard’ business application. You have developed similar systems like this one in the past.

• Project 4: A relatively complex administrative system for one of the local hospitals. Some of the requirements seem to be pretty unclear, but all the requirements are stable.

• Project 5: A small real-time control system to be used for monitoring patients in a local hospital.

Consider the following software development approaches/models: waterfall, throw-away prototyping, evolutionary prototyping, component-based development, formal development. Which of the above approaches/models would you choose for each of your projects? Briefly explain your choices.

Answers

Pano po gagawen Jan?

In the future, will training
and education become
more or less desirable?

Answers

To young children and students it'll be less desirable as they just want to play, I mean this is a natural characteristic of children so there's nothing to blame on them, but to young adults like college students and also parents, it's likely to be more desirable as they want their children to have a bright future through studying hard and landing themselves in good jobs. however, to some parents they might find it less desirable as they do not want their children to have pressure or and form of stress since it might still be the strawberry generation in the future.

Lesssssssssssssssssss

What is this? pls answer if you know

Answers

Answer:

LV. 200

Explanation:

:::::::::::::::::/


Importance
computer
In the
printing industry​

Answers

Answer:

restate your question

Explanation:

What is the page table mainly for?

Answers

Answer: See explanation

Explanation:

A page table is used for the tracking and the location of different pages of a task in memory. It helps in showing the mapping of locations between the physical addresses and the virtual addresses.

A page table stores also has the page table entries and this is where the frame numbers are stored as well as the operational status.

Design and implement a program that manages coffees. First, implement an abstract class named Coffee. The Coffee class has three member variables: coffee type, price, and store name. The Coffee class has an abstract method name ingredient. Make sure to add all necessary setters and getters as well as other methods. The class Coffee implements an interface HowToMakeDrink. The interface has the following method: g

Answers

Answer:

interface HowToMakeDrink{

   public void ingredient();

   public void makeDrink();

}

class Coffee implements HowToMakeDrink{

   String type;

   double price;

   String name;

   public void ingredient(String ...items){

       for (String i : items){

           System.out.println('%s\n', i);

       }

   }

   public makeDrink(){

       System.out.println('Your '+ %s +' is ready', this.name);

   }

   public getType(){

       return this.type;

   }

   public getPrice(){

       return this.price;

   }

   public getName(){

       return this.name;

   }

   public setType(String type){

       this.type = type;

   }

   public setPrice(double price){

       this.price = price;

   }

   public setName(String name-){

       this.name = name;

   }

}

Explanation:

The Coffee class is used to implement the HowToMakeDrink interface. The class uses the set and get methods to assign and retrieve the values of the class variables. It so implements the ingredient and makeDrink methods of the required interface.

write a program to print the given number is prime or composit using do while loop​

Answers

Answer:There are 28 chocolate-covered peanuts in 1 ounce (oz). Jay bought a 62 oz. jar of chocolate-covered peanuts.

Problem:

audio

How many chocolate-covered peanuts were there in the jar that Jay bought?

Enter your answer in the box.

Explanation:There are 28 chocolate-covered peanuts in 1 ounce (oz). Jay bought a 62 oz. jar of chocolate-covered peanuts.

Problem:

audio

How many chocolate-covered peanuts were there in the jar that Jay bought?

Enter your answer in the box.

Which task is suitable for a manual process? Marvin’s software requires accurate, consistent testing. Yesenia's software requires, at most, one or two tests. Ahmad's software will be tested outside normal business hours. Braelyn’s software is subject to routine testing.

Answers

Answer:

The task that is suitable for a manual process is:

Yesenia's software requires, at most, one or two tests.

Explanation:

Manual testing of software involves a tester playing the end user's role to detect defects in the software.  In such a test, the tester applies most of the features embedded in the software to ensure correct processing and output.  Since Yesenia's software requires one or two tests, there is no need to automate the testing as a manual process will be economical.

Which technology do online storesusually use to present customized content?

Online stores usually
use _____ technology to present customized content.

Answers

Answer:

real time analytics technology

Explanation:

Online stores usually use real-time analytics technology to present customized content. Explanation: Real-time analytics is gaining popularity nowadays. It is basically the procedure of measuring and preparing the data as it enters the database


PLEASE HELP!!!

What is the next line?

>>> tupleC = (3, 8, 11, 8, 8, 11)
>>> tupleC.index(11)

O 3
О 0
O 2
O 1

Answers

The next line is 0___________________________


Explain the function of different flags in the 8086

Answers

Answer:

A flag is a piece of fabric (most often rectangular or quadrilateral) with a distinctive design and colours. It is used as a symbol, a signalling device, or for decoration.8086 has 16-bit flag register, and there are 9 valid flag bits.The FLAGS register is the status register in Intel x86 microprocessors that contains the current state of the processor. This register is 16 bits wide. Its successors, the EFLAGS and RFLAGS registers, are 32 bits and 64 bits wide, respectively. The wider registers retain compatibility with their smaller predecessors.

What is the biggest problem with technology today?

Answers

Answer:

Employee productivity measurements and too mich focus on automation.

What Service is an AWS service that helps you maintain application availability and enables you to automatically add or remove EC2 instances according to conditions you define

Answers

Answer:

AWS EC2 auto scaling

Explanation:

The Amazon EC2 auto scaling is the service provided by AWS which helps one to maintain the application availability and also to enable one to automatically add as well remove the EC2 instances as per the conditions one wishes for.

One can add the EC2 or remove it manually in a combination with the AWS auto scaling for the predictive scaling of the application. We can also use dynamic and the predictive scaling features of the EC2 Auto Scaling so as to add or remove the EC2 instances

If a program compiles fine, but it produces an incorrect result, then the program suffers from _______________.

Answers

In my answer I am making an assumption that there is no runtime error, if there is then the error is “a run-time error”.

The answer is the program suffers from a Logic Error

If a program compiles fine, but it produces an incorrect result, then the program suffers from Logic Error.

What is program?

A program has been the set of the instructions that the computer can follow that are written in a programming language. The size of the computer program affects the likelihood that an error may occur. To create an executable that a computer can run, a C program needs to be run through a C compiler. Programs are collections of instructions that a computer follows. Function is an ordered, reusable code unit.

When a program is syntactically sound but has a bug that is only discovered during program execution, it is said to have a runtime error. The Java compiler is unable to catch these errors during compilation; instead, the Java Virtual Machine (JVM) only notices them when the application is running. Runtime problems may occur when a website uses HTML code that is incompatible with a web browser's capabilities.

Therefore, if a program compiles fine, but it terminates abnormally at runtime, then the program suffers a runtime error.

To learn more about program, refer to the link below:

brainly.com/question/11023419

#SPJ2

This question is related to linked-list representation of disjoint sets. Consider two sets Sx and Sy that have 3 and 5 elements, respectively. A union (UNION(x,y)) of the sets Sx and Sy represented by x and y, respectively will perform _________________ update(s) of the attribute .next.

Answers

Answer:

A union (UNION(x,y)) of the sets Sx and Sy represented by x and y, respectively will perform ________4_________ update(s) of the attribute.

Explanation:

The UNION (x, y) disjoint-set data structure unites the dynamic sets that contain x and y, say Sx and Sy, into a new set.  It is called the union of the two sets. Before the union operation, the two sets are disjoint.  After the union operation, the representative of the resulting set is some member of Sx and Sy or either Sx or Sy. The sets Sx and Sy are then destroyed to remove them from the union collection S.  So, four operations are required.

Other Questions
Need help asap please and thank you Assuming two hikers begin at a trail start, which scenarios must be true based on the table? Check all that apply. Melissa and Corey started on different trails. Melissa hiked up the trail for a longer period of time than Corey. Melissa and Corey crossed paths between 60 and 90 minutes. Corey began his descent before Melissa. As Melissas time increased from 0 to 60 minutes, her elevation decreased. black wall street tulsa what did you think about what happened MathHelpWillGiveBrainlist :) The functions f(x) and g(x) are shown on the graph.f(x) = 11What is g(x)?10g(x) = ?f(x) = [X]10-510-5-10A. g(x) = 1 1 - 3B. g(x) = (x+31C. g(x) = \x{ + 3D. g(x) = 1x - 31 Minerals called ores are mined because they contain beautiful substances.Please select the best answer from the choices providedTOF Describe the scientific achievements of the Baroque era. How were they characteristic of the age? Select the correct answer.A sole proprietor is a business owner with _____.A. A limited liability companyB. An unincorporated businessC. Business partnersD. A commercial lease PLEASE HELP I NEED ANSWER Please help me I beg you, I dont understand and no one wants to help Theindicates where the next text that you type willappear. What is the missing number?38-2745110 12 3The missing number is... Please help with work shown (only if possible) Trak Corporation incurred the following costs while manufacturing its bicycles.Bicycle components $100,000 Advertising expense $45,000Depreciation on plant 60,000 Property taxes on plant 14,000Property taxes on store 7,500 Delivery expense 21,000Labor costs of assembly-line workers 110,000 Sales commissions 35,000Factory supplies used 13,000 Salaries paid to sales clerks 50,000(a) Identify each of the above costs as direct materials, direct labor, manufacturing overhead, or period costs.Bicycle components Trak Corporation incurred the following costs whil Direct LaborPeriod CostsDirect MaterialsManufacturing OverheadDepreciation on plant Trak Corporation incurred the following costs whil Direct MaterialsPeriod CostsManufacturing OverheadDirect LaborProperty taxes on store Trak Corporation incurred the following costs whil Direct MaterialsManufacturing OverheadPeriod CostsDirect LaborLabor costs of assembly-line workers Trak Corporation incurred the following costs whil Direct MaterialsManufacturing OverheadDirect LaborPeriod CostsFactory supplies used Trak Corporation incurred the following costs whil Period CostsManufacturing OverheadDirect MaterialsDirect LaborAdvertising expense Trak Corporation incurred the following costs whil Manufacturing OverheadDirect LaborPeriod CostsDirect MaterialsProperty taxes on plant Trak Corporation incurred the following costs whil Manufacturing OverheadDirect LaborPeriod CostsDirect MaterialsDelivery expense Trak Corporation incurred the following costs whil Direct MaterialsPeriod CostsManufacturing OverheadDirect LaborSales commissions Trak Corporation incurred the following costs whil Manufacturing OverheadPeriod CostsDirect LaborDirect Materials Which technique is used to create space within a work? *1 pForeground, Middle Ground, BackgroundOne Point Perspectiveall of the aboveNeed HELP ASAP!! Will give brainiest answer if questions 1-8 are answered Is this a function? Why would it be easier to get a department store card than to get a major brand credit card? It's for College and Career class please help ESTIONS1.Outline the importance of product development What mass of water can be heated from 45C to 70C by the addition of 875 Joules? Please I need this