logo

Crowdly

Browser

Add to Chrome

Веб-програмування та хмарні технології

Looking for Веб-програмування та хмарні технології test answers and solutions? Browse our comprehensive collection of verified answers for Веб-програмування та хмарні технології at exam.nuwm.edu.ua.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Для перегляду інформації про групи ресурсів у розташуванні westus використовується команда Azure CLI:

View this question

Для створення веб-додатку Node.js з ім’ям mywebapp у групі ресурсів myresourcegroup та розгортання його вмісту з поточної папки як веб-додатку Linux у ціновій категорії Безкоштовний (F1) можна використати команди Azure CLI:

View this question

Для розгортання коду веб-додатку з ім’ям mywebapp у групі ресурсів myresourcegroup зі сховища GitHub "https://github.com/mygithub/mywebapprepo" з цільвої гілки main у слоті production використовується команда Azure CLI:

View this question

<!DOCTYPE html>

<html lang="uk">

<head>

    …

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Практика HTML, CSS</title>

    <style>

        .box {

            background: yellow;

            border-radius: 50% 0 50% 0;

            width: 400px;

            height: 320px;

            line-height: 320px;

            font-size: 20pt;

            color: orangered;

            text-align: center;

            text-transform: uppercase;

            font-weight: bold;

        }

    </style>

</head>

<body>

    <div id="lemon" class="box">

        <p>Лимон</p>

    </div>

</body>

</html>

Для наведеного вище коду вкажіть рядок, який треба вставити на місці …, щоб встановити кодування UTF-8 для сторінки:

View this question

Для видалення розширення, яке необхідне для керування статичними веб-сайтами, використовується команда Azure CLI:

View this question

Для перегляду інформації про всі віртуальні машини у групі ресурсів myresourcegroup використовується команда Azure CLI:

View this question

Для надсилання вмісту локального репозиторію Git з вітки main до репозиторію GitHub використовуються команди:

View this question

<!DOCTYPE html>

<html lang="uk">

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Практика HTML, CSS, Javascript</title>

    <style>

        .box{

            background: yellow;

            border-radius: 50% 0 50% 0;

            width: 400px;

            height: 320px;

            line-height: 320px;

            font-size: 20pt;

            color: orangered;

            text-align: center;

            text-transform: uppercase;

            font-weight: bold;

        }

    </style>

</head>

<body>

    <div id="lemon">Лимон</div>

    <script>

        ...

    </script>

</body>

</html>

Для наведеного вище коду вкажіть рядок, який треба вставити на місці ..., щоб з використанням Javascript додати до тега <div> клас "box":

View this question

main.css

.box {

  background: yellow;

  border-radius: 50% 0 50% 0;

  width: 400px;

  height: 320px;

  line-height: 320px;

  font-size: 20pt;

  color: orangered;

  text-align: center;

  text-transform: uppercase;

  font-weight: bold;

}

layout.pug

doctype html

html(lang='uk')

  head

    meta(charset='utf-8')

    title= title

    link(rel='stylesheet', href='/stylesheets/main.css')

  body

    block content

index.pug

extends layout

block content

  div(id='lemon', class='box')

    p #{sample_text}

  script.

    ...

index.js

'use strict';

var express = require('express');

var router = express.Router();

router.get('/', function (req, res) {

  res.render('index', {sample_text: 'Лимон'});

});

module.exports = router;

Для наведеного вище коду вкажіть рядок, який треба вставити на місці ..., щоб у Простому веб-застосуванні Node.js Express 4 Visual Studio 2022 добавити до тега div з ідентифікатором "lemon" підказку з текстом "Лимони дуже корисні.", яка з'являється при наведенні курсору на елемент:

View this question

<!DOCTYPE html>

<html lang="uk">

<head>

    <meta charset="UTF-8">

    <meta http-equiv="X-UA-Compatible" content="IE=edge">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Практика HTML, CSS, Javascript</title>

    <style>

        .box{

            background: yellow;

            border-radius: 50% 0 50% 0;

            width: 400px;

            height: 320px;

            line-height: 320px;

            font-size: 20pt;

            color: orangered;

            text-align: center;

            text-transform: uppercase;

            font-weight: bold;

        }

    </style>

</head>

<body>

    <div id="lemon1" class="box"><p>Лимон1</p></div>

    <div id="lemon2" class="box"><p>Лимон2</p></div>

    <script>

        ...

    </script>

</body>

</html>

Для наведеного вище коду вкажіть рядок, який треба вставити на місці ..., щоб з використанням Javascript змінити колір фону на червоний для тегу <div> з ідентифікатором "lemon1":

View this question

Want instant access to all verified answers on exam.nuwm.edu.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome