Cuestionario maratón pt3

Cuestionario maratón pt3

University

46 Qs

quiz-placeholder

Similar activities

156_Examen Semestral_SIC

156_Examen Semestral_SIC

University

50 Qs

ARQ Ex1 1-25

ARQ Ex1 1-25

University

50 Qs

Sistemas operativos: windows

Sistemas operativos: windows

University

43 Qs

MUNDOS DIGITALES Bloque 1 Componentes del mundo digital

MUNDOS DIGITALES Bloque 1 Componentes del mundo digital

University

42 Qs

Módulo 2 - Parcial 1

Módulo 2 - Parcial 1

11th Grade - University

45 Qs

Presentaciones de Google

Presentaciones de Google

KG - Professional Development

48 Qs

COMPUTACIÓN EGB - WORD

COMPUTACIÓN EGB - WORD

University

42 Qs

Fundamentos-Programacion

Fundamentos-Programacion

University

45 Qs

Cuestionario maratón pt3

Cuestionario maratón pt3

Assessment

Quiz

Computers

University

Medium

Created by

Javier Pino Herrera

Used 1+ times

FREE Resource

46 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Qué comando usarías en Linux para encontrar y mostrar todas las líneas en un archivo llamado log.txt que contienen la palabra "error"?

find 'error' log.txt

grep 'error' log.txt

search 'error' log.txt

awk 'error' log.txt

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Escribe una fórmula en Excel para calcular el promedio de los valores en las celdas B1, B2, B3, B4 y B5.

=SUM(B1:B5)/5

=PROMEDIO(B1:B5)

=AVERAGE(B1:B5)

=MEDIA(B1:B5)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cómo podrías visualizar las primeras 10 líneas de un archivo de texto llamado reporte.txt en un sistema Linux?

head -10 reporte.txt

view 10 reporte.txt

less -10 reporte.txt

first 10 reporte.txt

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

En Python, ¿cómo verificarías si una variable x es mayor que 100?

if x == 100:

if x < 100:

if x >= 100:

if x > 100:

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cómo crearías una nueva rama llamada feature en Git y cambiarías a esa rama?

git new branch feature && git switch feature

git checkout -b feature

git branch feature && git checkout feature

git create branch feature && git use feature

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

¿Cómo copiarías un archivo llamado documento.txt desde tu directorio actual al directorio /home/user/docs en Linux?

mv documento.txt /home/user/docs/

cp documento.txt /home/user/docs/

cp -m documento.txt /home/user/docs/

copy documento.txt /home/user/docs/

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Escribe un fragmento de código en JavaScript para mostrar un mensaje de alerta que diga "Bienvenido".

console.log("Bienvenido");

window.alert("Bienvenido");

message("Bienvenido");

alert("Bienvenido");

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?