sir i want know how to fill vat return
How do I show line numbers in visual studio?
Draw the IP datagram header format. “IP datagram has a checksum field still it is called an unreliable protocol”. Justify?
Where is apache spark used?
What are truncate options available in sql server? : sql server database administration
Types of Session handling methods in Django?
What kind of lifestyle do you expect to have in banking?
What is check-in?
Is India a developed, developing or an under developed country?
How do I start wls and configure jms?
What is a Storage keys?
Explain “@@rowcount” and “@@error” in sql server?
What is meant by type specifiers?
If you don’t declare a return value, what type of return value is assumed?
Roads concatenation Problem
Consider we have some GIS (Geo Information System) operating
over some road network. Each road represented as array of
two-dimensional geographical points. Road network is a set
of roads.
System has function called Concatenate(). This function
takes raw road network and should return optimized road
network. Optimization lies in concatenating roads with
matching start or end points, i.e. if road AB end point
matches road BC start point, then optimized network should
contain concatenated road AC. Optimized network shouldn’t
contain two roads which can be concatenated.
Your task is to suggest set of test cases for Concatenate()
function in order to make sure it works correctly.
public interface IPoint
{
double Lat { get; }
double Lon { get; }
}
public Road : List