Answer and Explanation:
LAN transmission and reception handles the given bellow details
- LAN adds hardware address and use for error detection codes
- Use DMA to copy frame data directly from main memory
- it follows access rule then transmission is in progress
- it also check the address where data is sent on incoming frames
if the destination address completely match with location address a copy of the frame is passed to the computer
in LAN system a single pocket is sent to the one or more nodes
Answer:
def listSum(mylist):
sum =0
for item in range(0,len(mylist)):
sum=sum+mylist[item]
print(sum)
Explanation:
Using the Python programming language, I defined a function as listSum that accepts a list as a parameter and returns the sum of the elements in the list.
The most important logic here is defining the range of elements in the list not to exceed the length of the list using the len function. Then using a for statement, we loop through each element and add them up to a sum variable initially assigned the value of 0.
Powerpoint is a program that allows us to create professional looking multimedia presentations.
<h3>What is Multimedia presentations?</h3>
A multimedia presentation is a way of communication where we use audio,vedio,arts,drawings and other various ways to present communcations.
<h3>Why Ms-PowerPoint ?</h3>
Ms-PowerPoint consists of some simple and understandable features to make notes through slides create vedio and vedio editing, Coral Draws Audio editing etc.
We can create banners,record vedios,draw and design with the help of tools provided by powerpoint.
Powerpoint also helps to transform boring presentation to an eye catching presentation.
Learn more about PowerPoint here:brainly.com/question/10117380
Answer: Database software is bought on basis of the processing, cost, requirement etc for any particular . According to the financial perspective the database software should have the following characteristics:-
- Database software that has most accurate and main feature according to the business requirement is selected for buying and the others with extra features are not considered as more feature cost more amount which is not needed.
- Database software which is still in progress to be built is pre-booked and money is invested on it because the price of the required software might increase after getting completed.
- Scalable database software should be bought so that it can extend according to need at low cost.
Answer: The shell sort is based on insertion sort. Here the list of elements are divided into smaller sub list which are sorted based on insertion sort.
Its best case time complexity is O(n* logn) and worst case is O(n* log^2 n)
Explanation:
Shell sort is an inplace sorting here we begin by dividing the list into sublist and sorting the list with insertion sort. We create interval for dividing the list into sub list until we reach the smallest interval of 1.
The best case is O(n* logn).