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 networking goals with its classification

 

Computer Networking goals with its classification

The most important goals of computer networks are-

1)      Reliability Goals

2)      Performance Goals

3)      Security Goals

4)      Network Cast

 





  • 1)      Reliability Goals:- Network reliability can be measured by the networks robustness in a catastrophe, failure frequency  and average down time of network. These are described as follows-

a)      Catastrophe

b)      Failure Frequency

c)       Average Down Time

 

  1. a)      Catastrophe:- Network should be protected from catastrophe events like theft or earthquake. One protection  of network against these is a reliable system to backup network software.

             

  1. b)      Failure Frequency:-   A network which fails rarely is good for a user but a network which fails oftently is of little  value to a user.

               

  1. c)       Average Down Time:-  How long does it take to restore service is called down time. A network with less value of average down time is more important than one that does not.

                 

 2)      Performance Goals:- The network performance is measured with its transit time and response time.  Transit time is the time needed for a message to travel from one device to another device in network. Response time is the amount of time elapsed between an inquiry and a response. Network performance depends on a number of factors, which are given below-

a)      Software

b)      Hardware

c)       Network Transmission Medium

d)      Traffic Load

 

  1. a)      Software:- Travelling a message from node to node through a network needs processing for transformation of raw data into transmittable signals, to ensure error free delivery to route these signals to the proper destination and to recast the signals into a farm the receiver can use. The software which gives these type of services affects both the speed and the reliability of a network link.

  1. b)      Hardware:- Both the speed and capacity of transmission are affected by the types of hardware. A higher speed system with greater storage capacity gives better performance.

  1. c)       Network Transmission Medium:-  A network transmission medium may be wireless (microwave, satellite, etc.) or wired (optical  fiber, copper cables, etc.).

  1. d)      Traffic Load:-  The network design is dependent on an assessment of the average number of users that will be communicating at any moment of tim

 

3)      Security Goals:-  Network security issues comprise of protecting data from unauthorized access and prevention from virus attacks.

           a)      Unauthorized Access

b)      Viruses

 

  1. a)      Unauthorized Access:- Protection of sensitive data from unauthorized access is mandatory for any network to be useful.
      

  1. b)      Viruses:-  Since a network is accessible from many points, it can be susceptible to computer viruses. A virus is an illicitly introduced code to damage the functionality of a system.

     

          


 4)      Network Cost

        The network cast is calculated on the following-

a)      Runtime Cost

b)      Fixed Cost

 

  1. a)      Runtime Cost:-   To control a network functionally strong, very  good maintenance is needed and as much complexity we increase in design chances of failure increases accordingly which in turn leads to more down time and maintenance cost of network.

         

  1. b)      Fixed Cost:-  The cost of transmission medium and devices (such as router, switch, hub, etc.) which are needed to make a network functional plays an important role while designing the network.

          

          

 https://drive.google.com/file/d/1hS_ltgnBC62SGWFeow_4VJVCHq3JRDmJ/view?usp=drivesdk

 In the above link you can check out all the information about computer networking goals. You have any doubts related this post so please comment below 👍👍👍 if you want any other notes/soft copy so please comment below 👍👍👍

👍👍👍👍👍👍

Comments

Popular posts from this blog

Protocol verification using finite state machine model in computer network

Make fire crackers using python turtle 🐢

Scope and Limitation of Machine Learning