Single Choice Easy

QYou are to complete the code needed to delete records. Which will best complete this statement?

     {
            fmVehicle.________();
        }

ID: #9395 Database Manipulation in D365 F&O X++ 150 views
Question Info
#9395Q 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 drop
  • B kill
  • C deletefrom
  • D delete
Correct Answer

Explanation

Justification:

  1. Drop is not a valid method call on the given table and does not delete records.
  2. Kill is not a valid method call on the given table and does not delete records.
  3. Deletefrom is not a valid method call on the given table and will not delete records.
  4. The delete method on the table is called when records are to be deleted.

Related Lesson: Data Deletion

Share This Question

Challenge a friend or share with your study group.

Related MCQ Questions