М
Молодежь
К
Компьютеры-и-электроника
Д
Дом-и-сад
С
Стиль-и-уход-за-собой
П
Праздники-и-традиции
Т
Транспорт
П
Путешествия
С
Семейная-жизнь
Ф
Философия-и-религия
Б
Без категории
М
Мир-работы
Х
Хобби-и-рукоделие
И
Искусство-и-развлечения
В
Взаимоотношения
З
Здоровье
К
Кулинария-и-гостеприимство
Ф
Финансы-и-бизнес
П
Питомцы-и-животные
О
Образование
О
Образование-и-коммуникации
ezof2
ezof2
02.10.2022 05:04 •  Информатика

Question №8

V0 is Hardware?
0 Hardware is best described as any physical component of a computer system that contains a circuit board, ICs, or other electronics

0 One of the components of the information technology- Software
0 of the components of information technology - hardware
0 CD
0 Binary system

Question №9

V0 What is Software?
0 software is a collection of instructions that enable the user to interact with a computer, its hardware, or perform tasks.
0 Software is one of the components of the information technology - hardware
0 Hard disk inside the system unit
0 CD
0 Binary system

Question №00

V0 Binary system use digits 0 and 0, which used in the computer, because:
0 Elements, of a computer may be in two stable states
0 In its most simple multiplication table
0 In addition it is the simplest
0 It does not carry over units in the senior ranks at addition
0 Computer operates on DC

Question №00

V0 Bit - it is
0 the smallest unit of information
0 ASCII code
0 8 bytes
0 position number of digits in the number of
0 way of writing numbers

Question №02

V0 Byte - a
0 8 bits
0 ASCII code
0 the smallest unit of information
0 position number of digits in the number of
0 way of writing numbers

👇
Открыть все ответы
Ответ:
bobbygrenn
bobbygrenn
02.10.2022

Конъюнкция - логическое умножение

в естественном языке соответствует союзу «И»;в алгебре высказываний обозначение «&»;в языках программирования обозначение «And».

Дизъюнкция - логическое сложение

в естественном языке соответствует союзу «ИЛИ»;в алгебре высказываний обозначение «V» или «+»;в языках программирования обозначение «Or».

Инверсия - отрицание (от латинского disjunctio - разобщение, различие):

в естественном языке соответствует словам «неверно, что...» и частице «не»;в алгебре высказываний обозначение «¬» или «-»;в языках программирования обозначение «Not».

Подробнее - на -

Объяснение:

4,7(70 оценок)
Ответ:
sodemAN2
sodemAN2
02.10.2022
#include <iostream>
#include <list>

using namespace std;

int main() {
    list<int>mylist;
    //Делаем со списком, что хотим
    mylist.push_back(1);
    mylist.push_back(2);
    mylist.push_back(3);
    mylist.push_back(-4);
    mylist.push_back(5);
    for (auto i : mylist) {
        cout << i << " ";
    }
    cout << "\n";
    //Удаляем последний отрицательный элемент
    auto it = mylist.end();
    while (*it > 0) {
        if (it == mylist.begin()) {
            cout << "Not found.\n";
            return 0;
        }
        it--;
    }
    //Делаем со списком, что хотим
    mylist.erase(it);
    for (auto i : mylist){
        cout << i << " ";
    }
    return 0;
}
4,4(30 оценок)
Это интересно:
Новые ответы от MOGZ: Информатика
logo
Вход Регистрация
Что ты хочешь узнать?
Спроси Mozg
Открыть лучший ответ