|
||||||
|
|
Access Developer 43 Lessons Welcome to Access Developer 43. Total running time is 64 minutes plus 55 minutes of FREE bonus material.
Lessons
Database FilesLinks
Resources
Questions?Please feel free to post your questions or comments below. If you have questions about a specific lesson, please specify the lesson number and the time index in the lesson where the issue occurs. Thank you! Subscribe for UpdatesIf you would like to be notified whenever changes are made to this page, new lessons are posted, or comments are made, click on the subscribe button.
QuizQ1. What is the main purpose of the append-only property in Microsoft Access?A. To allow updates without overwriting previous data in short text fields B. To track changes in a long text field by keeping the edit history C. To make a field read-only D. To convert numerical values to text automatically Q2. Why is it advised not to use the append-only property in a well-designed database? A. It is difficult to programmatically access the data B. It is prone to data loss during updates C. It is not properly relational and can cause performance issues with large text fields D. It does not work with Access reports Q3. Which of the following is NOT a benefit of using TempVars over global variables? A. TempVars can survive unhandled errors B. TempVars can store any data type C. TempVars automatically clean up memory when the database is closed D. TempVars can be used directly in queries as criteria Q4. How can you set a TempVar in VBA code? A. TempVars("TempVarName") = "Value" B. Dim TempVars As String: TempVars = "Value" C. Set TempVars = "TempVarName" D. Add TempVarName, Value Q5. What issue might arise from storing data in TempVars without proper type checking? A. Data inconsistency because TempVars are of variant type B. Limited storage capacity of TempVars C. TempVars cannot store textual data D. TempVars must be confined to a specific form Q6. In a scenario where a user logs off but the database remains open, what is a good practice regarding TempVars? A. Clear all TempVars upon user logoff using TempVars.RemoveAll B. Convert all TempVars to global variables C. Hide the TempVars from user view D. Backup TempVars to a table before user logs off Q7. Which VBA function can you use to loop through all TempVars in memory? A. For Each TempVar In TempVars B. While TempVar IsNot Nothing C. For Each Item In TempVars D. Do Until TempVar Is Empty Q8. What is the default scope of TempVars? A. Entire database session B. Single form or report C. Entire application, shared among databases D. Until the next query execution Q9. How do you use a TempVar as a criterion in a query? A. [TempVars].[TempVarName] B. TempVars!TempVarName C. TempVars("TempVarName") D. #TempVars.TempVarName# Q10. What is the primary advantage of using TempVars for storing logged-in user information? A. They persist through application crashes B. They enforce user input validation C. TempVars can be easily stored in a table D. They can be directly assigned an object like a form control Answers: 1-B; 2-C; 3-C; 4-A; 5-A; 6-A; 7-A; 8-A; 9-B; 10-A DISCLAIMER: Quiz questions are AI generated. If you find any that are wrong, don't make sense, or aren't related to the video topic at hand, then please post a comment and let me know. Thanks. |
||||||||||||||||||||||||||
|
| |||
| Keywords: access developer 43 lessons PermaLink Access Developer 43 Lessons |