logo

Crowdly

Browser

Add to Chrome

Questions Bank (1381850 total)

Для створення глобальної змінної системного оточення user.email з ім'ям [email protected] використовується команда:

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

Olgu antud hulgad ja ning injektiivne funktsioon . Ei leidu ühtegi sürjektiivset funktsiooni

Milline väide hulkade võimsuse kohta on tõene?

0%
0%
0%
View this question

In humans, ABO blood types refer to glycoproteins in the membranes of red blood cells. There are three alleles for this autosomal gene: IA, IB, and i. The IA allele codes for the A glycoprotein, The IB allele codes for the B glycoprotein, and the i allele doesn't code for any membrane glycoprotein. IA and IB are codominant, and i is recessive to both IA and IB. People with type A blood have the genotypes IAIA or IAi, people with type B blood are IBIB or IBi, people with type AB blood are IAIB, and people with type O blood are ii. If a woman with type AB blood marries a man with type O blood, which of the following blood types could their children possibly have?

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

Why are males more often affected by sex-linked traits than females?

View this question

Gene S controls the sharpness of spines in a type of cactus. Cacti with the dominant allele, S, have sharp spines, whereas homozygous recessive ss cacti have dull spines. At the same time, a second gene, N, determines whether or not cacti have spines. Homozygous recessive nn cacti have no spines at all. The relationship between genes S and N is an example of which of the following inheritance patterns?

View this question

Для встановлення Express у папку проєкту веб-застосування Node.js та добавлення його у список залежностей файлу package.json використовуються команди:

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

X-chromosome linked disorders affect:

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

View this question

The following question refers to the pedigree chart in the figure for a family, some of whose members exhibit the dominant trait, W. Affected individuals are indicated by a dark square or circle.

What is the likelihood that the offspring of IV-3 and IV-4 will have the trait?

0%
0%
0%
0%
View this question