Programa

html - pdf

TP Vacaciones de invierno

html - pdf

Apuntes

Unidad 1 - Dirección de proyectos

html - pdf

Unidad 2 - Bash y Git

html - pdf

Unidad 3 - HTML y CSS

html - pdf

Unidad 4 - JavaScript

html - pdf

Evaluacion Unidad 4 (Resuelta)

Implementar las siguientes funciones en JavaScript.

function fibonacci(n) {
  if (n == 0) return null;
  let result = [0];
  if (n == 1) return result;
  result.push(1);
  if (n == 2) return result;
  for (let i = 2; i < n; i++)
    result.push(result[i - 1] + result[i - 2]);
  return result;
}
function parseResistanceValue(first, second, multiplier) {
  const COLORS = {
    black: 0,
    brown: 1,
    red: 2,
    orange: 3,
    yellow: 4,
    green: 5,
    blue: 6,
    violet: 7,
    grey: 8,
    white: 9
  };
  let value = COLORS[second];
  value += COLORS[first] * 10;
  value *= Math.pow(10, COLORS[multiplier]);
  return value;
}
function isLeap(year) {
  if(year % 4 === 0) {
    if(year % 100 === 0) {
      if(year % 400 === 0) {
        return true
      }
      return false
    }
    return true
  }
  return false
}
function clock(h, m, s) {
  setInterval(() =>{
    s++;
    if (s == 60) {
      s = 0;
      m++;
    }
    if (m == 60) {
      m = 0;
      h++;
    }
    if (h == 24) h = 0;
    console.log(`${h}:${m}:${s}`);
  }, 1000);
}

Actividad 1

html - pdf

Solución

js

Actividad 2

html - pdf

Unidad 5 - Backend

html - pdf

Unidad 6 - Frontend

html - pdf

Materiales de otros años

Informe técnico de MERVA (FNIE 2018)

pdf