The first coolant used in refrigeration was
B.) Ice
repeat
j+1
repeat
display i *j
j<- j+2
until j = 5
if <- i +1
until i = 5
b. Deliver elegant presentations to a large audience easily
c. Create professional documents with an intuitive WYSIWYG interface
d. Organize, store, and retrieve large amounts of information easily
Answer: (D) Organize, store, and retrieve large amounts of information easily
Explanation:
The database program basically helps to store and organize the data or information easily in the database system. The database program is the backbone of the business information system and we can also retrieve the huge amount of data easily.
It basically provide various types of functions such as we can easily create the file, update. data entry and also report the file. Now a days, the data program is famous by the term DBMS (Database management system).
Therefore, Option (D) is correct.
The environment stops two instructions from snapping together if they cannot be combined to form a valid assertion. Via preventing syntax problems in this way, block-based programming environments maintain the practice of writing programs by piecemeal assembly of statements.
Why do syntax errors happen?
When a programmer enters an incorrect line of code, they have made a syntax error. Missing punctuation or misspelled names are the two most common syntax mistakes. In either a compiled or an interpreted programming language, a syntax error prevents the code from running.
The source code contains a syntax error, but the object code does not. A source program is created by a programmer using a word processor or editor and written in high level language.
To learn more about Syntax error refer to:
#SPJ1
Answer:
Select EmailAddress,max(total) from (Select EmailAddress, OrderID, sum(total) as total from OrderItems group by EmailAddress, OrderID) group by EmailAddress
Explanation:
First step is group the rows by email and order id and sum de total of orders
Select EmailAddress, OrderID, sum(total) as total from OrderItems group by EmailAddress, OrderID
Then you use the above query as a subquery grouping by the email and selecting the max value by client
Select EmailAddress,max(total) from (Select EmailAddress, OrderID, sum(total) as total from OrderItems group by EmailAddress, OrderID) group by EmailAddress