what type of network architecture incorporates hardware and software components ?

Answers

Answer 1
Network architecture is the design of a computer network. It is a framework for the specification of a network's physical components and their functional organization and configuration, its operational principles and procedures, as well as communication protocols used.

In telecommunication, the specification of a network architecture may also include a detailed description of products and services delivered via a communications network, as well as detailed rate and billing structures under which services are compensated.

The network architecture of the Internet is predominantly expressed by its use of the Internet protocol suite, rather than a specific model for interconnecting networks or nodes in the network, or the usage of specific types of hardware links.

Related Questions

LANGUAGE IS PYTHON
9.8 LAB: Convert to binary

Write a program that takes in a positive integer as input, and outputs a string of 1's and 0's representing the integer in binary. For an integer x, the algorithm is:

As long as x is greater than 0
Output x modulo 2 (remainder is either 0 or 1)
Assign x with x divided by 2
Note: The above algorithm outputs the 0's and 1's in reverse order.

Ex: If the input is:

6
the output is:

011
6 in binary is 110; the algorithm outputs the bits in reverse.

Answers

The program illustrates the use of modulo operators

The modulo operator is used to return the remainder of a division.

The program in Python, where comments are used to explain each line is as follows:

#This imports the math module

import math

integer_value = int(input())

#This initializes the remainder to an empty string

remainder = ""

#This loop is repeated while the integer input is greater than or equal to 1

while integer_value>=1:

   #This calculates the remainder after the integer value is divided by 2

   remainder+=str(integer_value % 2)

   #This gets the floor division of the integer input by 2

   integer_value=math.floor(integer_value/2)

#This reverses the string

binary_equiv = remainder[::-1]

#This prints the binary equivalent

print(binary_equiv)

At the end of the program, the binary string is printed

Read more about similar programs at:

https://brainly.com/question/24742544

Write the types of computer viruses.​

Answers

File infecting virus, web scripting virus, resident virus browser hijacker

A mobile service provider has two data plans for its customers:

Silver plan: For $29.99 a month, 4 gigabytes are provided. Additional data costs $10 per gigabyte.
Gold plan: For $49.99 a month, 8 gigabytes are provided. Additional data costs $5 per gigabyte.

For both plans, the additional data is rounded up to an integral number of gigabytes. For example, if the additional data is 2.1 gigabytes, it is rounded up to 3 gigabytes, and the cost is $30 for the silver plan and $15 for the gold plan. Write a program that displays a menu of choices.

Answers

The program is an illustration of built-in functions and conditional statements.

Built-in functions are functions that have specific roles defined in them, while conditional statements are statements whose execution depends on the truth values of the condition.

The program in Python, where comments are used to explain each line is as follows:

import math

#This prints the menu

print("Menu\n1.- Silver plan\n2. Gold plan")

#This gets input for the plan from the user

selection = int(input("Select a plan: "))

#This gets the additional data from the user

additional_data = float(input("Additional data: "))

#This rounds up the additional data to the next integer

additional_data = math.ceil(additional_data)

#If selection is 1

if selection == 1:

   #This calculates the additional cost and the total cost

   additional_cost = 10 * additional_data

   total = additional_cost + 29.99

#If selection is 2

elif selection == 2:

   #This calculates the additional cost and the total cost

   additional_cost = 5 * additional_data

   total = additional_cost + 49.99

#For other inputs, the selection is considered invalid

else:

   print("Invalid selection")

#This prints the additional and the total costs, for selections 1 and 2

if selection == 1 or selection == 2:

   print("Additional cost:",additional_cost)

   print("Total cost: {:.2f}".format(total))

At the end of the program, the appropriate costs are printed for valid selections.

Read more about similar programs at:

https://brainly.com/question/25210352

major developments in 5th generation computers?​

Answers

Answer:

ULSI technology.

Development of true artificial intelligence.

Development of Natural language processing.

Advancement in Parallel Processing.

Advancement in Superconductor technology.

More user-friendly interfaces with multimedia features.

Availability of very powerful and compact computers at cheaper rates.

Explanation:

Write a statement using a compound assignment operator to cut the value of pay in half (pay is an integer variable that has already been declared and initialized). C++

Answers

Hope it helped. Thanks.

Think of the silliest problem the problem solving process could help with.

Answers

Answer:

12 FISH ARE IN A BOWL. SOME BIG OTHERS LITTLE IF 5 BIG FISH ATE 2 SMALL FISH EACH HOW MANY FISH ARE LEFT IN THE BOWL ???

PLEASE MARK ME BRAINLIST IF YOU CAN'T ANSWER IT

Apart from the United States, which country/countries got more gold medals, more silver medals, and more bronze medals than Great Britain?

Answers

Apart from United States, Japan got more gold medals, more silvers medals and more bronze medals than Great Britain

why my react native code only rend white screen

Answers

Answer: https://stackoverflow.com/questions/51705627/react-native-white-blank-screen-issue this shows u why

Explanation:

Why did the spelling and grammar checkers in Word miss the errors highlighted in yellow?

3-5 sentences
Please help

Answers

Answer:

It missed them because the highlighted errors are actually words that are not in the right place and when you misspelled them, it turned into a word in the incorrect place.

Explanation:

Answer:

It missed them because “Tying” is a real word. Whoever wrote this misspelled typing and it autocorrected it to “Tying,” which doesn’t make sense in that sentence. As quoted in lesson 3.07, page 2, “A word can be spelled correctly but used incorrectly.”

Explanation:

hope this helps! :)

Why did the spelling and grammar checkers in Word miss the errors highlighted in yellow?

Please help me

Answers

Answer:

Spelling and grammar missed them because the highlighted errors are actually words that are not in the right place and when you misspelled them, it turned into a word in the incorrect place.

Answer this pls ASAP

Answers

Answer:

I'm not going to answer it just because you said "ASAP" never rush an intellectual such as ME.

Of the following hard drives, which one is fastest?
a. SATA 6 Gb/s SSD
b. SATA 6 Gb/s 10,000-RPM drive
c. M.2 SSD using a SATA3 interface
d. PCIe NVMe SSD card

Answers

Answer:

D. PCIe NVMe SSD card

Explanation:

PCIe NVMe SSD cards are ludicrously fast even compared to some modern SSD drives today. Some can even average up to 8 GB/s while moving/copying files, though, the price tag is pretty high compared to some other SSD / HDD drives.

Which type of list should be used if the items in the list need to be in a specific order? Reference

Bulleted

Review

Numbered

Answers

Answer:

Numbered

Explanation:

If you want a list of items to be in a specific order, you should use Numbered. This is because it makes the list have numbers in front, starting with one. This puts them in a specific order.

The numbered list should be utilized whether the items throughout the list need to be in a specific order.

Numbered list

Whenever users want to display whole phrases or paragraphs in a succession, have been using a numbered list. If somehow the items constitute phrases, have used a lettered as well as bulleted list instead of a numbered listing.

To construct a numbered list, utilize one word-processing project's numbered category feature. This would also immediately or effectively indent the listing.

Thus the response above i.e., "option c" is correct.

Find out more information about the numbered list here:

https://brainly.com/question/4509295

If there are power lines near a work site, it must be determined how close they are to any crane activities. Which of the following are options for keeping workers safe if the power lines will be closer than 20 feet to crane activities?

Answers

Answer:

it says choose three so choose all but the removing the crane

The following are options for keeping workers safe if the power lines will be closer than 20 feet to crane activities the answer is option c.

What is the feature of cranes?

A crane is a sort of machine, typically geared up with a hoist rope, twine ropes or chains, and sheaves, that may be used each to raise and decrease substances and to transport them horizontally. It is in particular used for lifting heavy matters and transporting them to different places.

After figuring out the paintings zone, it have to be decided if any a part of the equipment, load line or load (such as rigging and lifting accessories) could, on the equipment's most operating radius, get nearer than 20 ft to an electricity line in the decided paintings zone.

Read more about the crane activities:

https://brainly.com/question/15062909

#SPJ2

I will mark brainlist please help


1) Top layer we used the following effect

• clipping mask

• release clipping mask

• rasterize type

• none of the above


2) Reflection layer blend mode changed to:

• overlay

• normal

• dissolve

• hard light



3) for the layer reflection copy we added

• input mask

• color overlay

• layer mask

• none of the above

Answers

Answer:

clipping mask

Explanation:

effect

10 shortcuts in word processing

Answers

Answer:

Word shortcut keys

Ctrl + A -- Select all contents of the page.

Ctrl + B -- Bold highlighted selection.

Ctrl + C -- Copy selected text.

Ctrl + X -- Cut selected text.

Ctrl + N -- Open new/blank document.

Ctrl + O -- Open options.

Ctrl + P -- Open the print window.

Ctrl + F -- Open find box.

Answer:

Ctrl + A -- Select all contents of the page.

Ctrl + B -- Bold highlighted selection.

Ctrl + C -- Copy selected text.

Ctrl + X -- Cut selected text.

Ctrl + N -- Open new/blank document.

Ctrl + O -- Open options.

Ctrl + P -- Open the print window.

Ctrl + F -- Open find box.

Explanation:

Which kind of devices uses radio waves to transport data? devices use radio waves to transport data.

Answers

Answer:

In computer networking, RF is used to describe network devices (hubs, bridges, etc.) that transmit data signals using radio waves instead of data cables or telephone lines.

Explanation:

Answer:

In computer networking, RF is used to describe network devices (hubs, bridges, etc.) that transmit data signals using radio waves instead of data cables or telephone lines.

Explanation:

What is lhe correct sequence of determining and development of CRM strategies?
1. Amplify commitment
2. Building valuable project team
3. Requirement analysis

Answers

Answer:

Plugins

API Docs

Find an Expert

Sendinblue Academy

Customer Stories

Premium Templates

Product Updates

Become a Sendinblue Expert

Sign up free

Log in

September 21, 2020

8 Steps to Creating a CRM Strategy for Your Business

Reading time about 9 min

What is a CRM strategy?

A Customer Relationship Management strategy is a plan to grow sales and improve customer service through a combination of processes, actions, and technology. It typically involves the sales, marketing, and customer service functions of a business.

What was once the traditional buyer-seller model has shifted from transactional to customer-centric. Customer relationships today require higher levels of maintenance, which is why businesses now have entire CRM strategies dedicated to managing them.

One of the reasons is that consumers have bigger expectations than ever when it comes to customer service. They’re not going to think twice about going elsewhere if yours isn’t up to scratch.

When we hear the words ‘CRM strategy’, we’re inclined to think about CRM software. But software is only one piece of a much larger puzzle.

The best customer relationship management strategy incorporates both people and software.

Stay tuned for our comprehensive 8-step guide to developing a CRM strategy for your business.

sorry if i dont help you

A partition is the _____.


an application that makes an operating system easier to use, also known as a shell

section of a hard drive

the core of an operating system that controls the basic functions

software that can be downloaded from the Internet at no cost

Answers

A partition is a section of a storage device

Which trait can be a positive or negative?

Answers

Answer:

Prejudice can be either positive or negative.

How many bits are in a single byte?

Answers

Answer:

8. One byte is 8 bits, 2 bytes is 16 bits, etc

choose the missing term
-------time
time.sleep(3)

Answers

Answer:

import

Explanation:

If this is python, you'll have to import the time module.

1
On October 31, Year 1, A company general ledger shows a checking account balance of $8,424. The company's cash receipts for the
month total $74,500, of which $71,340 has been deposited in the bank. In addition, the company has written checks for $72,494, of
which $71,144 has been processed by the bank
20
poir
LOOK
The bank statement reveals an ending balance of $12,384 and includes the following items not yet recorded by the company bank
service fees of $240, note receivable collected by the bank of $5.900, and interest earned on the account balance plus from the note
of $770. After closer inspection, the company realizes that the bank incorrectly charged the company's account $660 for an automatic
withdrawal that should have been charged to another customer's account. The bank agrees to the error
Required:
1. Prepare a bank reconciliation to calculate the correct ending balance of cash on October 31 Year 1 (Amounts to be deducted
should be indicated with a minus sign.)
Print
References
Bank's Cash Balance
Per bank statement
Bank Reconciliation
October 31, Year 1
Company's Cash Balance
Per general ledger
8424
Bank balance per reconciliation
Company balance per reconciliation

Record the amounts that increase cash

Answers

Please rate and comment if any problem. Thanks will appreciate it

What are some good predictions for video games in 2030? I need good reliable sources that have timestamps, like they say 2030 in them. Thank you!

Answers

Answer:

The 2021 global games market will generate revenues of $175.8 billion and is projected to exceed $200 billion by the end of 2023, according to a report by Newzoo (via VentureBeat). More than half of these revenues will come from mobile gaming, the largest segment of the marke

Explanation:

hope it's helpful to you

Ms Excel is an example of______



Answers

Answer:

It is an example of a spreadsheet application

Explanation:

Ms Excel is an example of_spread sheet application_.

hope this helps you.

What is lhe correct sequence of Sprint Zero?
1. Estimate roughly
2. Form backlog
3. Setup environment
4. Define user stories

Answers

Answer:

Get some quality items on the Product Backlog

Product backlog for your credit bill nye is due for a week of

What is the output?
>>> phrase = "abcdefgh"
>>> phrase[4-7]

Answers

Answer:

efg

Explanation:

abcdefgh

01234567

what are work incidents/situations or ethical problem?

Answers

5 Common Ethical Issues in the Workplace

Unethical Leadership.

Toxic Workplace Culture.

Discrimination and Harassment.

Unrealistic and Conflicting Goals.

Questionable Use of Company Technology.

Jfsnu vnjdjsmamsnsndjxmxnhsc e

How large are the laptop discounts for Black Friday?

Answers

Answer:

i dont know you can look it up in gogle

Explanation:

Answer: Some about 50% off, some 30% off.

Java question

If the user wants to enter one character what statement you use?

1- next()?

2-next(0)?

3-CharAt(0).

4-next().charAt(0).

Answers

Answer:

To be honest why would you want to enter one character. Anyways the answer is option 4

Other Questions
This table represents a funtion. What is f(-2) ? find the range of the function y= 1/2 x + 3 when the domain is -2, 0, 2, 4 what is 90 rational or irrational or not rational 3 A piece of ibbon of lengh 84 cm is dividedinto three pieces in the ratio 1:47. Calculate thelength of the longest pieces? Form the union for the following sets.R = {10, 15, 20)$ = {20, 25}R u S = {10, 15, 20, 25){ }{20} {10, 15, 25} A triangle has vertices A(-3,6), B(-3, 4), and C(3, 4).If the triangle is translated 2 units to the right and 1 unit down, what will be the new coordinates of vertex A? what is the significance of the dance that harrison performs with the ballerina? how does the style in which the story is written change in this passage? Caffeine is used commercially as a 3 hours worked for $12; 9 hours worked for $36 most bowstrings have a small brass band to mark the correct position for nocking the arrow. what is the name for this band? Based on the following figure, what is the slope of the hypotenuse?a. 5/12b. 5c. 12d. 12/5 b) Solve the following system of equations using Elimination Method:(2y - 1-33x y2y = x - 2 About how many more people lived in California than in Texas in the year 2013?A. twenty thousandB. two millionC. twenty millionD. ten million If one of your friends asks you about take home pay, what is he referring to?gross incomenet incomeincome taxother income This passage is most probably excerpted from an article about Franklin in a business journal Answer A: an article about Franklin in a business journal A a work of cultural criticism attacking Franklin for the decay of traditional values Answer B: a work of cultural criticism attacking Franklin for the decay of traditional values B a book about Franklin's scientific research Answer C: a book about Franklin's scientific research C a biography of Franklin intended for a general audience Answer D: a biography of Franklin intended for a general audience D How dose critical mass play a role in nuclear reaction? When a character has an emotional problem (conflict) with self-doubt and fear, this is an example of which specific type of CONFLICT? Internal? or External? AND Man v. man, Man v. nature, Man v. technology, Man v. society, Man v. self or Man v. Fate? A garden is 8 feet by 12 feet and Lewis wants to increase the area by 25%. what could be the new dimensions of the garden? excel provides _____ in categories such as financial management and budgets. While organizing his computer's power cords, Matt realizes his printer power cord is frayed (coming apart). What should Matt do to prevent damage and still be able to use the printer? Move the power cord to another outlet. Keep the cord plugged in. Replace the power cord. Unplug the power cord.