What is a professionalWhat is the difference between a profession and an ordinary job? Definitions and traits: 1. “a vocation or calling, especially one that involves some branch of advanced science or learning” Littrich & Murray Oxfam - dictionary definition 2. Common traits (Millerson in Littrich & Murray): a. Skilled based on body of theoretical knowledge
B. Provision of training and education c. Testing competence prior to entrance d. Organisation e. Code of ethics f. Ethos of altruistic
...Ao ler e refletir sobre as Aprendizagens Essenciais de Matemática de 2021, percebi que este documento vai muito além de um simples programa curricular. Representa, na verdade, uma mudança profunda na forma como encaramos o ensino da matemática — e, mais do que isso, na forma como olhamos para os próprios alunos. Enquanto futura professora, fez-me muito sentido a ideia de que ensinar matemática não se resume à transmissão de técnicas e procedimentos, mas sim a ajudar os alunos a pensar,
1. Aprendizagens Essenciais
• São os conhecimentos e
i
import cv2
import numpy as np
# Load the input image
img = cv2.imread('input.jpg') # Reads the image from file
# ---------- Rotation (45° around center) ----------
h, w = img.shape[:2] # Get image height and width
M_rot = cv2.getRotationMatrix2D((w/2, h/2), 45, 1) # Rotation matrix: center, angle, scale=1
rotated = cv2.warpAffine(img, M_rot, (w, h)) # Apply rotation
# ---------- Scaling (Down to 50%) ----------
scaled = cv2.resize(img, None, fx=0.5, fy=0.5) # fx, fy are scaling factors
#
A computer is an electronic device that processes input data according to a set of instructions (programs), stores it, and produces meaningful output as information. It performs four basic operations: Input, Processing, Storage, and Output.
It is a data processing machine that can perform arithmetic and logical operations at extremely high speed and accuracy.
It is used in every field today due to its efficiency, reliability, versatility, and automation capabilities.
Enunciado: António, contabilista, comprou um carro com dois objetivos: levar o filho à escola e deslocar-se para o seu local de trabalho, que fica a cerca de 10 quilómetros da sua casa. António é consumidor para efeito da LDC?
Resposta:
Nos termos do artigo 2.º, n.º 1 da Lei de Defesa do Consumidor (Lei n.º 24/96, de 31 de julho), considera-se consumidor “todo aquele a quem sejam fornecidos bens, prestados serviços ou transmitidos quaisquer direitos, destinados a uso não profissional,
1.) What is computational complexity theory, and why is it important? It studies how efficiently problems can be solved using algorithms. 2.) Explain the difference between time complexity and space complexity. Time complexity measures how the runtime of an algorithm grows with input size, while space complexity measures how much memory an algorithm uses as input size grows. 3.) What are P and NP classes in complexity theory? P contains problems that can be solved quickly (in polynomial time), while
...