Single Choice Easy

QYou are to complete the code needed to update records. You would like find the equivalent value. Which will best complete this statement?

where fmVehicle.dbVehicleID ________ 1

ID: #9393 Database Manipulation in D365 F&O X++ 256 views
Question Info
#9393Q ID
EasyDifficulty
Database Manipulation in D365 F&O X++Topic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A ==
  • B =
  • C +=
  • D !=
Correct Answer

Explanation

Justification:

  1. The “==” is used as a relational operator between the field and the value of 1 in this example. This returns “true” when the two expressions are equal.
  2. The “=” operator is an assignment operator. Therefore, it is used when assigning values to variables. It is not a relational operator.
  3. The “+=” is an assignment operator that increments the value of the variable on the left by the value of the expression on the right.
  4. The “!=” operator is a relational operator returns “true” if the expressions are NOT equal.  

Related Lesson: Data Updates

Share This Question

Challenge a friend or share with your study group.

Related MCQ Questions