Consider the Countries table discussed in the text. The table has three fields - name, pop2014, and monetaryUnit - with name as the key field. Give a LINQ query that can be used to show the records from Countries whose 2014 population is greater than 100 million.

What will be an ideal response?

``` Dim query = From country In MegacitiesDataSet.Countries
Where country.pop2014 > 100
Select country.name, country.pop2014, country.monetaryUnit

```

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a specific piece of information that is stored in every record

A) record B) relationship C) attribute D) link

Computer Science & Information Technology

Computers are connected to a local network through _____.

A. network storage B. a router C. the Internet D. a cable

Computer Science & Information Technology