In your role as network administrator you need to make sure the branch manager can access the network from the PC in her office. The requirements specify that you: Use a network device that provides wireless access to the network for her mobile device. Connect the network device to the Ethernet port in the wall plate. Use a wired connection from the PC to the network device. Use cables that support Gigabit Ethernet.

Answers

Answer 1

Answer:

In your role as network administrator you need to make sure the branch mana... ... The Branch Manager Can Access The Network From The PC In Her Office. ... Use A Network Device That Provides Wireless Access To The Network For Her Mobile Device. 2. ... Connect the network device to the Ethernet port in the wall plate.

Explanation:

Answer 2

A network administers are those who are responsible for the day-to-day operations and management of the network. Your role is to organize the support the organization. It networks systems, need to manage the LAN, MANs, etc.

When the branch manager ant to have a network and PC in her office you need to make sure that the need that specific to your use by providing the wired connection from the PC to the network device.

Hence the option C is correct.

Learn more about the network administrator you need to make.

brainly.com/question/24240647.


Related Questions

¿sharpness or unbreaking people?​

Answers

Really hard decision, but ultimately, it depends on your personal prefrence. I would choose un breakin, however, for some people if you want to kill mobs quicker, than sharpness would be the way to go.

Construct a SQL query that displays a list of colleges, their sity/state, the accrediting agency, and whether or not the school is distance only. Only show the first 10 records.

Answers

Answer:

SELECT college, city_state, accre_agency, distance LIMIT 10

Explanation:

Given

Table name: College

See attachment for table

Required

Retrieve top 10 college, state, agency and school distance from the table

To retrieve from a table, we make use of the SELECT query

The select statement is then followed by the columns to be selected (separated by comma (,))

So, we have:

SELECT college, city_state, accre_agency, distance

From the question, we are to select only first 10 records.

This is achieved using the LIMIT clause

i.e. LIMIT 10 for first 10

So, the complete query is:

SELECT college, city_state, accre_agency, distance LIMIT 10

A database designer wants to create three tables: Supplier, Product, and Country. The Supplier table has a Countryld column with values that must appear in the Country table's Countryld column. The Product table has an auto-increment column.
Which table's CREATE TABLE statement(s) must specify a FOREIGN KEY?
a. Supplier
b. Product
c. Country
d. Supplier and Country

Answers

Answer:

(a) Supplier

Explanation:

In database design, two tables are linked together using a FOREIGN KEY. A foreign key is formed from one or more columns of one table that reference or match another key (often called a primary key) in another table. In other words, when a column or a combination of columns on one table points to a primary key of another table, the column(s) will specify the foreign key.

PS: A primary key is used to make each entry of a table unique.

In the given tables - Supplier, Product, Country -  since the Supplier table has a column called CountryId referencing the CountryId column of the Country table, then CountryId is a primary key in Country table but a foreign key in Supplier table.

Therefore, the CREATE TABLE statement(s) of the Supplier table must specify a foreign key.

A database management system often reads and writes data in a database, and makes sure there is consistency and availability. The supplier table's CREATE TABLE statement(s) must specify a FOREIGN KEY.

The database system often guards data when a lot of transactions is taking place.   it often hinders multiple transactions with the same data at the same time.

The Select SQL statement does not alter any database data. A supplier database is made up of different list of service, product or materials providers who can meet orders quickly.

Learn more from

https://brainly.com/question/15281828

what are the events?

Answers

Answer:

a thing that happens or takes place, especially one of importance.

In the following cell, we've loaded the text of Pride and Prejudice by Jane Austen, split it into individual words, and stored these words in an array p_and_p_words. Using a for loop, assign longer_than_five to the number of words in the novel that are more than 5 letters long. Hint: You can find the number of letters in a word with the len function.

Answers

Answer:

Explanation:

Since the array is not provided, I created a Python function that takes in the array and loops through it counting all of the words that are longer than 5. Then it returns the variable longer_than_five. To test this function I created an array of words based on the synapse of Pride and Prejudice. The output can be seen in the attached picture below.

def countWords(p_and_p_words):

   longer_than_five = 0

   for word in p_and_p_words:

       if len(word) > 5:

           longer_than_five += 1

   return longer_than_five

A digital computer has a memory unit with 16 bits per word. The instruction set consists of 72 different operations. All instructions have an operation code part(opcode) and an address part(allowing for only one address). Each instruction is stored in one word of memory.

Required:
a. How many bits are needed for the opcode?
b. How many bits are left for the address part of the instruction?
c. What is the maximum allowable size for memory?
d. What is the largest unsigned binary number that can be accommodated in one word of memory?

Answers

Answer:

a. 7 bits b. 9 bits c. 1 kB d. 2¹⁶ - 1

Explanation:

a. How many bits are needed for the opcode?

Since there are 72 different operations, we require the number of bits that would contain 72 different operations. So, 2ⁿ ≥ 72

72 = 64 + 8 = 2⁶ + 8

Since n must be an integer value, the closest value of n that would contain 72 different operations is n = 7. So, 2⁷ = 128

So, we require 7 bits for the opcode.

b. How many bits are left for the address part of the instruction?

bits left = bits per word - opcode bit = 16 - 7 = 9 bits

c. What is the maximum allowable size for memory?

Since there are going to be 2⁹ bits to addresses each word and 16 bits  for each word, the maximum allowable size for memory is thus 2⁹ × 16 = 512 × 16 = 8192 bits.

We convert this to bytes

8192 bits × 1 byte/8 bits = 1024 bytes = 1 kB

d. What is the largest unsigned binary number that can be accommodated in one word of memory?

Since the number go from 0 to 2¹⁶, the largest unsigned binary number that can be accommodated in one word of memory is thus

2¹⁶ - 1

what is the mean of debugging​

Answers

Answer:

the process of identifying and removing errors from computer hardware or software

Explanation:

Essentially just fixing programming errors, mainly in coding or software

What does the following code print?
public class { public static void main(String[] args) { int x=5 ,y = 10; if (x>5 && y>=2) System.out.println("Class 1"); else if (x<14 || y>5) System.out.println(" Class 2"); else System.out.println(" Class 3"); }// end of main } // end of class.

Answers

Answer:

It throws an error.

the public class needs a name.

like this:

public class G{ public static void main(String[] args) {

   int x=5 , y = 10;

   if (x>5 && y>=2) System.out.println("Class 1");

   else if (x<14 || y>5) System.out.println(" Class 2");

   else System.out.println(" Class 3"); }// end of main

   }

if you give the class a name and format it, you get:

Class 2

Explanation:

Why is it best to serve cheese with plain breads or crackers?

Answers

Answer:Here's why it works: Club crackers are engineered to be the perfect amount of buttery and salty, which means that, sometimes, they're all you can taste if paired with the wrong cheese.

Explanation:

Suppose that you are asked to modify the Stack class to add a new operation max() that returns the current maximum of the stack comparable objects. Assume that pop and push operations are currently implemented using array a as follows, where item is a String and n is the size of the stack. Note: if x andy are objects of the same type, use x.compareTo(y) to compare the objects x and y public void push String item ) { [n++] = iten; } public String pop { return al--n]; } Implement the max operation in two ways, by writing a new method using array a (in 8.1), or updating push and pop methods to track max as the stack is changed (in 8.2). Q8.1 Implement method maxi 5 Points Write a method max() using Out) space and Oin) running time. public String max() {...} Enter your answer here Q8.2 Update push() and popo 5 Points Write a method max() using On) space and 011) run time. You may update the push and pop methods as needed public void push {...} public String pop() {...} public String max() {...}

Answers

Answer:

Following are the code to the given points:

Explanation:

For point 8.1:

public String max()//defining a method max

{

   String maxVal=null;//defining a string variable that holds a value

   for(int x=0;x<n;x++)

   {

       if(maxVal==null || a[i].compareTo(maxVal)>0)//defining if blok to comare the value

       {

           maxVal=a[i];//holding value in maxVal variable

       }

   }

   return maxVal;//return maxVal variable value

}

For point 8.2:

public void push(String item)//defining a method push that accepts item value in a parameter

{

       a[n]=item;//defining an array to hold item value

       if(n==0 || item.compareTo(maxVals[n-1])>0)//use if to comare item value

       {

               maxVals[n]=item;//holding item value in maxVals variable

       }

       else

       {

               maxVals[n]=maxVals[n-1];//decreasing the maxVals value

       }

       n++;//incrementing n value

}

public String pop()//defining a method pop

{

       return a[--n];//use return value

}

public String max()//defining a method max

{

       return maxVals[n-1];//return max value

}

In the first point, the max method is declared that compares the string and returns its max value.In the second point, the push, pop, and max method are declared that works with their respective names like insert, remove and find max and after that, they return its value.
Other Questions
In which type of essay would you find the following sentence? Organizing coupons helps to save both money and time. A. personal - describes an experience or event in someone's life B. expository explains or gives information C. persuasive attempts to convince readers to think or act in a certain way In the diagram below, what is the measure of angle 1? An individual would have the most economics and political freedom is a: the perimeter of a rectangle parking lot is 322 m. if the length of the parking lot is 86 m, what is the width Which pattem of wind flow is most likely to occur during a hot summer season in a coastal location?From land to sea, toward areas of lower air pressure.B.From sea to land, toward areas of lower air pressureFrom land to sea, toward areas of higher air pressure.DFrom sea to land, toward areas of higher air pressure What is the largest reservoirfor carbon?A. marine environmentsB. atmosphereC. producers Lines AB and CD are perpendicular to each other. If 3 measures (4x + 4), and 4 measures 26, what is the value of x?Please justify your answer, I really don't understand it. List the Boolean operators. WILL GIVE BRAINLIESTWrite the rough draft of your fairy tale. You may copy and paste the accented and special characters from this list if needed: , , , , , , , , , , , , , , Your rough draft should be written in complete sentences in Spanish and include the following requirements: (30 points)a classic fairy tale phrase to start the talea regular or irregular superlative adjective to describe your main charactera regular or irregular verb in the imperfect tense to share where your main character livedan -simo or -sima superlative adjective to describe the other character from your fairy talea regular or irregular verb in the imperfect tense to describe what the characters dida classic fairy tale phrase to end the talevocabulary words and expressions learned in the course FBISD bought 12 new chairs for $28.99 each, and 8 tables for $45.50 each. What is the total price, including 8.25% sales tax. A)$772.39B)$711.88C)$347.88D)$60.51Please hurryyyyy please On February 28, 2009, $5,000,000 of 6%, 10-year bonds payable, dated December 31, 2008, are issued. Interest on the bonds is payable semiannually each June 30 and December 31. If the total amount received (including accrued interest) by the issuing corporation is $5,060,000, which of the following is correct?a) The bonds were issued at a premium.b) The amount of cash paid to bondholders on the next interest date, June 30, 2009, is $300,000.c) The amount of cash paid to bondholders on the next interest date, June 30, 2009, is $50,000.d) The bonds were issued at a discount. Your living room is carpeted but you have allergies, and need to cover the 9 points floor with hardwood panel flooring. The panel flooring at Lowes cost $3.19 per square foot. (scale: 1m = 3.28 ft) Hint: Each unit contains 32.29 square feet. How much will it cost to purchase the flooring panels? (round to the nearest cent) HELPPPPPPPP State two (2) characteristics of enzyme. Why to solve this question Venus filium, Aeneam", amavit, itaque magnum lovem (Jupiter, acc. sing.) de fatoAeneae* rogavit. Iuppiter* tum dixit, "Dea, noli timere*, Fata* immota manebunt. Tuusfilius erit tutus, et Aeneae* imperium perpetuum donabo."Translate paragraph from latin to english Please help!!!Select the correct answer Question 7 of 10These box plots show daily low temperatures for a sample of days in twodifferent towns.Degrees (F)Which statement is the most appropriate comparison of the spreads? Bob's gift shop sold a record number of cards for Mother's Day. One salesman sold 24cards, which was 20% of the cards sold for Mother's Day. How many cards were soldfor Mother's Day? Circle the letter of the words that express a relationship most like the relationship of the pair of words in CAPITAL LETTERSNOMADIC: WORKERSA. cultivated : ploughedB. cattle : ranchC. permanent : farmersD. wandering : traveling PLS HELP!! GIVING BRAINLIEST!! :((Ian Uses The Rule Add 1/2 Then Multiply By 2 Starting From 0