bodala shanmuk
Quiz por , criado more than 1 year ago

SFDC-PPlatform Dev1

15
0
0
bodala shanmuk
Criado por bodala shanmuk mais de 4 anos atrás
Fechar

SFDC-QUIZ

Questão 1 de 23

1

Is Apex a Case-insensitive language?

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 2 de 23

1

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

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 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?

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 4 de 23

1

A global class is only accessible within the org.

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 5 de 23

1

Are these two forms of DML operations?

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

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 6 de 23

1

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

Selecione uma das seguintes:

  • 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.

Explicação

Questão 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.

Selecione uma das seguintes:

  • 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.

Explicação

Questão 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?

Selecione uma das seguintes:

  • 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.

Explicação

Questão 9 de 23

1

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

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 10 de 23

1

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

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação

Questão 11 de 23

1

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

Selecione uma das seguintes:

  • Database.SaveResult

  • Database.FinalResult

  • Database.StoredResult

Explicação

Questão 12 de 23

1

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

Selecione uma das seguintes:

  • Database.StoredResult

  • Database.SaveResult

  • Database.FinalResult

  • Database.Result

Explicação

Questão 13 de 23

1

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

Selecione uma das seguintes:

  • List<Sobject>

  • Database.SaveResult

  • List<Database.SaveResult>

Explicação

Questão 14 de 23

1

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

Selecione uma das seguintes:

  • Database.DeleteResult

  • Database.SaveResult

  • Database.SavedResult

Explicação

Questão 15 de 23

1

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

Selecione uma das seguintes:

  • Database.SaveResult

  • Database.MergeResult

  • Database.DeleteResult

Explicação

Questão 16 de 23

1

What does SOQL stand for?

Selecione uma das seguintes:

  • Salesforce Object Quest Language

  • Salesforce Object Query Language

  • Salesforce Object Queue Language

Explicação

Questão 17 de 23

1

Where can you NOT execute a SOQL query?

Selecione uma das seguintes:

  • 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

Explicação

Questão 18 de 23

1

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

Selecione uma das seguintes:

  • SELECT, FROM, WHERE

  • SELECT, IN, WHERE

  • SELECT, FROM, IN

  • SELECT, GROUP BY, ORDER BY

Explicação

Questão 19 de 23

1

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

Selecione uma das seguintes:

  • In the Query Editor

  • Under the Setup menu

Explicação

Questão 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.

Selecione uma das seguintes:

  • 1st and 2nd option are correct

  • 2nd and 3rd option are correct

  • 1st and 4th option are correct

Explicação

Questão 21 de 23

1

What is the return type of a SOSL query?

Selecione uma das seguintes:

  • A list of list of SObjects

  • A list of SObjects

  • A single sObject

Explicação

Questão 22 de 23

1

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

Selecione uma das seguintes:

  • Name

  • IDs

  • Name and IDs

  • No results

Explicação

Questão 23 de 23

1

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

Selecione uma das opções:

  • VERDADEIRO
  • FALSO

Explicação