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

Как называются действия людей над информацией, связанные с её сбором, обработкой, хранением и передачей?

👇
Ответ:
okmaksimowac2
okmaksimowac2
17.08.2020

Это называется- ИНФОРМАЦИОННАЯ ДЕЯТЕЛЬНОСТЬ.

4,5(93 оценок)
Открыть все ответы
Ответ:
lera1038
lera1038
17.08.2020

1. Input devices allow you to enter information into a computer for further storage and processing, and output devices allow you to receive information from a computer.

2. Input device types: mouse, keyboard. output device types: monitor.

3. However, regardless of the forms in which they receive their inputs, all input devices must provide a computer with data thare transformed into the binary codes that the primary memory of the computer is designed to accept. This transformation is accomplished by units called I/O interfaces.

4. A reel of magnetic tape upon which the collected data are stored in binary format is an example of a human-independent output.

5. Data enter input units in forms that depend upon the particular device used. For example, data entered from a keyboard in a manner similar to typing, and this differs from the way that data are entered by bar-code scanner.

6. The major differences between devices are the media that they use and the speed with which they are able to transfer data to or from primary storage.

7. It should be noted that the high-speed devices are entirely electronic in their operation or magnetic media that can be moved at high speed.

8. The low-speed devices are those with complex mechanical motion or operate at the speed of a human operator.

Объяснение:

4,7(40 оценок)
Ответ:
romanenckoalia
romanenckoalia
17.08.2020

Решение, которое перебирает

Большие буквы стоят в таблице кодов подряд, то есть, образуют диапазон, нам требуется проверить лежит ли буква в заданном диапазоне. Для русских букв проверять будем так:

if ('А' <= str[0] && str[0] <= 'Я'), для английских нужно просто поменять буквы на английские.

Пример для русских букв:

Программа выводит заглавные буквы

#include <iostream>

#include <string>

#include <windows.h>

signed main() {

SetConsoleCP(1251);

SetConsoleOutputCP(1251);

std::string str;

getline(std::cin, str);

if ('А' <= str[0] && str[0] <= 'Я')

 std::cout << "Первая буква является заглавной!";

else

 std::cout << "Этот символ не является заглавной буквой!";

return 0;

}

4,6(97 оценок)
Это интересно:
Новые ответы от MOGZ: Информатика
Полный доступ к MOGZ
Живи умнее Безлимитный доступ к MOGZ Оформи подписку
logo
Вход Регистрация
Что ты хочешь узнать?
Спроси Mozg
Открыть лучший ответ