В
Все
Б
Биология
Б
Беларуская мова
У
Українська мова
А
Алгебра
Р
Русский язык
О
ОБЖ
И
История
Ф
Физика
Қ
Қазақ тiлi
О
Окружающий мир
Э
Экономика
Н
Немецкий язык
Х
Химия
П
Право
П
Психология
Д
Другие предметы
Л
Литература
Г
География
Ф
Французский язык
М
Математика
М
Музыка
А
Английский язык
М
МХК
У
Українська література
И
Информатика
О
Обществознание
Г
Геометрия
Dashylia2014
Dashylia2014
06.09.2022 08:55 •  Информатика

№91. Encryption information is…: A) The process of its transformation, in which the content of the information becomes incomprehensible to non-authorized subjects
B) A conversion process in which information is deleted.
C) The process of its transformation, in which the content of information is changed to a false
D) The process of converting information into machine code
E) Identification protocol
F) Software update
G) Super secure
H) Total control Protocol

№92. Software information protection
A) Destroy database
B) uninterrupted power supply unit
C) backup
D) data duplication
E) Desepticons invasion
F) cryptography
G) Trojan virus
H) Delete your data

№93. Ensuring the accuracy and completeness of information and methods of its processing.
A) Damage
B) Confidentiality +
C) Availability
D) Feasibility
E) Dr. Web
F) Integrity
G) Prototype
H) Keyboard

№94. Providing access to information only to authorized users?
A) Prototype
B) integrity
C) Availability
D) Feasibility
E) Dr. Web
F) Damage
G) Privacy
H) Keyboard

№95. The greatest threat to network security pose
A) unauthorized access, electronic eavesdropping and intentional or unintentional damage
B) opening standard user account
C) Opening of the standard account administrator group
D) copying files that have been changed during the day, without a backup mark
E) Main menu
F) Main window
G) Cyber security
H) H. Innovation technology

Показать ответ
Ответ:
мария2384
мария2384
13.05.2023 07:26
C:
#include <stdio.h>

int main()

char name[10];
int year;
printf("Введите Ваше имя: ");
scanf("%s",&name);
printf("Здравствуйте, %s\n",name);
printf("Введите год рождения: ");
scanf("%d",&year);
printf("Вам %d  лет\n", 2017-year);
return 0;
}

Пример:
Введите Ваше имя: Natali
Здравствуйте, Natali
Введите год рождения: 2000
Вам 17 лет

C++
#include <iostream>
#include <string>
using namespace std;

int main()
{
    string name;
    int year;
    cout << "Введите Ваше имя: ";
    getline (cin, name);
    cout << "Здравствуйте, " << name << endl;
    cout << "Введите год рождения: ";
    cin >> year;
    cout << "Вам " << 2017-year << " лет" << endl;
    return 0;
}

Пример:
Введите Ваше имя: Natali
Здравствуйте, Natali
Введите год рождения: 2000
Вам 17 лет
0,0(0 оценок)
Ответ:
maximkomaxs373
maximkomaxs373
09.10.2020 16:39
// PascalABC.NET 3.2, сборка 1417 от 28.03.2017
// Внимание! Если программа не работает, обновите версию!

function IsGood(Self:integer):boolean; extensionmethod;
begin
  (var max,var min,var n):=(0,9,abs(Self));
  while n>0 do begin
    var d:=n mod 10;
    if d>max then max:=d;
    if d<min then min:=d;
    n:=n div 10
    end;
  Result:=max-min<5
end;

function P(name:string):double;
begin
  Result:=ReadElements&<integer>(name).Where(n->n.IsGood).Average
end;
 
begin
  Writeln('Среднее арифметическое равно ',P(ReadlnString('Имя файла:')))
end.

Пример
Имя файла: integers.pas
Среднее арифметическое равно 1.78571428571429
0,0(0 оценок)
Популярные вопросы: Информатика
Полный доступ
Позволит учиться лучше и быстрее. Неограниченный доступ к базе и ответам от экспертов и ai-bota Оформи подписку
logo
Начни делиться знаниями
Вход Регистрация
Что ты хочешь узнать?
Спроси ai-бота