bodala shanmuk
Test por , creado hace más de 1 año

SFDC-PPlatform Dev1

15
0
0
bodala shanmuk
Creado por bodala shanmuk hace más de 4 años
Cerrar

SFDC-QUIZ

Pregunta 1 de 23

1

Is Apex a Case-insensitive language?

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 2 de 23

1

Apex requires unit testing for deployment into a Production environment (True or false)

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 3 de 23

1

The sObject data type is a generic data type that is the parent class for all standard and custom objects in Apex?

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 4 de 23

1

A global class is only accessible within the org.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 5 de 23

1

Are these two forms of DML operations?

1.) Standalone statements (insert myAccount;)
2.) Database methods (Database.insert(myAccount);)

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 6 de 23

1

When a DML standalone statement is executed against a list of records, if one record encounters an error, what happens?

Selecciona una de las siguientes respuestas posibles:

  • All of the records will fail. None of the records will be inserted/updated etc.

  • All of the records except the failed records will be inserted/updated etc.

Explicación

Pregunta 7 de 23

1

When a DML Database method is executed against a list of records, if one record encounters an error, what happens? Given allOrNone is set to false.

Selecciona una de las siguientes respuestas posibles:

  • Even if an error is encountered with one record in the list, the operation will continue with the other records in the list

  • Even if one record fails, none of the records will get inserted/deleted/updated.

Explicación

Pregunta 8 de 23

1

When using a Database method to execute a DML operation, and if allOrNone is set to false, how can you check the results of the operation?

Selecciona una de las siguientes respuestas posibles:

  • Database insert and update methods return a Save object that can be used to get the results of the operation.

  • Database insert and update methods return a SaveResult object that can be used to get the results of the operation.

Explicación

Pregunta 9 de 23

1

True or False: You must specify a value for the allOrNone parameter when using a Database method.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 10 de 23

1

What is the default value of the allOrNone parameter of a Database method?

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación

Pregunta 11 de 23

1

What is the return type for the Database.insert method?

Selecciona una de las siguientes respuestas posibles:

  • Database.SaveResult

  • Database.FinalResult

  • Database.StoredResult

Explicación

Pregunta 12 de 23

1

What is the return type for the Database.update method?

Selecciona una de las siguientes respuestas posibles:

  • Database.StoredResult

  • Database.SaveResult

  • Database.FinalResult

  • Database.Result

Explicación

Pregunta 13 de 23

1

What is the return type for the Database.update method when a LIST of records is updated?

Selecciona una de las siguientes respuestas posibles:

  • List<Sobject>

  • Database.SaveResult

  • List<Database.SaveResult>

Explicación

Pregunta 14 de 23

1

What is the return type for the Database.delete method?

Selecciona una de las siguientes respuestas posibles:

  • Database.DeleteResult

  • Database.SaveResult

  • Database.SavedResult

Explicación

Pregunta 15 de 23

1

What is the return type for the Database.merge method?

Selecciona una de las siguientes respuestas posibles:

  • Database.SaveResult

  • Database.MergeResult

  • Database.DeleteResult

Explicación

Pregunta 16 de 23

1

What does SOQL stand for?

Selecciona una de las siguientes respuestas posibles:

  • Salesforce Object Quest Language

  • Salesforce Object Query Language

  • Salesforce Object Queue Language

Explicación

Pregunta 17 de 23

1

Where can you NOT execute a SOQL query?

Selecciona una de las siguientes respuestas posibles:

  • the queryString parameter in the query() call

  • Apex Statements

  • Visualforce controllers and getter methods

  • Schema Explorer in the Force.com IDE

  • Query Editor in the developer console

  • Sobject

Explicación

Pregunta 18 de 23

1

What are the three main components (or clauses) of a SOQL statement?

Selecciona una de las siguientes respuestas posibles:

  • SELECT, FROM, WHERE

  • SELECT, IN, WHERE

  • SELECT, FROM, IN

  • SELECT, GROUP BY, ORDER BY

Explicación

Pregunta 19 de 23

1

In the Developer Console, where can you run a SOQL query?

Selecciona una de las siguientes respuestas posibles:

  • In the Query Editor

  • Under the Setup menu

Explicación

Pregunta 20 de 23

1

What are some differences between SOSL and SOQL?

1.) SOSL can search multiple objects at once

2.) SOQL is used to perform text searches.

3.) SOQL can search multiple objects at once.

4.) SOSL is used to perform text searches.

Selecciona una de las siguientes respuestas posibles:

  • 1st and 2nd option are correct

  • 2nd and 3rd option are correct

  • 1st and 4th option are correct

Explicación

Pregunta 21 de 23

1

What is the return type of a SOSL query?

Selecciona una de las siguientes respuestas posibles:

  • A list of list of SObjects

  • A list of SObjects

  • A single sObject

Explicación

Pregunta 22 de 23

1

By default, SOSL returns only the [BLANK] of found records.

Selecciona una de las siguientes respuestas posibles:

  • Name

  • IDs

  • Name and IDs

  • No results

Explicación

Pregunta 23 de 23

1

True or False: The FIND clause does not support wildcard searches.

Selecciona uno de los siguientes:

  • VERDADERO
  • FALSO

Explicación