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

1. The object of the database is … a)File
b)Cell
c)Column
d)Table
e)Format

What are the differences between 5th generation computer and other generation computers?
a) Scientific code
b) Technological advancement
c) Object Oriented Programming
d) All of the above
e) None of the above

2. Multithreading:
a) Allows different parts of a single program to run concurrently
b) Allows two or more users to run programs at the same time Some operating systems permit hundreds or even thousands of concurrent users
c) Supports running a program on more than one CPU
d) Allows more than one program to run concurrently
e) Responds to input instantly General-purpose operating systems, such as DOS and UNIX, are not real-time

3. The first mechanical computer, created by ... in 1822
a) Charles Babbage
b) Konrad Zuse
c) Alan Turing
d) John Vincent Atanasoff
e) J. Presper Eckert and John Mauchly

4. Which programming language does Microsoft Word use to create macros?
a) Visual Basic
b) Pascal
c) C/C++
d) PHP
e) Delphi

5. What is required when more than one person uses a central computer at the same time?
a) Light pen
b) Mouse
c) Digitizer
d) Terminal
e) None of the above

6. The intersection of a column and row in a spreadsheet is called a bon or
a) Key
b) Cell
c) Field
d) Menu
e) None of the above

7. Wizard to create a database
a) Allows you to use templates for creating database objects
b) Enables the use of links in data processing
c) is a tool to create a database schema
d) is a tool for the implementation of projects
e) Selects data from one or more tables

8. MS Access does not work
a) Tables.
b) Slides.
c) the form.
d) Query
e) Records.

9. Archiver - a ...
a) The totality of the data and programs stored in compressed form
b) The process of file compression to save disk space
c) Save a copy of the original files of their compression
d) Program to compress files to save disk space
e) The program for the treatment of viruses

10. WAN Hardware does not include:
a) Multiplexer
b) Router
c) Bridge
d) None of these
e) ALU

11. The first computer company was the ... and was founded in 1949 by J. Presper Eckert and John Mauchly.
a) Electronic Controls Company
b) Microsoft corporation
c) Apple
d) Hewlett Packard
e) Samsung Electronics

13. What is Information system?
a) Information system consists of a series of related instructions, organized for a common purpose, that tells the computer what tasks to perform and how to perform them.
b) Information system is simply the act of transferring information from one place to another
c) Information system is set of processing methods
d) Information system is the physical part of a computer
e) Information system is an organized system for the collection, organization, storage of information

14. Which language was devised by Dr. Seymour Aubrey Papert?
a) FORTRAN
b) APL
c) PASCAL
d) LOGO
e) None of the above

15. ... is a device that performs signal conversion
a) Plotter
b) Modem
c) Keyboard
d) Plotter
e) Modulator

16. Which language was developed by professor Niklaus Wirth in 1970-1971?
a) APL
b) PASCAL
c) LOGO
d) FORTRAN
e) None of the above

17. Provider is ...
a) A unit of information transmitted by Internet Protocol
b) Username
c) Commercial service, providing its customers access to the Internet
d) System Administrator
e) Enterprise user

18. Major security problems are ...
a) Virus, Hacker, Malware, Trojan horses, Password cracking
b) Virus, Paradox, Malware, Trojan horses, Password editing
c) Virus, Hacker, Protect, Trojan horses, Password cracking
d) Virus, Hacker, Malware, Applications, Password editing
e) Virus, Hockey, Malware, Trojan horses, Password keeping

19. Basic elements of a computer-based information system (CBIS):
a) Antivirus program, Software, Data, Procedures, People, Communications
b) Hardware, Software, Utilities, Procedures, People, Communications
c) Date, Information, Data, Procedures, People, Communications
d) Hardware, Software, Data, Procedures, People, Communications
e) Chat, Software, Data, Users, People, Internet

20. Element base of the first generation of computers are
a) Integrated Circuits
b) Large integrated circuits
c) Semiconductor circuit
d) Vacuum lamps
e) Diodes and transistors

Показать ответ
Ответ:
kivonen3p08qoq
kivonen3p08qoq
19.09.2020 13:27
Вопрос с подвохом, пропускная меряется не от возможной передачи на стороне провайдера или пользователя, а от версии протокола 2СH (2 цэ-аш). Рассмотрим 2 последние версии. Протокол 2015 года поддерживал пропускную вплоть до 20 MB/WEBM. Стандарт нового протокола поразили многих экспертов, скорость была снижена вдвое. Но сделано это было в связи с отказом многих производителей сетевого оборудования устанавливать расширяющие микросхемы PassCODE для поддержки тех самых 20 MB/WEBM. Может в будущем, с большим распространением PassCODE пропускную поднимут, но пока приходится с этими ограничениями смирится и перекодировать WEBM что несомненно, приведет к ухудшению их качества. 
0,0(0 оценок)
Ответ:
nyarokhno
nyarokhno
06.05.2022 19:01
//1. Переборный алгоритм Евклида (цикл repeat)

var a, b, с: integer; 

begin

  write('Введите два числа: ');

  readln(a, b);

  if a < b then с := a + 1 else с := b + 1;

repeat с := с - 1

  until (a mod с = 0) and (b mod с = 0);

  write('NOD = ', с)

end.

 

//2. Алгоритм с вычитанием (цикл while)

var  a, b: integer;

begin

  write('a = ');

  readln(a);

  write('b = ');

  readln(b);

  while a <> b do

    if a > b then

      a := a - b

    else

      b := b - a;

  writeln('NOD = ', a);

end.

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