The ____ operation uses the === (triple equal sign) to compare two operands for equality and data type.

A. equal
B. strict equal
C. comparison


Answer: B

Computer Science & Information Technology

You might also like to view...

Suppose you have the following struct definition and typedef statements in your program:

What will be an ideal response? ``` struct N { double d; N *next; }; typedef N* node_ptr; node_ptr p1; Now suppose further that p1 points to a node of type N in a linked list. Write code that makes p1 point to the next node on the linked list. ```

Computer Science & Information Technology

How many times will this loop execute?

``` for ( int i = 1 ; i <= 1 0 ; i++) System.out.println ( i ) ; ```

Computer Science & Information Technology

The folder structure created by Windows is a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

____ images are photos used in public interest.

a. Editorial-rights b. Royalty-free c. Rights-protected d. Public domain

Computer Science & Information Technology