1. Question: (A)This is the =, +=, *=, /=, .= _______ Operators  (B)This is the >, <, <=, >=, ==________ Operators (C)This is the &&, ||, !, _______ Operators.

    A
    Logical

    B
    Comparison

    C
    Assignment

    Note: Not available
    1. Report
  2. Question: (A) Write the Name of this operators =, !=, === ______  Operators. (B) Write the Name of this operators +, -, *, /, % ______ Operators. (C) Write the Name of this operators &, |, ^, ~, <<, >> ______ Operators. (D) Write the Name of this"( \n, \r, \t, \\, \$, \" ) " ______

    A
    Bitwise

    B
    Arithmetic

    C
    Equality

    D
    Escape Sequences

    Note: Not available
    1. Report
  3. Question: What's name of the Following Operators   =, +=, *=, /=, .= 

    A
    Assignment Operators

    B
    Comparison Operators

    C
    Equality Operators

    D
    Logical Operators

    Note: Not available
    1. Report
  4. Question: How does the identity operator === compare two values?

    A
    It converts them to a common compatible data type and then compares the resulting values<br /><br />

    B
    It returns True only if they are both of the same type and value

    C
    If the two values are strings, it performs a lexical comparison

    D
    It converts both values to strings and compares them

    Note: Not available
    1. Report
  5. Question: ______ operator is used to test if two values are identical in every way.

    A

    B

    C
    =

    D

    E

    Note: Not available
    1. Report
  6. Question: What is the output of the following code?
    $a=1;
    ++$a;
    $a*=$a;
    echo $a--;

    A
    3

    B
    4

    C
    5

    D
    0

    E
    1

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd