Linux Basico 5

Linux Basico 5

Professional Development

7 Qs

quiz-placeholder

Similar activities

NUESTROS SABERES PREVIOS SOBRE LAS HERRAMIENTAS DE IA

NUESTROS SABERES PREVIOS SOBRE LAS HERRAMIENTAS DE IA

Professional Development

6 Qs

HTML Quiz

HTML Quiz

Professional Development

10 Qs

PrIncipais Tags HTML e Inputs HTML

PrIncipais Tags HTML e Inputs HTML

Professional Development

12 Qs

Fundamental Series Post Test : Introduction to Basic HTML

Fundamental Series Post Test : Introduction to Basic HTML

Professional Development

10 Qs

Basic Web Programming Exercise

Basic Web Programming Exercise

Professional Development

12 Qs

LINUX BASICO I

LINUX BASICO I

Professional Development

7 Qs

LInux Basico 4

LInux Basico 4

Professional Development

5 Qs

Diplomado Python

Diplomado Python

Professional Development

10 Qs

Linux Basico 5

Linux Basico 5

Assessment

Quiz

Information Technology (IT)

Professional Development

Hard

Created by

JUAN ALFONZO MARTINEZ AYALA

Used 1+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which of the following commands will print lines from the file world.txt that contain matches to changes and changed?

  1. grep change[ds] world.txt

  1. tar change[d-s] world.txt

  1. find "change'd|s'" world.txt

  1. cat world.txt changes changed

  1. find change[^ds] world.txt

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following redirection operators appends a program’s standard output to an existing file without overwriting that file’s original contents?

|

2>

&>

>

>>

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The find command enables you to locate files based on their sizes.

VERDADERO

FALSO

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Complete the following command to redirect both standard output and standard error from the bigprog program to the file out.txt.

$ bigprog ______ out.txt

|

2>

&>

>

>>

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

You’ve typed rmdir junk to delete the junk directory, but this command has failed because junk contains word processing files. A command that will work is ________________.

  1. rmdir -r junk

  1. rmdir -P junk

  1. rm -r junk

  1. rm -f junk

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What is the symbolic representation of this numerical permission:: 644?

rwxr-xr-x

rw-r--r--

rw-------

r--rw-rw-

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Given a file with permission755, What commands would change the permission to r-xr--r--?

chmod 544 filename

chmod u+w,go+x filename

chmod u-rx,go-r filename

chgrp 544 filename