Applying to a French University: Steps, Requirements, and Costs
Classified in Technology
Written on in English with a size of 2.14 KB
Classified in Technology
Written on in English with a size of 2.14 KB
Classified in Technology
Written on in English with a size of 2.22 KB
Hello, I'm Laura and I'm going to talk about recycling.
Classified in Technology
Written on in English with a size of 3.3 KB
Important Oracle SQL tablespaces views include: dba_tablespaces
, dba_data_files
, dba_tables
, user_types
, user_source
.
CREATE OR REPLACE TYPE direccion AS OBJECT(
calle VARCHAR2(50),
numero NUMBER(3),
piso NUMBER(2),
puerto VARCHAR2(1),
codpostal NUMBER(5),
localidad VARCHAR2(50),
provincia VARCHAR2(50)
);
CREATE OR REPLACE TYPE persona AS OBJECT(
dni VARCHAR2(9),
nombre VARCHAR2(50),
apellido1 VARCHAR2(50),
apellido2 VARCHAR2(50),
telefono NUMBER(9),
fecha_nac DATE,
direccion direccion
);
CREATE TABLE agenda OF persona;
DESC agenda; -- Visualize table structure
CREATE TABLE agenda2
... Continue reading "Oracle SQL Object Types and Tables" »Classified in Technology
Written on in English with a size of 1.61 KB
Classified in Technology
Written on in English with a size of 5.33 KB
The continuous combustion cycle.
Low temperature gives greater thrust.
At lower engine speeds...
Aircraft on the ground and stationary.
The mass ratio of air that passes...
Inlet and outer pressures.
Increases with an increase in speed.
The main parameter that shows the thrust produced.
For protection against Foreign Object Debris (FOD).
Decelerate the free air stream.
Divergent
Is the airflow separation... Continue reading "Jet Engine Fundamentals and Operations" »
Classified in Technology
Written on in English with a size of 1.57 KB
The motherboard is the central component of a computer, connecting all of its parts together. It serves as a platform for the CPU, memory, hard drives, optical drives, video card, sound card, and other ports and expansion cards.
The CPU, or Central Processing Unit, is the brain of the computer. It handles... Continue reading "Motherboard and CPU: The Core Components of a Computer" »
Classified in Technology
Written on in English with a size of 2.5 KB
Fossil fuels, such as coal, oil, and natural gas, are used to heat water in a boiler. Steam from the boiler turns a turbine, which is connected to the rotor of a generator. The generator produces electricity, which is transported by a network of high voltage power lines. After that, the steam goes to a condenser where it cools and becomes liquid water again. Finally, the water is pumped back to the boiler.
Electricity is generated in two systems. In the first, natural gas is burned with compressed air. This produces superheated gases which turn a turbine to generate electricity. In the second, the hot gases from the first system are used to produce steam in a heat recovery boiler. Then the... Continue reading "Types of Power Stations: Fossil Fuels, Combined Cycle, Hydroelectric, Geothermal, and Solar" »
Classified in Technology
Written on in English with a size of 1.89 KB
This code defines a simple Book
class in Java and demonstrates how to sort and display a list of books by price in ascending order.
The Book
class has the following attributes:
bookId
: Unique identifier for each book.title
: Title of the book.author
: Author of the book.publisher
: Publisher of the book.price
: Price of the book.The class provides a constructor to initialize these attributes, getters to access them, setters to modify them, and a toString()
method to represent a Book
object as a string.
The Program3
class contains the main
method, which performs the following actions:
Book
objects.bookList
Classified in Technology
Written on in English with a size of 7.61 KB
It is a group of elements that are combined to optimize a process working together
It is a magnitude (light, sound, temperature, pressure) that can be measured to be used in a program
4: distance, pressure/contact, light, and sound
3: (A, B, C) for motors.
9v rechargeable
temperature
open loop systems are simple sequences regulated by time.
Classified in Technology
Written on in English with a size of 2.76 KB
Plastics are materials formed by chains of carbon and hydrogen atoms. We call the chains polymers, while the atoms that form them are called monomers.
Thermoplastic materials are plastics that are softened by heating and can be formed and melted as many times as we want. This is because their polymers have weak bonds. (Polyethylene (PE), Polystyrene (PS), PVC (polyvinyl chloride))
The polymers of thermoset plastics criss-cross to form networks. Because of this bond, the plastics can be shaped using heat; however, once they have been formed, they cannot be re-melted to create different forms. (Melamine, Bakelite, Polyester resins)
Elastomers are very flexible materials that recover their shape and... Continue reading "Understanding Plastics: Types and Manufacturing Processes" »