Showing posts with label linkedinlearning answers. Show all posts
Showing posts with label linkedinlearning answers. Show all posts

Sunday, February 20, 2022

HTML Essential Training - Formatting Text - LinkedIn Learning QUIZ Answers(Bold Text) with Explanation

Question 1 of 21

How many elements are there in the following HTML code?

<h1> The End of the World is Nigh </h1> <article> Musings on our Current Social Predicament, by <em> Trans I. Tory </em> <p> Random content….</p> </article>

Question 2 of 21

Which code produces the output shown in the image below?

Text demonstrating the superscript, subscript, and small tags

Question 3 of 21

How do we use HTML elements in combination with each other?

Question 4 of 21

Which two elements are used to mark-up subscript and superscript text?

Question 5 of 21

Which HTML code snippet produces the output shown in this image?

Text broken into separate lines or paragraphs

Question 6 of 21

When deciding which headline level to use (h1, h2, h3, h4, h5, h6) which of these statements is true?

Question 7 of 21

Which markup is correct?

Question 8 of 21

Which tag preserves the spaces, tabs, and line breaks within a piece of text so a poem or piece of code can be presented faithfully?

Question 9 of 21

Which HTML element has the correct structure?

Question 10 of 21

How does the break tag differ from most other inline and block tags?

Question 11 of 21

Why is it important to remember to use closing tags?

Question 12 of 21

Which elements are used to mark-up code on screen?

Question 13 of 21

Which type of element is typically a block?

Question 14 of 21

What's a true statement about the difference between the <blockquote> element and the <q> element?

Question 15 of 21

In the tag below, what do we call "datetime"?

<time datetime="2024-03-07"> March, 7, 2024</time>

Question 16 of 21

Which is a true statement about HTML lists?

Question 17 of 21

Besides visual appearance, what is most important about headline levels?

Question 18 of 21

When we want to convey importance, seriousness, or urgency, which element do we use?

Question 19 of 21

Which elements are used to convey meaning, instead of just typesetting convention?

Question 20 of 21

What code produces the list shown in this image?

List demonstration text

Question 21 of 21

How many different headline levels are displayed in the image shown below?

Text containing a series of different headlines and normal text

Sunday, May 16, 2021

LinkedIn Learning Course Linux: Shells and Processes By: Grant McWilliams FINAL TEST ANSWERS



 

Exam questions With Answers

    • Attempted incorrect option

      the value of variables can be inserted in place of the variable name

    • words can replace commands

    • aliases can replace commands

    • Correct answer

      commands can be inserted inside text strings and executed

    • Attempted incorrect option

      Precede matching characters with a negative sign.

    • Correct answer

      Precede matching characters with an exclamation point.

    • Use a regular expression.

    • Include a caret anywhere in between the brackets.

    • 19

    • 10

    • 0

    • Attempted correct option

      -19

    • Attempted incorrect option

      !!

    • Correct answer

      !*

    • !ls

    • !

    • match the number of occurrences

    • match entire words

    • do group matches

    • Attempted correct option

      all of these answers

    • Runs the backup.sh script the first day of the week at 1:15 am.

    • Runs the backup.sh script every 15 minutes on Monday of every week.

    • Attempted correct option

      Runs the backup.sh script at 1:00 am on the 1st and 15th day of every month.

    • Runs the backup.sh script every minute of the first hour on the 1st and 15th day of the month.

    • /etc/spool/cron/

    • /var/spool/cron/

    • /var/spool/cron.d/

    • Attempted correct option

      /etc/cron.d/

    • the + operator

    • the * operator

    • Attempted correct option

      the ? operator

    • the {01} characters

    • Attempted correct option

      restricts all users from using the cron service except for the user named bob.

    • allows all users use the cron service except for the user named bob.

    • restricts all users from using the cron service.

    • allows all users to use the cron service.

    • edit your terminal settings and click the ignorespace option

    • Attempted correct option

      export HISTIGNORE=”*” in your shell startup file

    • install a special terminal

    • export HISTCONTROL=ignoredups

    • brace expansion

    • Attempted correct option

      treating text as literal

    • variable substitution

    • command substitution

    • systemctl list-unit-files -t service

    • chkconfig --list-all

    • systemctl list-services

    • Attempted correct option

      systemctl list-unit-files -at service

    • chkconfig --list-running

    • systemctl list-unit-files -at service

    • systemctl list-running-files -t service

    • Attempted correct option

      systemctl list-units -t service --state running

    • only asterisks

    • any type of character and any number of them

    • any number of the previous character

    • Attempted correct option

      matches any type of character but only one of them

    • your home directory

    • Attempted correct option

      the most recent directory

    • /root

    • the parent directory

    • Attempted incorrect option

      allows users to start the crond service

    • Correct answer

      ensures that the crond service will start on bootup

    • unmasks the crond service

    • starts the crond service