Accéder au contenu principal

What is Internet ??

 The credit for the invention of the Internet is attributed to computer scientists Vinton Cerf and Bob Kahn, who invented the Internet connection protocols that are used today, a complex set of protocols and rules; : fathers of the Internet).


Education:
Cerf holds a BA in Mathematics from Stanford University; He joined the College of Computer Science and Electrical Engineering in 1972, and worked as an assistant professor at Stanford, and worked with Robert Kahn at the Advanced Research Projects Agency of the US Department of Defense, to create the Transmission Control Protocol, which specifies the way data packets travel over the Internet, As for Robert Khan, he was an American electrical engineer. He obtained an engineering degree from the City College of New York, and a master's and doctorate in electrical engineering from Princeton University, and the two won the Turing Prize, the highest ranking in computer science, in recognition of their pioneering work in the field of networking, including designing and implementing basic communications protocols for the Internet.

Internet ???





Icône de validation par la communauté

Commentaires

Posts les plus consultés de ce blog

Beliefs

 We Live In A System Of Beliefs The accompanying article about convictions is only a declaration of my contemplations. It is absolutely not complete. As I would see it, we carry on with our life based on convictions. We, in a real sense, live in a colossal conviction framework. So flawlessly coordinated (into our reality) are a few convictions that a great many people expect that they are regular and acknowledge them without addressing. The actual demonstration of perusing this article is conviction based, in light of the fact that the very build that is shaped in your mind presently is calculated and of the reasoning psyche. Maybe, what truly is doesn't simply exist as ideas, yet in addition exists in the NOW as experience. Albeit one can portray or conceptualize a reality, the conceptualization is itself an idea. Convictions can be exceptionally incredible, particularly when most of the populace gets tied up with it. At some point a specific conviction when gotten rolling, ...

Modules et Packages dans Python

  Modules et Packages : Un module est tout simplement est un ensemble des fonctions qui existes dans un fichier .py è c’est l’extension d’un fichier python. Et si on regroupe plusieurs modules dans le même dossier, on appelle ça un Package , ce dossier doit contenir un fichier important s’appelle __init__.py . Egalement ce fichier -__init__.py- indique à python qu’il s’agit d’un package. Ce fichier peut être vide, seule sa présence est importante. Création d’un module : Simplement, ou crée un fichier python qui s’appelle par exemple funcs , et je vais ajouter quelque fonctions simple à ce fichier. C’est le temps d’utiliser ces fonctions dans notre fichier principal ( Comment faire ça ) : Nous devons importer notre module qui s’appelle funcs en utilisant import , après on appelle notre fonction. Création d’un package : Pour créer un package, on commence par la création d’un dossier dans le même dossier que notre programme, ce dossier porte le nom de notre p...

JavaScript

JavaScript Introduction : Avons-nous même besoin d'introduire JavaScript ? C’est l’un des langages de programmation les plus populaires au monde ! Avez-vous déjà visité un site Web qui vous a fait penser… "Hé, ce site Web est vraiment cool et interactif» ? Eh bien, JavaScript était probablement en train de le faire. C'est donc juste utile pour les sites Web, n'est-ce pas ? Faux ! Traitez les données, les applications mobiles et de bureau, les jeux, le monde est votre huître avec JavaScript.                  Variables : Les variables sont des conteneurs pour stocker les valeurs de données. La valeur d'une variable peut changer tout au long du programme. Déclarer une variable est aussi simple que d'utiliser le mot-clé var. Ce qui ressemblerait à ceci :         Dans cet exemple, nous avons attribué une valeur de 10 à la variable x. Nous avons utilisé le mot ass...