4.0k views
5 votes
**NEED ANSWER NOW.. IM BEHIND ON ASSIGNMENTS**

The following was on your coworker's screen.

// The connection string assumes that the access
// Northwind.mdb is located in the c:\Data folder.
string connectionString =
"Driver={Microsoft Access Driver (*.mdb)};"
+ "Dbq=c:\\Data\\Northwind.mdb;Uid=Admin;Pwd=;";

// Provide the query string with a parameter placeholder.
string queryString =
"SELECT ProductID, UnitPrice, ProductName from products "
+ "WHERE UnitPrice > ? "
+ "ORDER BY UnitPrice DESC;";

He is most likely a _____.

A) database administrator
B) software developer
C) network administrator
D) project manager

User Mwalter
by
6.2k points

1 Answer

5 votes

Answer:

B) software developer

Step-by-step explanation:

The use of queries is commonly associated but not limited to database administrators. However, in this case is clear that the coworker is a Software developer as the whole screen is a code that uses SQL in order to extract data.

User Glynn Bird
by
5.6k points