logo

Crowdly

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

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!

<!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"></div>

    <div id="lemon2" class="box"></div>

    <script>

        ...

    </script>

</body>

</html>

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

0%
0%
0%
0%
0%
View this question

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

0%
0%
0%
0%
0%
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":

0%
0%
0%
0%
0%
View this question

Для перегляду статусу робочого дерева репозиторію використовується команда:

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_text1} #{sample_text2}

  //script.

    document.getElementById('lemon').textContent='Лимони';

index.js

'use strict';

var express = require('express');

var router = express.Router();

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

  res.render('index', {sample_text1: 'Лимон1', sample_text2: 'Лимон2'});

});

module.exports = router;

Для наведеного вище коду вкажіть текст, який у Простому веб-застосуванні Node.js Express 4 Visual Studio 2022 буде вписано в середину тега p, який розміщений у тезі 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;

            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 задати розмір тексту 20px для тегу <div> з ідентифікатором "lemon1":

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_text1} #{sample_text2}

  script.

    document.getElementById('lemon').textContent='Лимони';

index.js

'use strict';

var express = require('express');

var router = express.Router();

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

  res.render('index', {sample_text1: 'Лимон1', sample_text2: 'Лимон2'});

});

module.exports = router;

Для наведеного вище коду вкажіть текст, який у Простому веб-застосуванні Node.js Express 4 Visual Studio 2022 буде вписано в середину тега p, який розміщений у тезі 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"></div>

    <div id="lemon2" class="box"></div>

    <script>

        ...

    </script>

</body>

</html>

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

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.

    document.getElementById('lemon').textContent+='Лимон2';

index.js

'use strict';

var express = require('express');

var router = express.Router();

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

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

});

module.exports = router;

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

0%
0%
0%
View this question

Для створення файлу package.json проєкту веб-застосування Node.js використовується команда (необхідно залишити інформацію щодо налаштування проєкту по замовчуванню):

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!