Notes, summaries, assignments, exams, and problems for Computers

Sort by
Subject
Level

Refer to the exhibit. When a static IP address is being configured on the host, what address should be used for the default gateway

Classified in Computers

Written on in English with a size of 15.07 KB

1allows 4 an mtu as high as 9198 bytes.​jumbo frame
2.R highly scalable & have a very high fault tolerance,massive storage capabilities,& fast data access.sans
3.R not used 2 find noes on ne2rks other than the local ne2rk.mac addresses
4.as a ne2rk support technician,U only need 2 know how 2 support ipv6.false
5.@ what layer of the osi model would a tcp or udp header be added 2 a payload?layer 4
6.border routersconnect an autonomous system with an outside ne2rk
7.by default,the pathping command sends how many pings per hop?​100
8.cable that is coated with flame-resistant polyvinyl chloride (pvc) is acceptable 4 use in plenum areas.false
9.a ________ consists of a host's ip address & the port number of an application
... Continue reading "Refer to the exhibit. When a static IP address is being configured on the host, what address should be used for the default gateway" »

Hardware: The Physical Components of a Computer

Classified in Computers

Written on in English with a size of 1.46 KB

HARDWARE- Are the physical part of the computer: both the box and the internal components and the elements connected to it.

MOTHERBOARD-

Is the largest card with a printed circuit you see when you open a computer. All the other computer components are inserted on it, includes connectors or communication ports with peripherals and can also incorporate video, audio, and network devices.

MICROPROCESSOR-

Is the most important part of a computer. It is responsible for processing data, performing arithmetical-logical operations, and controlling all the other devices. It is characterized by its working frequency, measured in hertz, which determines its operating speed.

USB-

Universal serial bus, permits interconnection with practically any device. Standard... Continue reading "Hardware: The Physical Components of a Computer" »

Understanding Computer Networks and the Internet

Classified in Computers

Written on in English with a size of 2.95 KB

Computer Networks

What is a Network?

A network is a number of computers linked together to allow the sharing of resources. A server usually provides services like file storage and email.

Types of Networks

There are two main types of networks:

  • Local Area Network (LAN): A LAN covers a small area, such as a home or office.
  • Wide Area Network (WAN): A WAN covers a large geographical area. Most WANs are made from several LANs connected together. WANs can be connected together using the internet.

Email

There are two main types of email:

  • Client-based email: Often used by business users, client-based email involves downloading email from a server to an application on the user's computer.
  • Webmail: Accessed through a web browser, webmail can be accessed from any
... Continue reading "Understanding Computer Networks and the Internet" »

Introduction to Computer Networks

Classified in Computers

Written on in English with a size of 2.57 KB

Servers

A server stores data to be used by other computers on a network. A server could be a specialized machine, or it can be a normal PC running server software. The server stores data and responds to requests for data or files, such as web pages.

Types of Server

There are many different types of servers. Some popular examples follow.

Web Servers

Web servers host websites and generally handle requests for static information such as HTML pages or images. They are used to manage the website on the server and often include FTP software, which can easily host and share large files. The Apache web server is a popular type of open-source web server software.

Application Servers

Many websites are classed as web applications, which contain programming and... Continue reading "Introduction to Computer Networks" »

Python Syntax, Indentation, Comments, Variables, Data Types, Numbers, Casting, and Strings

Classified in Computers

Written on in English with a size of 5.67 KB

Python Syntax

As we learned in the previous page, Python syntax can be executed by writing directly in the Command Line:

>>> print("Hello, World!")
Hello, World!

Python Indentation

Indentation refers to the spaces at the beginning of a code line.

Where in other programming languages the indentation in code is for readability only, the indentation in Python is very important.

Python uses indentation to indicate a block of code.

if5 > 2:
    print("Five is greater than two!")

Python will give you an error if you skip the indentation:

if5 > 2:
print("Five is greater than two!")

Python Comments

Comments can be used to explain Python code.

Comments can be used to make the code more readable.

Comments can be used to prevent execution when testing... Continue reading "Python Syntax, Indentation, Comments, Variables, Data Types, Numbers, Casting, and Strings" »

Radio nav

Classified in Computers

Written on in English with a size of 10.2 KB

  1. Telephone communication

it has been the medium used as the first contact with a company. It is used to arrange meetings , interviews or to ask for information, so the impression of the first telephone call is very important

  1. Telephone means and equipment

Fixed individual devices

Private branch exchanges (PBX):  it connects calls between two destinations or ends

Mobile devices:

PDA (Personal Digital Assistant) it`s like a small computer (Internet and electronic mail)

Smartphone:  A PDA with video, camera, radio, MP3 player  or television

Services: Internet, e-mail, videoconference, camera, audio and  Video quality player, an agenda, GPS,....

3. Additional services offered by the telephone equipment

3.1 Common features(a,b,c,)

  1. Fixed telephony: -

Notice

... Continue reading "Radio nav" »

Understanding Cache Memory and CPU Hazards

Classified in Computers

Written on in English with a size of 2.83 KB

1. General Questions (35%)

1.1. (5%) What is the difference between a write-back cache and a write-through cache?

Write-back cache: A store only writes data to the cache and marks the corresponding line as dirty. The modified line is written to the lower level of the memory hierarchy only when it is evicted.

Write-through cache: Data is written to the caches and the memory every time a store is executed.

1.2. (15%) Name the 3 Cs in cache misses and provide a brief explanation for each C.

Compulsory miss: A cache miss caused by the first access, a cold start effect.

Capacity miss: A cache miss due to the capacity limitation. Even with full associativity, it cannot accommodate all the working sets of an application.

Conflict miss: A cache miss that... Continue reading "Understanding Cache Memory and CPU Hazards" »

Software Design Principles and UML Diagrams Explained

Classified in Computers

Written on in English with a size of 4.2 KB

Dimensions of Software Design

Software design involves several key dimensions:

  • Problem solving
  • Modeling
  • Specification
  • Organizing the solution
  • Communication
  • Economics and reuse
  • Maintenance and evolution

Design Approaches

Divide-and-Conquer

A problem is decomposed into subproblems that are worked on independently. This approach can be applied recursively for complex problems and allows managers to allocate work to multiple people.

Procedural Design

Design is viewed as a set of procedures that are composed:

  • Sequentially
  • Conditionally
  • Iteratively
  • Hierarchically

Borderline Procedural Design

In this approach, the main steps are not fixed. The user has choices with few constraints, and there is typically a main loop to find the next operation.

Event-Driven Design

This... Continue reading "Software Design Principles and UML Diagrams Explained" »

Responsibilities of the Transport Layer

Classified in Computers

Written on in English with a size of 1.9 KB

Transport Layer Responsibilities

Tracking Individual Conversations

At the transport layer, each set of data flowing between a source application and a destination application is known as a conversation (Figure 1). A host may have multiple applications that are communicating across the network simultaneously. Each of these applications communicates with one or more applications on one or more remote hosts. It is the responsibility of the transport layer to maintain and track these multiple conversations.

Segmenting Data and Reassembling Segments

Data must be prepared to be sent across the media in manageable pieces. Most networks have a limitation on the amount of data that can be included in a single packet. Transport layer protocols have services... Continue reading "Responsibilities of the Transport Layer" »

Computer Terminology Glossary

Classified in Computers

Written on in English with a size of 5.84 KB

A

  • ATTACHMENT: A file that is sent with an email.
  • BANDWIDTH: A measurement of the amount of information that a computer network can send or receive. High bandwidth allows images and websites to load quickly on the Internet.
  • BANNER: A rectangular graphic on a website that advertises a business.
  • CASE: An enclosure that holds the computer's components.
  • CODE: A set of words and symbols that give instructions to a computer.
  • CONTENT: The material on a web page, including text and graphics.
  • CROP: To cut off unwanted parts of an image.
  • DATABASE: A large group of data organized in a computer system. It allows you to search and find information easily.
  • DESKTOP: Everything that a user sees on a computer screen.
  • DESKTOP COMPUTER: A computer that is small enough to
... Continue reading "Computer Terminology Glossary" »