kuliba
?>

$$$ 1Computers are connected to a single hub through a cable in the topology:A) Mesh topology B) Bus topology C) Star topologyD) Tree topology E) Hybrid F) Ring topology$$$ 2It is :A) Moon topology B) Bus topology C) A circle topologyD) Mesh topology E) TREE topology F) Star topologyG) Hybrid topology$$$ 3 Network Topology exist:A) Moon B) Bus C) A circle D) LineE) Ring F) Bush G) Star$$$ 4Computers are connected to a root node forming a hierarchy:A) Moon B) Bus C) A circle D) TreeE) Ring F) Bush G) Star$$$ 5Command to view the IP- address of your computer:A) 2ip.ru B) ipconfig C) ip-configD) 2ip.kz E) http // ipconfig F) ip.ru$$$ 6An 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 InternetC) Protocol for accessing Internet services D) digital address of computerE) Uniform Resource Locator$$$ 7A Uniform Resource Locator (URL) is: A) a reference to a web resourceB) Protocol for accessing Internet servicesC) an application program for look at informationD) an organization for accessing in the InternetE) communication between computers $$$ 8URL consists of:A) protocol B) IP-adress C) file name D) topologyE) domainname F) login G) password $$$ 9Private cloud is used:A) at the scale of single organization B) across multiple organizationsC) at the community of consumers from organizations that solve common problemsD) across the globe E) general public$$$ 10Classification of computer networks by territory occupied:A) corporate B) local C) custom D) parentE) global F) specialized G) metropolitan$$$ 11The 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$$$ 12A computer which is connected to the Internet must have:A) IP Address B) Web server C) Home web pageD) Domain name E) Password F) Login$$$ 13A computer connected to the Internet must have:A) login B) domain name C) IP addressD) Password E) Web server$$$ 14E-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$$$ 15Exist IP address:A) continuous B) constant C) discrete D) dynamic E) static​

Информатика

Ответы

Alekseevna1064

type

 Товар = class

   public

   

   Наименование: string;

   Стоимость: real;

   СрокГодности: integer;

   Производитель: string;

   

   constructor (Наим: string; Стоим: real; Срок: integer; Произв: string);

   begin

     Наименование := Наим;

     Стоимость := Стоим;

     СрокГодности := Срок;

     Производитель := Произв;

   end;

   

   function ToString: string; override;

   begin

     Result := $'{Наименование}, {Стоимость}, {СрокГодности}, {Производитель}'

   end;        

   

 end;

 

begin

 var t1 := new Товар('Конфетка',250.6,24,'Артелька');

 var t2 := new Товар;

 t2.Наименование := 'Печенька';

 t2.Стоимость := 79;

 t2.СрокГодности := 36;

 Println(t1);

 Println(t2)

end.


Надо написать код программы Язык - ПаскальВот задания:1. Создать и инициализировать класс «товар», к
impulsmc715

//FIRST

#include <iostream>

using namespace std;

int main()

{

   int n1;//Первый элемент

   cin>>n1;

   int step;//Шаг прогрессии

   cin>>step;

   int quantity;//Какой элемент найти

   cin>>quantity;

   cout<<n1+ (quantity-1)*step;

   return 0;

}

//

//SECOND

//Использовал STL

#include <iostream>

#include <ctime>

#include <cstdlib>

#include <algorithm>

#include <vector>

using namespace std;

int main()

{

   srand(time(NULL));

   int n;

   cin>>n;

   vector<int>arr(n);

   for(int i = 0;i<n;i++){

       arr[i]=rand()%100;

   }

   sort(arr.begin(), arr.end());

   cout<<arr[n-1];

   return 0;

}

//4 - X3

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

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

$$$ 1Computers are connected to a single hub through a cable in the topology:A) Mesh topology B) Bus topology C) Star topologyD) Tree topology E) Hybrid F) Ring topology$$$ 2It is :A) Moon topology B) Bus topology C) A circle topologyD) Mesh topology E) TREE topology F) Star topologyG) Hybrid topology$$$ 3 Network Topology exist:A) Moon B) Bus C) A circle D) LineE) Ring F) Bush G) Star$$$ 4Computers are connected to a root node forming a hierarchy:A) Moon B) Bus C) A circle D) TreeE) Ring F) Bush G) Star$$$ 5Command to view the IP- address of your computer:A) 2ip.ru B) ipconfig C) ip-configD) 2ip.kz E) http // ipconfig F) ip.ru$$$ 6An 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 InternetC) Protocol for accessing Internet services D) digital address of computerE) Uniform Resource Locator$$$ 7A Uniform Resource Locator (URL) is: A) a reference to a web resourceB) Protocol for accessing Internet servicesC) an application program for look at informationD) an organization for accessing in the InternetE) communication between computers $$$ 8URL consists of:A) protocol B) IP-adress C) file name D) topologyE) domainname F) login G) password $$$ 9Private cloud is used:A) at the scale of single organization B) across multiple organizationsC) at the community of consumers from organizations that solve common problemsD) across the globe E) general public$$$ 10Classification of computer networks by territory occupied:A) corporate B) local C) custom D) parentE) global F) specialized G) metropolitan$$$ 11The 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$$$ 12A computer which is connected to the Internet must have:A) IP Address B) Web server C) Home web pageD) Domain name E) Password F) Login$$$ 13A computer connected to the Internet must have:A) login B) domain name C) IP addressD) Password E) Web server$$$ 14E-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$$$ 15Exist IP address:A) continuous B) constant C) discrete D) dynamic E) static​
Ваше имя (никнейм)*
Email*
Комментарий*

Популярные вопросы в разделе

shuxratmaxmedov
Zakharov Lilit
juliaydodova
angelina-uj1350
toxicfish
korchags19983941
Fateevsa9
vovlyur
Апраксин Владимир897
vadimkayunusov
iivanovar-da
lider123
Gstoremsk62
Yuliya
Zheleznyakova