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!
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.pugdoctype htmlhtml(lang='uk') head meta(charset='utf-8') title= title link(rel='stylesheet', href='/stylesheets/main.css') body block content index.pugextends layoutblock content div(id='lemon1', class='box'): p #{sample_text1} div(id='lemon2', class='box'): p #{sample_text2} script. ...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 виконати стандартне приховування тега div з ідентифікатором "lemon2" на сторінці:
Для розгортання веб-застосування Vue.js у гілці gh-pages репозиторію GitHub використовується команда:
Для створення проекту my_app веб-застосування Vue.js можна використати команду:
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.pugdoctype htmlhtml(lang='uk') head meta(charset='utf-8') title= title link(rel='stylesheet', href='/stylesheets/main.css') body block content index.pugextends layoutblock content div(id='lemon', class='box') p #{sample_text1} #{sample_text2}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":
Для створення глобальної змінної системного оточення user.email з ім'ям my_name@nuwm.edu.ua використовується команда:
<!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 для сторінки:
Для встановлення Express у папку проєкту веб-застосування Node.js та добавлення його у список залежностей файлу package.json використовуються команди:
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.pugdoctype htmlhtml(lang='uk') head meta(charset='utf-8') title= title link(rel='stylesheet', href='/stylesheets/main.css') body block content index.pugextends layoutblock content div(id='lemon') 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" клас "box":
<!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":
<!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">Лимон1</div> <div id="lemon2" class="box">Лимон2</div> <script> ... </script></body></html>Для наведеного вище коду вкажіть рядок, який треба вставити на місці ..., щоб з використанням Javascript видалити з тегу <div> з ідентифікатором "lemon2" текст "Лимон2":
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!