Question: QUESTION 31 To successfully import a CSV file into a database table the table and its structure must exist in advance. True False QUESTION 32
QUESTION 31
To successfully import a CSV file into a database table the table and its structure must exist in advance.
True
False
QUESTION 32
In order for a wxPython ListCtrl widget to display rows and columns of data we need to _____.
| set the style argument in the constructor to wx.LC_TABLE | ||
| set the style argument in the constructor to wx.LC_REPORT | ||
| set the layout argument in the constructor to wx.LC_TABLE | ||
| set the layout argument in the constructor to wx.LC_REPORT |
QUESTION 33
Which of the following are official SQLITE data types? Choose all that apply.
| Integer | ||
| Not | ||
| Text | ||
| Real |
QUESTION 34
To have a SQL statement implemented you must _____.
| have the SQL string be an argument of the SELECT method of the cursor variable | ||
| have the SQL string be an argument of the execute method of the cursor variable | ||
| have the SQL string be an argument of the execute method of the connection variable |
QUESTION 35
"If a row in a database table has a unique identifier, this identifier is called _____"
| a primary key | ||
| a nullable key | ||
| an auto key | ||
| a foreign key |
QUESTION 36
Which of the following would correctly create a new table?
| "CREATE TABLE toppings (FirstTopping, SecondTopping) TYPES ( text, text)" | ||
| either a or b would work | ||
| "CREATE TABLE toppings (FirstTopping text, SecondTopping text)" |
QUESTION 37
"For an instance of a class that inherits from wx.Dialog, when the dialog is closed ____."
| the GetButtonId() method returns the id of the button used to close the window. | ||
| the ShowModal() method returns the id of the button used to close the window. | ||
| the OnClose() method returns the id of the button used to close the window. |
QUESTION 38
A row in a database table is called ____.
| a field | ||
| a record | ||
| a collection | ||
| a tuple |
QUESTION 39
"When adding a widget to a box sizer, the border argument _____."
| draws a dark-lined border around the widget 2 pixels thick by default. | ||
| draws a dark-lined border around the widget 1 pixels thick by default. | ||
| determines the padding in millimeters that is used to separate if from other widgets | ||
| determines the padding in pixels that is used to separate it from other widgets |
QUESTION 40
A SQL ____ statement allows you to remove one or several records from a table
| erase | ||
| cut | ||
| delete | ||
| remove |
Step by Step Solution
There are 3 Steps involved in it
QUESTION 31 True The table and its structure must exist before importing data into it QUESTION 32 se... View full answer
Get step-by-step solutions from verified subject matter experts
