daniilprok2004
25.01.2022 15:15

$$$ 1

Computers are connected to a single hub through a cable in the topology:

A) Mesh topology B) Bus topology C) Star topology

D) Tree topology E) Hybrid F) Ring topology

$$$ 2

It is :

A) Moon topology B) Bus topology C) A circle topology

D) Mesh topology E) TREE topology F) Star topology

G) Hybrid topology

$$$ 3

Network Topology exist:

A) Moon B) Bus C) A circle D) Line

E) Ring F) Bush G) Star

$$$ 4

Computers are connected to a root node forming a hierarchy:

A) Moon B) Bus C) A circle D) Tree

E) Ring F) Bush G) Star

$$$ 5

Command to view the IP- address of your computer:

A) 2ip.ru B) ipconfig C) ip-config

D) 2ip.kz E) http // ipconfig F) ip.ru

$$$ 6

An Internet service provider is:

A) an application program that provides a way to look at and interact with all the information

B) an organization that provides services for accessing in the Internet

C) Protocol for accessing Internet services

D) digital address of computer

E) Uniform Resource Locator

$$$ 7

A Uniform Resource Locator (URL) is:

A) a reference to a web resource

B) Protocol for accessing Internet services

C) an application program for look at information

D) an organization for accessing in the Internet

E) communication between computers

$$$ 8

URL consists of:

A) protocol B) IP-adress C) file name D) topology

E) domainname F) login G) password

$$$ 9

Private cloud is used:

A) at the scale of single organization B) across multiple organizations

C) at the community of consumers from organizations that solve common problems

D) across the globe E) general public

$$$ 10

Classification of computer networks by territory occupied:

A) corporate B) local C) custom D) parent

E) global F) specialized G) metropolitan

$$$ 11

The e-mail address in the Internet: [email protected] "Name" of the computer on which the mail is stored:

A) ru B) mtu-net.ru C) mtu-net D) user_name E) net.ru

$$$ 12

A computer which is connected to the Internet must have:

A) IP Address B) Web server C) Home web page

D) Domain name E) Password F) Login

$$$ 13

A computer connected to the Internet must have:

A) login B) domain name C) IP address

D) Password E) Web server

$$$ 14

E-mail address consists of:

A) Username @ Domainname B) [email protected]

C) [email protected] service D) Iinternet [email protected]

E) Iinternet [email protected] Domainname F) [email protected] Iinternet service

$$$ 15

Exist IP address:

A) continuous B) constant C) discrete D) dynamic E) static

Нажмите на рекламу ниже и сразу увидите ответ
Популярные вопросы:
Ответ:
tatyana171283t
19.05.2021 03:38
ПОСЛЕДОВАТЕЛЬНОСТЬ ФИБОНАЧЧИ, математическая ПОСЛЕДОВАТЕЛЬНОСТЬ, каждый член которой является суммой двух предыдущих. Таким образом, если энный член последовательности обозначается хn, то для всей последовательности справедливым будет уравнение: хn+2=хn+хn+1, первыми двумя членами которого будут x1=l и x2=1. Порядок последовательности при этом таков: 1, 1, 2, 3, 5, 8, 13, 21..., следующим числом будет 34, т. к. сумма 13 и 21 равна 34 и т.д. Когда число n становится очень большим, отношение соответствующих членов устремляется к величине (Ц5+l)/2. Это соотношение называется золотым. В природе последовательность Фибоначчи можно проследить на примерах спирального развития сегментов раковины и лепестков подсолнуха, расходящихся лучами из одной точки в центре цветка. см. также ЗОЛОТОЕ СЕЧЕНИЕ. 
0,0(0 оценок)
Ответ:
lozovskaya2004
06.05.2022 18:05
1) Все правильно, это и будет разность между максимумом и минимумом
program one;
var input,max,min:integer;
    i:integer;
begin
  readln(input);
  max:=input;
  min:=input;
  for i:=2 to 25 do begin
    readln(input);
    if input>max then max:=input;
    if input<min then min:=input;
  end;
  writeln(max-min);
end.

2) Гораздо проще не суммировать в цикле степени половины, а воспользоваться тем, что 1+\frac12+...+\frac1{2^n}=2-\frac1{2^n}.
program two;
var res:real;
    i,n:integer;
begin
  readln(n);
  res:=0.5;
  for i:=2 to n do res*=0.5;
  res:=2-res;
  writeln(res);
end.

3) Здесь существует несколько реализации; в частности, можно было просто считать число как строку и возвратить ее в перевернутом виде (ReverseString(s)), не заботясь о переполнении, однако я решил, что по логике задания нужно делать через числа. Впрочем, для выявления случаев переполнения все равно используется переворот строки
program three;
var a,b:int64; {можно использовать uint64, если в вашей среде Паскаля  этот тип поддерживается, тогда число в строке ниже надо заменить}
begin
  readln(a);
  if ReverseString(IntToStr(a))>'9223372036854775807' then writeln('Слишком много') else begin
    while a>0 do begin
      b:=10*b+a mod 10;
      a:=a div 10;
    end;
    writeln(b);
  end;
end.
0,0(0 оценок)
Полный доступ
Позволит учиться лучше и быстрее. Неограниченный доступ к базе и ответам от экспертов и ai-bota Оформи подписку
logo
Начни делиться знаниями
Вход Регистрация
Что ты хочешь узнать?
Спроси ai-бота