Develop and test code - Quiz

  • A Elements must have numeric values
  • B Elements cannot have associated labels
  • C Elements are implicitly assigned sequential integers
  • D Elements are exclusively used for exception handling
  • AArray indexes start at 0, with the first item referenced as [0], the second item as [1], and so on.
  • BArray indexes start at 1, with the first item referenced as [1], the second item as [2], and so on.
  • CArray indexes start at -1, with the first item referenced as [-1], the second item as [0], and so on.
  • DArray indexes can be arbitrary and are not fixed.
  • AImplement attribute classes to add metadata to the entity classes.
  • BUse SQL triggers to add attributes to the database tables associated with the entities.
  • CCreate new entity classes that duplicate the existing ones with additional attributes.
  • DDirectly modify the entity classes to include the new attributes.
  • ACreate a new index on the FMCustomer extension table that includes the AccountReferrer field.
  • BEnsure that the new index is not unique.
  • CModify the existing indexes on the FMCustomer table to include the AccountReferrer field.
  • DOption A, B
  • ACreate a new table to store international address formats and reference it in other tables.
  • BDuplicate the existing address EDTs and modify their properties for each table.
  • CAdd a new EDT to the project and set the StringSize property to accommodate the largest expected address format.
  • DModify the base Address EDT directly to support international formats.
  • ATo maintain and write code
  • BTo apply an update
  • CTo automate tests