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

Sort by
Subject
Level

Reverse Engineering Fundamentals: Process, Steps, and CAD Model Generation

Classified in Computers

Written on in English with a size of 2.76 KB

Forward Engineering Defined

Forward engineering is the traditional process of moving from high-level abstractions and logical designs to the physical implementation of a system.

Understanding Reverse Engineering

Reverse engineering (RE) is the process of duplicating an existing part, sub-assembly, or product without original drawings, documentation, or a computer model.

It is also defined as the process of obtaining a geometric Computer-Aided Design (CAD) model from 3-D points acquired by scanning or digitizing existing parts.

Alternative Name for Reverse Engineering

The process is often referred to as the Physical-to-Digital process.

Key Purposes of Reverse Engineering (RE)

Reverse engineering serves several critical functions, including:

  • The user
... Continue reading "Reverse Engineering Fundamentals: Process, Steps, and CAD Model Generation" »

Java Linked List Implementation: Essential Methods

Classified in Computers

Written on in English with a size of 2.81 KB

Java Linked List Implementation

Inserting Elements at Positions

public void insertPos() {
    if (isEmpty()) {
        throw new EmptyCollectionException("Lista");
    } else {
        LinearNode actual = first;
        LinearNode nuevo = null;
        int posActual = 1;
        while (actual != null) {
            nuevo = new LinearNode(posActual);
            nuevo.next = actual.next;
            actual.next = nuevo;
            actual = nuevo.next;
            nElements++;
            posActual++;
        }
    }
}

Skipping Iterator Implementation

private class SkippingIteratorImpl implements Iterator<T> {
    private Node<T> current;

    public SkippingIteratorImpl() {
        current = first;
        if (first != null) {
... Continue reading "Java Linked List Implementation: Essential Methods" »

Essential Networking Concepts: TCP, UDP, and Congestion

Classified in Computers

Written on in English with a size of 2.5 KB

Differences Between TCP and UDP

  • TCP: Connection-oriented, bytes delivered in order, arbitrary length content, flow control matches sender to receiver, and congestion control matches sender to network.
  • UDP: Connectionless, messages may be lost, limited message size, can send regardless of receiver state, and can send regardless of receiver network.

TCP Connection Management

Explain using figures where and how the 3-way handshaking is used. Explain using figures how TCP releases connections (refer to the other side of this paper).

  • Normal case
  • Simultaneous connect

Computing Adaptive Timeout

Keep smoothed estimates of the RTT and variance in RTT. Update estimates with a moving average. Set timeout to a multiple of estimates to estimate the upper RTT in... Continue reading "Essential Networking Concepts: TCP, UDP, and Congestion" »

Fundamentals of Optimization and Statistical Modeling

Classified in Computers

Written on in English with a size of 3.51 KB

Optimization Problem and LP Relaxation

The objective function for an optimization problem is: Min 3x – 2y, with constraints x ≥ 0, y ≥ 0. x and y must be integers. Suppose that the integer restriction on the variables is removed. If so, this would be a familiar two-variable linear program; however, it would also be an example of an LP relaxation of the integer linear program.

Integers in Linear Programs

Integers cannot be used in linear programs.

  • False

Simple Linear Regression Model

In a simple linear regression model, y = b0 + b1x + eb1, b1 represents the intercept.

Time Series Recurring Pattern

A time series that shows a recurring pattern over one year or less is said to follow a cyclical pattern.

Binary Integer Program Variables

In binary integer... Continue reading "Fundamentals of Optimization and Statistical Modeling" »

Gender Disparities in Mortality Rates and Immune System Function

Classified in Computers

Written on in English with a size of 2.03 KB

EXT2018.OA´WOMEN REALLY´

1.a-P1: A recent study found that women tend to live longer than men. b-P3: The academics also discovered that women have a stronger immune system.

  • a-harsh
  • b-hardship
  • c-underpinnings
  • d-outlive

4.p1: Danish researchers analyzed 19th-century data. p2: Research showed that women outlive men. p3: Males have a higher mortality rate even if...

ORD2018.OB·`Shop hires...`

1.a-P2: But it is important for businesses to understand their customers. b-P4: We thought it was an emotional and exciting experience.

  • a-actually
  • b-aware
  • c-stressful
  • d-understanding

4.p1: At the shop, Fabio performed. p2: When Fabio, the staff. p3: The staff had become...

ORD2017.OB`The victorian...`

1.a-P2: People would gather to observe. b-P3: The tableaus were a frozen... Continue reading "Gender Disparities in Mortality Rates and Immune System Function" »

Registro de Escuderías y Automovilismo

Classified in Computers

Written on in English with a size of 550 bytes

Escudería 1Escudería 2
Escudería 3
Escudería 4

Escudería:
Precio:
Clave:

Disponibilidad para probar coches:

SíNo
Fecha de alta:

¿Deseas recibir información de automóviles?:


Tipos de coches:

AudiMercedesBMWJaguar
Comentarios

CHULETA

Classified in Computers

Written on in English with a size of 4.63 KB

 int led = 13; int boton = 2;                       int pot1; int pot2; int led = 9;
 void setup ( ) {                                          void setup ( ) {
 pinMode (led, OUTPUT);                          Serial.Begin (9600);
 pinMode (botón, INPUT);                         pinMode (led, OUTPUT);
 }                                                                }
 void loop ( ) {                                            void loop ( ) {         
 if (digitalRead (boton) == HIGH) {           pot1= analogRead (A0);
     digitalWrite (led, HIGH);                       pot2= map( pot1, 0,
... Continue reading "CHULETA" »

Essential Business Vocabulary and Office Terminology

Classified in Computers

Written on in English with a size of 3.33 KB

Office Facilities and Personnel

  • Assist: Be in charge of, describe, develop, explain how to use, hire (contatar), sell.
  • Cafeteria: Car park, conference room, ground floor, kitchen, lobby, maintenance, reception, stockroom, toilet, top floor, warehouse.
  • Appointment (cita): Business card, clerk (dependiente), do business, employee, employer, escalator, interview, name plate, receptionist, research and development department, title.

Administrative Tasks and Business Operations

  • Answer incoming calls: Data entry, deliver the message, distribute the incoming mail, file documents (archivar), keep a log (mantener registro), keep track of (llevar registro), order supplies, prepare a presentation, receive visitors, schedule a meeting, screen a call, search
... Continue reading "Essential Business Vocabulary and Office Terminology" »

IT Infrastructure Upgrade Checklist

Classified in Computers

Written on in English with a size of 3.36 KB

Garage Programmer

System Codes:
E-O-C-O-S-HL-M-RR-R-C-R-L
I-P-E-M-C
I-S-T-C-Q-H-C-R-P-S

Three Weeks Prior

  • Ensure schedules have been confirmed and agreed upon with the client.
  • Ensure the number of clients scheduled matches the site upgrade plan.
  • Prepare client notice:
    • Instructions for backing up files and data.
    • Instructions for backing up Outlook data (.pst, .ost, and contacts).
    • Instructions for favorites.
    • How-tos for the new platform and/or application.
    • Notices regarding known errors.

Two Weeks Prior

  • Get client notice translated through WBRO, if required.
  • Update client notice with French text, if required.
  • Request client notice distribution through the OR-IT Service Desk.
  • Review client schedule and determine inhibited applications or devices, if any.
  • Create
... Continue reading "IT Infrastructure Upgrade Checklist" »

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" »