logo

Crowdly

Browser

Add to Chrome

Questions Bank (1366642 total)

What is one of the Problem Solving methodologies... 

0%
0%
0%
100%
View this question

I want to define an action plan... I can do it after : 

0%
0%
100%
0%
View this question

Rate your own learning portfolio.

The weight of the learning portfolio is 50% of the total grade. The remaining 50% comes from Moodle tests.

Example of evaluation criteria:

0

Lecture notes scarce, more than half homework missing

1

Lecture notes include almost all assignments done together during class and homeworks are

done but some homework are missing

2

Lecture notes include almost all assignments done together during class and homeworks are

done. No extra exercises or extra homeworks.

3

Lecture notes include almost all assignments done together during class and homeworks are

done. A few self-motivated  exercises or

extra homework.

4

Lecture notes include almost all assignments done together during class and homeworks are

done. Several additional self-motivated exercises or additional homework. Own

reflections on one's own learning during the course.

5

Lecture notes include almost all assignments done together during class and homeworks are

done. Plenty of additional self-motivated exercises or homework and

comprehensive reflection on one's own learning and competence.

0%
0%
0%
100%
0%
0%
0%
0%
0%
0%
0%
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='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" на сторінці:

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

Для розгортання веб-застосування Vue.js у гілці gh-pages репозиторію GitHub використовується команда:

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

Which of the following scenarios describes an example of epistasis?

View this question

Red-green colour blindness is a sex-linked recessive trait in humans. Two people with normal colour vision have a colour-blind son. What are the genotypes of the parents?

View this question

Для створення проекту my_app веб-застосування Vue.js можна використати команду:

View this question

Folgende Abbildung zeigt den Zusammenhang zwischen Grösse in cm und Gewicht in kg untersuchter Personen.

Welche der folgenden Werte ändert sich, wenn die Grösse in inch statt in cm erfasst wird?

0%
0%
0%
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}

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

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