Answer:
Boolean
Explanation:
If statement condition always returns true or false,which is a boolean data type.
X is true or false
it maybe a variable or an expression.
Answer:
LIKE.
Explanation:
A structured query language (SQL) can be defined as a domain-specific language designed and developed for managing the various data saved in a relational or structured database.
In Computer programming, any word restricted for use, only in object names because they belong to the SQL programming language are called reserved word.
Hence, these reserved words can only be used as the name of an object but not as an identifier e.g the name of a function, label or variable.
Some examples of reserved words in structured query language (SQL) are UPDATE, GROUP, CURRENT_USER, CURRENT_DATE, CREATE, DELETE etc.
Hence, SQL allows the use of special operators in conjunction with the WHERE clause. A special operator used to check whether an attribute value matches a value contained within a subset of listed values is LIKE.
The program files are called exe's
Answer:
<em>time()</em> or <em>time.time()</em>
Explanation:
The time() method from the <em>time </em>module gives the amount of seconds after epoch, or Jan 1, 1970. Running this in the Python shell would return a number like this:
<em>>>> time.time()</em>
<em>1652747529.0429285</em>