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

Which one defines the physical equipment that is involved in the computer functioning Software
Hardware
Firmware
Nextware
Hard disc
82 The computer hardware is typically divided into four main parts which are
Printers, Xerox, input and output devices
Processing Devices, Memory Devices, Input/, Output Devices
Control Unit (CU) and the Arithmetic and Logic Unit (ALU)
Local, broadband, personal, regional
Printer, plotter, modem, headphones

83 A series of instructions that tells a computer how to perform the tasks is called
device
A program
Number
Command
Text

84 Any hardware component that allows you to enter data, programs, commands, and user responses into a computer is known as
An output Device
An Input Device
Processing
Power supply
BIOS

85 Which device is not classified as an input device
Keyboard
Printer
Trackball
Mouse
Joystick

86 How do we call the digital representations of non-text information such as drawings, charts, pictures and photographs
Text
Graphics
sound
number
video

87 Music, speech, or any other sound is called
Video
Audio
Text
Graphics
0..9

88 The number system whose base is 8 is known as
the Hexadecimal number system
the octal number system
the binary number system
the decimal number system
The non octal number system

👇
Ответ:
dasha5334678
dasha5334678
15.04.2022

in by e in sbdjshsisbdhdhd

4,7(13 оценок)
Открыть все ответы
Ответ:
leomax2
leomax2
15.04.2022
Const
  n = 15;

var
  i: integer;
  a: array[1..n] of integer;

begin
  Randomize;
  writeln('Исходный массив');
  for i := 1 to n do
  begin
    a[i] := Random(100) - 50;
    write(a[i]:6);
    if a[i] < 0 then a[i] := sqr(i)
  end;
  writeln;
  writeln('Результирующий массив');
  for i := 1 to n do write(a[i]:6);
  writeln
end.

Тестовое решение:

Исходный массив
     3    37    40    17    20   -12   -27     4    34    -1     9    42    -6   -36    28
Результирующий массив
     3    37    40    17    20    36    49     4    34   100     9    42   169   196    28
4,7(82 оценок)
Ответ:
nastenamolova0
nastenamolova0
15.04.2022

обозначим счетчики переменными kp(+) и km(-), так же возьмем переменную j:integer для осуществления цикла, так же необходим сам массив пусть будет a:array[1..20] of integer, содержит 20 элементов целого типа, приступим к набору программы.  

 

var  

j,km,kp:integer;  

a:array[1..20] of integer;  

 

begin  

km:=0;kp:=0; {обнулим счетчики}  

randomize; {запустим службу генерирования случайных чисел}  

for j:=1 to 20 do  

begin  

a[j]:=random(100)-50; {заполним массив случайными числами}  

writeln(' a[',j,']= ',a[j]); {напечатаем его}  

end;  

{далее перейдем к поиску элементов}  

for j := 1 to 20 do  

begin  

if a[j]<0 then km:=km+1;  

if a[j]>0 then kp:=kp+1;  

end;  

write('pologitel''nix: ',kp,'otricatel''nix: ',km);  

readln;  

end.

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