Valentina1520
?>

1. the time required for the computer to locate and transfer data in the storage device is called the time. a) sequence; b) access; c) value 2. memories have no moving parts. a) electronic; b) mechanical; c) electromechanical 3. were the main elements used for primary memory in digital computers for many years. a) cores; b) tapes; c) disks 4. is more commonly used for memory at present. a) bipolar semiconductor; b) mos; c) field-effect transistor 5. magnetic disks constitute storage media. a) internal; b) primary; c)secondary 6. data are stored codes in primary as well as insecondary storage. a) digital; b) binary; c) numerical 7. data access time is in electronic memories than that in electromechanical memories. a) longer; b) much longer; c) shorter 8. electronic memories have capacities for data storage. a) more; b) larger; c) less

Информатика

Ответы

slava-m-apt
1b. access 2a. electronic 3a. cores 4b. mos 5c. secondary 6b. binary 7c. shorter 8 - непонятны варианты ответов. в сравнении с чем?
Жуков219
Var a,x: integer; sum:   integer; begin   writeln('введите целое число'); readln( a ); x: =  a;   sum : =  0;   while ( x< > 0 ) do   begin       sum  : =  sum   + (x mod 10);       x : = x div 10;   end; writeln( 'сумма цифр числа ',a,' = ',  sum   ); пока  х  больше нуля: находим остаток от деления  n  на 10 (т.е. последнюю цифру числа), добавить его к сумме и увеличить произведение; избавляемся от последнего разряда числа  n  путем деления нацело на число 10.
Баранов955
Код pascal. const  n = 10; var      a: array[1..n] of integer;       i, c: integer; begin      i : = 0;       while 1 = 1 do    begin          if i = 10 then break;           readln(c);           if (c < = 29) and (c > = -20) then begin              inc(i);               a[i] : = c;           end else writeln('число выходит за границы');     end;       writeln('готово');       readln; end.вродь как-то так

Ответить на вопрос

Поделитесь своими знаниями, ответьте на вопрос:

1. the time required for the computer to locate and transfer data in the storage device is called the time. a) sequence; b) access; c) value 2. memories have no moving parts. a) electronic; b) mechanical; c) electromechanical 3. were the main elements used for primary memory in digital computers for many years. a) cores; b) tapes; c) disks 4. is more commonly used for memory at present. a) bipolar semiconductor; b) mos; c) field-effect transistor 5. magnetic disks constitute storage media. a) internal; b) primary; c)secondary 6. data are stored codes in primary as well as insecondary storage. a) digital; b) binary; c) numerical 7. data access time is in electronic memories than that in electromechanical memories. a) longer; b) much longer; c) shorter 8. electronic memories have capacities for data storage. a) more; b) larger; c) less
Ваше имя (никнейм)*
Email*
Комментарий*