Posts

Showing posts with the label computer network topology

Graphic design python turtle 🐢

from turtle import * import colorsys bgcolor('black') pensize(0) tracer(50) h=0 for i in range(300): c=colorsys.hsv_to_rgb(h,1,1) h+=0.9 color(c) forward(300) left(100) fd(i) goto(0,0) down() rt(90) begin_fill() circle(0) end_fill() rt(10) for j in range(5): rt(30) done() Please follow my blog and subscribe my channel for more videos and newly updates 👍👍👍👍👍 import turtle as t import colorsys t.bgcolor('black') t.tracer(100) h=0.4 def draw(ang,n): t.circle(5+n,60) t.left(ang) t.circle(5+n,60) for i in range(200): c=colorsys.hsv_to_rgb(h,1,1) h+=0.005 t.color(c) t.pensize(2) draw(90,i*2) draw(120,i*2.5) draw()

Computer Network Topology

  Computer Network Topologies The term topology refers to the way a network is laid out, either physically or logically. The connection of two or more devices forms a link and two or more links forms a topology. The topology of a network is the geometric   representation of the relationship of all the links and linking devices to one another. Basically, there are five topologies – mesh, star, tree, bus, and ring. 1)       Mesh:- Every devices has a dedicated point-to-point link to each other devices in a mesh topology. Therefore a fully connected mesh network has n(n-1)/2 physical channels to link n devices.           Mesh topology has several advantages:- a)       The use of dedicated links guarantees that each connection can carry its own data load,   therefore minimizing the traffic problems which can take place if links much be shared by multiple devices. b)       It is robust. It does not incapacitate the entire system when one link damages. c)        It enforces priv