Server Side Programming Articles - Page 1627 of 2650

Find the largest area rectangular sub-matrix whose sum is equal to k in C++

Arnab Chakraborty
Updated on 20-Aug-2020 07:25:23

296 Views

Suppose we have a 2D matrix mat and a value K, we have to find the longest rectangular submatrix whose sum is same as K.So, if the input is like28-56-778-311-1443-43110And K = 9then the output will be Top-Left point is (1, 0) and Bottom-Right point is (3, 2).-77811-144-431To solve this, we will follow these steps −MAX := 100Define a function sum_k(), this will take one array arr, start, end, n, k, Define one mapsum := 0, maximum_length := 0for initialize i := 0, when i < n, update (increase i by 1), do −sum := sum + arr[i]if sum is ... Read More

How to change the column names in R within aggregate function?

Nizamuddin Siddiqui
Updated on 29-Aug-2020 07:36:13

548 Views

The column names in an R data frame are an important part of the data because by reading the column names any viewer is likely to understand the theoretical background behind it. If that name is not appropriate then we might want to change it. While using the aggregate function to calculate mean or any other statistical summary, it is possible to change that name with another name by defining the new name with list.ExampleConsider the below data frame −set.seed(1) x1

How to create a vector with zero values in R?

Nizamuddin Siddiqui
Updated on 20-Aug-2020 05:49:42

636 Views

In data analysis, sometimes we need to use zeros for certain calculations, either to nullify the effect of a variable or for some other purpose based on the objective of the analysis. To deal with such type of situations, we need a zero value or a vector of zeros. There are many ways to create a vector with zeros in R. The important thing is the length of the vector.Examples> x1 x1 [1] 0 0 0 0 0 0 0 0 0 0 > x2 x2 [1] 0 0 0 0 0 0 0 0 0 0 0 0 0 ... Read More

What is parameter binding in C# ASP.NET WebAPI?

Nizamuddin Siddiqui
Updated on 19-Aug-2020 14:21:24

2K+ Views

Binding is a process to set values for the parameters when Web API calls a controller action method.Web API methods with the different types of the parameters and how to customize the binding process.If the parameter is a simple type like int, bool, double, etc., Web API tries to get the value from the URI (Either from route data or from the Query String)if the parameter is a complex type like Customer, Employee, etc., then the Web API Framework tries to get the value from the request body.We can change this default behavior of the parameter binding process by using ... Read More

How to configure C# ASP.NET WebAPI in web.configure file?

Nizamuddin Siddiqui
Updated on 19-Aug-2020 14:20:18

1K+ Views

No we cannot configure WEB API in web.configure file.Web API supports code based configuration. It cannot be configured in web.config file.We can configure WEB API, to customize the behaviour of Web Api hosting Infrastructure and component such asRoutesFormattersFiltersDependency ResolverMessage HandlersParameterBindingRulesPropertiesServicesRoutes − The public methods of the controller are called action methods or simply actions.When the Web API framework receives a request, it routes the request to an action. To determine which action to invoke, the framework uses a routing tableroutes.MapHttpRoute(    name: "API Default",    routeTemplate: "api/{controller}/{id}",    defaults: new { id = RouteParameter.Optional } );Formatters −ASP.NET Core MVC supports ... Read More

What are the advantages of using C# ASP.NET WebAPI?

Nizamuddin Siddiqui
Updated on 19-Aug-2020 14:15:49

2K+ Views

WEB API is a better choice for simpler, light weight services. WEB API can use any text format including XML and is faster than WCF.It works the way HTTP works using standard HTTP verbs like GET, POST, PUT, DELETE for all the crud operation.Complete Support for routingResponse generated in Json and XML format using MediaTypeFormatter.It has the ability to be hosted in IIS as well as self-host outside of IIS.Supports Model binding and Validation.Support for ODATA.Supports stateless transfer of data.Supports Url patterns and Http methods.Note − ODATA (Open Data Protocol )is an open protocol which allows the creation and consumption ... Read More

What are Async Streams in C# 8.0?

Nizamuddin Siddiqui
Updated on 19-Aug-2020 14:14:19

211 Views

C# 8.0 introduces async streams, which model a streaming source of data. Data streams often retrieve or generate elements asynchronously.The code that generates the sequence can now use yield return to return elements in a method that was declared with the async modifier.We can consume an async stream using an await foreach loop.This below Syntaxstatic IEnumerable Message(){    yield return "Hello!";    yield return "Hello!"; } Can be replaced by IAsyncEnumerable static async IAsyncEnumerable MessageAsync(){    await Task.Delay(2000);    yield return "Hello!";    await Task.Delay(2000);    yield return "Hello!"; }Exampleclass Program{    public static async Task Main(){       ... Read More

How to use indexers in C# 8.0?

Nizamuddin Siddiqui
Updated on 19-Aug-2020 14:11:26

122 Views

^ Operator − It is known as the index from the end operator.It returns an index that is relative to the end of the sequence or collection.It is the most compact and easiest way to find the end elements compare to earlier methods.company.listEmployees[^2].Name = "Employee 2 Name Changed using new Syntax";company.listEmployees[^5].Name = "Employee 5 Name Changed using new Syntax";company.listEmployees[^8].Name = "Employee 8 Name Changed using new Syntax";Examplepublic class Employee{    public int EmployeeId { get; set; }    public string Name { get; set; }    public string Gender { get; set; } } public class Company{    public List ... Read More

How to write the new Switch Expression in C# 8.0?

Nizamuddin Siddiqui
Updated on 19-Aug-2020 14:08:02

1K+ Views

The switch expression provides for switch-like semantics in an expression contextswitch is a selection statement that chooses a single switch section to execute from a list of candidates based on a pattern match with the match expression.The switch statement is often used as an alternative to an if-else construct if a single expression is tested against three or more conditions.ExampleNew way of Writing the Switchvar message = c switch{    Fruits.Red => "The Fruits is red",    Fruits.Green => "The Fruits is green",    Fruits.Blue => "The Fruits is blue" };Example 1class Program{    public enum Fruits { Red, Green, ... Read More

What are Ref locals and Ref returns in C# 7.0?

Nizamuddin Siddiqui
Updated on 19-Aug-2020 14:05:34

648 Views

A reference return value allows a method to return a reference to a variable, rather than a value.The caller can then choose to treat the returned variable as if it were returned by value or by reference.The caller can create a new variable that is itself a reference to the returned value, called a ref local.In the below example even though we modify the color it doesn't have any mpact on the original array colorsExampleclass Program{    public static void Main(){       var colors = new[] { "blue", "green", "yellow", "orange", "pink" };       string color ... Read More

Advertisements