Write a statement that sets the flag valid id to true when both of the following conditions are true. Assume valid_id has been initialized as false.
• id is above 999
• id is below 10000
The solution using direct assignment of logic is:
```
LET valid_id = id > 999 AND id < 10000
```
An alternative solution using an IF statement is:
```
IF id > 999 AND id < 10000 THEN valid_id = true
```
You might also like to view...
Which of the following is NOT something you should do when participating in a social network?
A) Link to additional information. B) Post frequently, but not too frequently. C) Accept every friend request you receive. D) Use proper spelling.
Data entered in a query is actually stored in the underlying table(s).
Answer the following statement true (T) or false (F)
Android does not support tethering.
Answer the following statement true (T) or false (F)
Estimating the number of websites and webpages is easy because of the dynamic nature of the web.
Answer the following statement true (T) or false (F)