nerdexam
IBM

C2090-558 · Question #93

Given the following table definition: CREATE TABLE t1(col1 BOOLEAN); Which of the following statements will fail to insert a row?

The correct answer is C. INSERT INTO t1 values (1). See the full explanation below for the reasoning.

Question

Given the following table definition:

CREATE TABLE t1(col1 BOOLEAN); Which of the following statements will fail to insert a row?

Options

  • AINSERT INTO t1 values ('t');
  • BINSERT INTO t1 values ('f');
  • CINSERT INTO t1 values (1);
  • DINSERT INTO t1 values (NULL);

How the community answered

(35 responses)
  • A
    6% (2)
  • B
    14% (5)
  • C
    77% (27)
  • D
    3% (1)

Community Discussion

No community discussion yet for this question.

Full C2090-558 Practice