База ответов ИНТУИТ

Программирование на ASP.NET

<<- Назад к вопросам

Какая информация содержится в пространстве имен System.Data?

(Отметьте один правильный вариант ответа.)

Варианты ответа
базовые классы, наследуемые классами поставщиков
ключевые контейнерные классы, моделирующие сами данные(Верный ответ)
структуры, соответствующие родным типам данных SQL Server
Похожие вопросы
Какая информация содержится в сертификате, установленном на сервере?
Задан следующий код:
System.Web.UI.WebControls.Table table =    new System.Web.UI.WebControls.Table();form1.Controls.Add(table);table.BorderWidth = 1;for (int row = 0; row < 5; row++){    TableRow tr = new TableRow();    table.Rows.Add(tr);    for (int col = 0; col < 3; col++)    {        TableCell tc = new TableCell();        tr.Cells.Add(tc);        tc.Text = string.Format("{{{0},{1}}}",row + 1, col + 1);        tc.BorderWidth = 1;        if (row % 2 == 0)            tc.BackColor = System.Drawing.Color.Moccasin;        else             tc.BackColor = System.Drawing.Color.PowderBlue;    }}                
Сколько столбцов будет содержать таблица table?
Задан следующий код:
System.Web.UI.WebControls.Table table =    new System.Web.UI.WebControls.Table();form1.Controls.Add(table);table.BorderWidth = 1;for (int row = 0; row < 3; row++){    TableRow tr = new TableRow();    table.Rows.Add(tr);    for (int col = 0; col < 5; col++)    {        TableCell tc = new TableCell();        tr.Cells.Add(tc);        tc.Text = string.Format("{{{0},{1}}}",row + 1, col + 1);        tc.BorderWidth = 1;        if (row % 2 == 0)            tc.BackColor = System.Drawing.Color.Moccasin;        else             tc.BackColor = System.Drawing.Color.PowderBlue;    }}                
Сколько столбцов будет содержать таблица table?
Задан следующий код:
System.Web.UI.WebControls.Table table =    new System.Web.UI.WebControls.Table();form1.Controls.Add(table);table.BorderWidth = 1;for (int row = 0; row < 5; row++){    TableRow tr = new TableRow();    table.Rows.Add(tr);    for (int col = 0; col < 3; col++)    {        TableCell tc = new TableCell();        tr.Cells.Add(tc);        tc.Text = string.Format("{{{0},{1}}}",row + 1, col + 1);        tc.BorderWidth = 1;        if (row % 2 == 0)            tc.BackColor = System.Drawing.Color.Moccasin;        else             tc.BackColor = System.Drawing.Color.PowderBlue;    }}                
Сколько строк будет содержать таблица table?
Сколько событий имеет класс System.Web.UI.WebControls.Table?
Сколько событий имеет класс System.Web.UI.WebControls.HyperLink?
Сколько событий имеет класс System.Web.UI.WebControls.LinkButton?
В конфигурационном файле web.config задана строка соединения:
<?xml version="1.0"?><configuration>	<connectionStrings>		<add name="NorthwindDB" connectionString="Data Source=localhost;			Initial Catalog=Northwind; Integrated Security=SSPI" />	</connectionStrings>	<system.web>	</system.web></configuration>                
Какие утверждения являются верными?
В конфигурационном файле web.config задана строка соединения:
<?xml version="1.0"?><configuration>	<connectionStrings>		<add name="NorthwindDB" connectionString="Data Source=localhost;			Initial Catalog=Northwind; Integrated Security=SSPI" />	</connectionStrings>	<system.web>	</system.web></configuration>                
Какие утверждения являются неверными?
В конфигурационном файле web.config задана строка соединения:
<?xml version="1.0"?><configuration>	<connectionStrings>		<add name="NorthwindDB" connectionString="Data Source=localhost;			Initial Catalog=Northwind; Integrated Security=SSPI" />	</connectionStrings>	<system.web>	</system.web></configuration>                
Какие утверждения являются верными?