Question: An .mde file is a special version of an Access .mdb file and contains information related to a database. Which of the following is true about an .mde file?
A
It contains compiled VBA code to prevent users from viewing code.
B
It allows users to view, but not modify VBA code
C
It can be saved as an .mdb file in order to make design changes.
D
It allows users to import forms and reports from other databases
Question: Which property of the Group Header, group footer, or detail section should be changed if we want each group or record in a report to start on a new page?
Question: If a table named students has a column called Studentname storing the names of the students, what will be the correct query to display the names of the students in reverse alphabetical order?
A
Select Studentname from students reverse
B
Select Studentname from students reverse name
C
Select Studentname from students order by name descending
D
Select Studentname from students order by name Reverse
E
Select Studentname from students order by Studentname desc