logo

Crowdly

Browser

Add to Chrome

Основи розробки програмного забезпечення на платформі Microsoft.NET

Looking for Основи розробки програмного забезпечення на платформі Microsoft.NET test answers and solutions? Browse our comprehensive collection of verified answers for Основи розробки програмного забезпечення на платформі Microsoft.NET at do.ipo.kpi.ua.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

public void Detach(IObserver o) => _sub.Remove(o);

Потенційна помилка Detach?

0%
0%
0%
0%
View this question
Що виведе згенерований код?

var data = new[]{ "cat","dog","dragonfly" };

var sel = data.MinBy(s => s.Length);

]]>
0%
0%
0%
0%
View this question
Що виведе згенерований код?

var data = new[] { "dog", "cat", "ant" };

var res = data.OrderBy(s => s[1]).First();

]]>
0%
0%
0%
0%
View this question

bot.Update(); // залежить від _state

Що виграє AI‑код зі State?

0%
0%
100%
0%
View this question

Який поведінковий патерн використано

0%
0%
0%
50%
50%
0%
0%
0%
View this question
Що виведе згенерований код?

var x = new[] { 1, 2, 3, 4, 5 };

var y = x.Where(n => n > 2).Select(n => n * n).Min();

]]>
50%
0%
0%
50%
View this question

Типовий спосіб вирішення певної проблеми, що часто зустрічається при проєктування архітектури програм

0%
0%
0%
0%
View this question

public abstract class RepoFactory

{

public TRepo Create

() where TRepo : IRepository, new()

=> new TRepo();

}

Головне обмеження такого підходу:

100%
0%
0%
0%
View this question

public class FirewallSocketProxy : ISocket

{

public FirewallSocketProxy(ISocket s,string[] block)=>(_s,_b)=(s,block);

private readonly ISocket _s; private readonly string[] _b;

public void Connect(string host,int port)

{

if(_b.Contains(host)) throw new SecurityException();

_s.Connect(host,port);

}

}

Правильне твердження:

100%
0%
0%
0%
View this question
Що виведе згенерований код?

int[] arr2 = {1,1,2,2,3,3};

var uniq = arr2.Distinct().OrderByDescending(n=>n);

]]>
100%
50%
50%
50%
View this question

Want instant access to all verified answers on do.ipo.kpi.ua?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome