1/101
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
internet started way back, what year???
1950s when cold war, for military purposes
it is a group of interconnectedsystems sharing services and interacting byb means of a shared communication link
Network
Network must have the following: ? ? ?
data (something to share)
transmission medium (A physical pathway)
protocols (rules of communication)
it is a two or more computers/devices sharing information across a common transmission medium
computer network
it is two or more computers/devices are connected so that they can exchange message and share information
Internetwork
it is a short for Internetwork
internet (lower case i)
it is the worlds largest Internetwork
Internet (uppercase I)
it is a unique identification, and each of the computer in the internet has it
IP Address
it is an organization that gives ip addresses to variouse ISP (Internet Service Providers)
InterNIC
a survey says that there are _____ possible ip address on the in the internet
4.294 B
t or f
The internet uses a client-server relationship, which means that not all the computers conneted to the internet are the same
true
thesea re the special types of computer that rae capabel of delivering information and data
server
these are the computers that may only recieve data
client
it is a fastest growing part of the internet
World Wide Web (WWW)
WOrld Wide Web or simply the ____?
Web
it is an Information System (IS) on the internet which allows document to be connected to other documents by hypertext links
World Wide Web
T or F
Web and Internet are the same
False - they are not the same
give the 4 basic elements of the Web
HTML
Webmaster
Domain Name
URL (Uniform Resource Locator)
it is the foundation of all web pages
HTML (Hypertext Markup Language)
it is the individual responsible for maintaining and updating the content of WWW document
Webmaster
it is the name given to any computer register to WWW as official provider of info and files
Domain name
it serves as identification for all WWW documents
URL (Uniform Resource Locator)
give me the 3 uses of Internet
ECG
E-mail
Chatting
Getting files
it makes up a majority of internet traffic today, because almost everyone with internet access has this thing…
give me the 3 elements of E-mail
User ID
@
Domain
E-mail has two basic parts: ___ and ____
header and body
give me the 6 different headers of E-mail
To:
From:
Subject
CC:
BCC:
Attachments:
you use it if sometimes, you amy want to remove time delay between sendinga nd recieving e-mail
Chatting
What is the meaning of HTML?
Hypertext Markup Language
What is the meaning of HTTP
Hypertext Transfer Protocol
What is the meaning of IRC
Internet Relay CHat
What is the URL
Uniform Resource Locator
what is URN
uniform resource name
what is URI
uniform resource indentifiers
it is a multiuser version of a program called ‘talk’
IRC (Internet Relay Chat)
what is FTP
File Transfer Protocol
it is one of the most popular methods of obtaining softare and documents on the internet
File transfer protocol (FTP)
it is a set of rules for transferring files in a fast, efficient, and reliable way
FTP (file transfer protocol)
it is one of the first internet service developed to enable users to transfer files from one place to another
file transfer protocol (FTP
give me the 4 parts of URL
protocol
server (Domain)
path
filename
it is web service that indexes, organizes, and often rates and reviews Websites
search engine
it helps you find the one need youre looking for in the internet
search engine
these are the defined ways in which computers communicate with each other
IP (Internet protocol)
they determine how, what the data is sent and recieve
IP (internet protocols)
whta is OSI
International standard organization
it is a reference model taht identifies vriouse levels in network communication
7 Layers of the OSI model
what is TCP/IP
transmission Control Protocol-Internet Protocol
it was adopted as the standard by the developers of the Internet
TCP/IP (transmission control protocol-internet protocol)
it is a World Wide Web application-layer protocol
HTTP (hypertext transfer protocol)
it defiens how web clients request pages from web servers and how web servers transfer web pges to web clients
HTTP (hypertext transfer protocol)
a Web page is also called ______
document
it is consist of objects, which may be html file, images, applets and so on
Web Page
it refers to the address of a resource on the Web
URL (uniform resource locator)
a _____ is anything available on the web like html pages, a graphic file, or a CGI script
resource
it is a names a specific resource on the web
URN (uniform resource name)
both url and urn is compnents of the more general class called ____
Uniform Resource Indentifiers
after the protocol comes the _____
resource planning
a ____ separates the resource description from the protocol
colon :
resource description may consist of any of the elements, give them:
site address (host)
port number
filepath and filename
fragment identifier
parameter
it is the host element identifies the site address of the computer which is the source of the file being displayed
site address
what is the two parts that consist of the site address
machine name
domain name
it follows the site address but separated by a colon
Port number
is indicating a port number is optional
yes or no
yes
what is the default port number?
80
t or f
whenever you access a resource on the web or the internet, you are actually pointing to a file
true
it allows you to actually point to a specific location within a file to view
fragment identifiers
it is a one last component that maybe included in the URL
parameters
it provides a place to store a web content online
web hosting
what is DNS
domain name system
this is the middle man that points your website toward your domain IP Address
Nameservers (DNS)
this is the actual file that makes up the website reside in a server
web hosting
give me a common type of web hosting
SDVM
Shared hosting
Dedicated hosting
virtual private server
managed hosting
this is a common and economical option shared hosting services managed multiple clients from the same server system
shared hosting
it is similar to shared hosting but the files are stored in a dedicated space with dedicated resources
VPS
virtual private server
this provides a dedicated server which cutes the security nd performance risks assiociated with shared hosting. Client has its own server system
dedicated hosting
have a access to dedicated server, but you dont have the same administrative option.
managed hosting
it is a programming model that is based on the concept of classes and object
Object-oriented programming
what are the two main aspects of OOP
class and object
it is a self-contained, independent collection of variables and functi
a class is a collection of ____ and _____ which work together to perform one or more specific task
variable and functions
these are the individual instances of a class
object
a class acts as ____ or ____ from which individual objects can be created
template or blueprint
t or f
each object may have different values for certain properties
true
the variables within a class are called…
properties
functions within a class are called…
methods
class names are also conventionally written in …..
PascalCase (e.g., MyClass)
the ____ sysmbol is an OOP construct that is used to access contained properties and methods of a given object
arrow symbol
it is a psuedo-variable that provides a references to the calling object
$this
this allows us to initialize the objects properties upon creatioon of the object
constructor
we use ___ function to declare constructor inside the class
__construct()
this is called when the object is destructed or the script is stopped or exited
destructor
we use ____ fucntion that will be called to the end of the script
__destruct()
when working with a class, you can even restrct access to its properties and methods using the visibility keywords for greater control
access modifiers
give me the three visibility keywords (access modifiers)
Public
Protected
Private
another term for access modifiers
visibility keywords
it can be access anywhere within or outside of class and it is the default in PHP
public
it can only be accessed within the class itself or inherited classes
protected
it is accessible only wothin the class that defines it
private
classes can inherit the properties and methods of another class using the _____ keyword
extends keyword
what is the most powerful reason behind using the OOP model
inheritance