Online Access Free C2090-556 Practice Test
| Exam Code: | C2090-556 |
| Exam Name: | Informix 11.50 Application Developer |
| Certification Provider: | IBM |
| Free Question Number: | 115 |
| Posted: | May 22, 2026 |
Assuming you have an employee table that stores the salary for each employee. What will this query return?
SELECT AVG(salary), STDEV(salary) FROM employees;
Using the following statements to insert new rows into an empty table:
INSERT INTO customer(name,cc) VALUES ("Alice", encrypt_aes("1234567890123456"));
INSERT INTO customer(name,cc) VALUES ("Bob", encrypt_aes("1234567890123478"));
What are the two valid answers for the following SQL? (Choose two.)
SELECT * FROM customer WHERE decrypt_char(cc) MATCHES "1234*";