IN the statement, INR/USD: 1.1250/1.1251, which of the following represent bid quote?
1. 1.1250
2. 1.1252
3. 1.1251-1.1250

IN the statement, INR/USD: 1.1250/1.1251, which of the following represent bid quote?
1. 1.1250
2. 1.1252
3. 1.1251-1.1250 Correct Answer Only statement 1 is correct

Related Questions

What does the following query find?
(SELECT DISTINCT r.sid
FROM boats b, reserves r
WHERE b.bid = r.bid
AND b.color = 'red')
MINUS
(SELECT DISTINCT r.sid
FROM boats b, reserves r
WHERE b.bid = r.bid
AND b.color = 'green')
Consider the following three relations in a relational database. Employee(eId, Name), Brand(bId, bName), Own(eId, bId) Which of the following relational algebra expressions return the set of eIds who own all the brands? 
Consider the following relation schema Sailors(sid, sname, rating, age) Reserve(sid, bid, day) Boats(bid, bname, color) What is the equivalent of following relational algebra query in SQL query. πsname((σcolor= ‘red’Boats) ⨝ Reserves ⨝ Sailors)