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
{данная программа переводит любое сочетание символов ascii в систему счисления заданную пользователем.}
//pascal abc.net v3.0 сборка 1111
var
a,i,b,r,n,j,bug: integer;
s,se,slo,slof: string;
procedure preob(var a,b,n: integer; var se: string);
begin
repeat
b: =a mod n;
a: =a div n;
str(b,se);
s+=se;
until (a< =n-1);
end;
beginreadln(slo);
readln(n);
for j: =1 to length(slo) do
begin;
a: =ord(slo[j]);
preob(a,b,n,se);
str(a,se);
s+=se;
for i: =1 to length(s) div 2 do
begin;
se: =s[i];
s[i]: =s[length(s)-i+1];
s[length(s)-i+1]: =se[1];
end;
write(s,'-');
slof: =slof+s;
delete(s,1,length(s));
end;
end.
пример ввода:
работа на завтра.
2
пример вывода:
11000100-11101110-11101100-11100000-11111000-11101101-11111111-11111111-100000-11110000-11100000-11100001-11101110-11110010-11100000-100000-11101101-11100000-100000-11100111-11100000-11100010-11110010-11110000-11100000-101110-
{таким образом, фразу " работа на завтра." можно закодировать как "11000100-11101110-11101100-11100000-11111000-11101101-11111111-11111111-100000-11110000-11100000-11100001-11101110-11110010-11100000-100000-11101101-11100000-100000-11100111-11100000-11100010-11110010-11110000-11100000-101110-".}