21.What is a nested structure? A structure containing an element of another structure as its member is referred so.
Interview Questions and Answers
- C ProgrammingInterview Questions and AnswersTechnical Interview Questions and Answers
- C ProgrammingInterview Questions and AnswersTechnical Interview Questions and Answers
C Programming Interview Questions and Answers For Freshers Part-2
by Sby S11.Explain the purpose of the function sprintf(). Prints the formatted output onto the character array.
- C ProgrammingInterview Questions and AnswersTechnical Interview Questions and Answers
C Programming Interview Questions and Answers For Freshers Part-1
by Sby S1.What is a pointer on pointer? It’s a pointer variable which can hold the address of another pointer variable. It de-refers twice to point to the data held by the …
- APEXInterview Questions and AnswersSALESFORCESalesforceSalesforce CustomizationTechnical Interview Questions and AnswersVisualforce
What are the different types of controllers use in a visualforce page
What are the different types of controllers use in a visualforce page There are three types: 1) Standard Controller – Let’s you access the standard functions (Save, Edit, Delete etc) …
- Interview Questions and AnswersSALESFORCESalesforceSalesforce ConfigurationSalesforce Interview QuestionsSalesforce.comTechnical Interview Questions and Answers
What is the Difference between a PROFILE and a Permission Set in Salesforce
What is the Difference between a PROFILE and a Permission Set in Salesforce Profile: – A User can have only ONE Profile. -A profile is generally used to define the …
- Interview Questions and AnswersSALESFORCESalesforceSalesforce ConfigurationTechnical Interview Questions and Answers
When you can’t add the time-dependent workflow rule actions in salesforce
When you can’t add the time-dependent workflow rule actions in salesforce? time-dependent actions is not possible in salesforce, when the evaluation criteria is set as like below: Evaluate the rule …
- Interview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsSOQLTechnical Interview Questions and Answers
How to find the distinct values of a particular field in a SObject using SOQL Query?
How to find the distinct values of a particular field in a SObject using SOQL Query? Its possible by using the GROUP BY Clause in an SOQL Query. For example: …
- Interview Questions and AnswersSalesforceSALESFORCESalesforce Interview QuestionsSOQLSOSLTechnical Interview Questions and Answers
What are Dynamic Queries in SALESFORCE
What are Dynamic Queries in SALESFORCE? A dynamic query is a SOQL or SOSL query which can be constructed and executed at runtime. It is the process of constructing the …
- CSSInterview Questions and AnswersTechnical Interview Questions and Answers
CSS Interview Questions and Answers Part-3
by Sby S21.What is the purpose of in measurement unit? in − Defines a measurement in inches. p {word-spacing: .15in;}
- CSSInterview Questions and AnswersTechnical Interview Questions and Answers
CSS Interview Questions and Answers Part-2
by Sby S11.How to select all paragraph elements with a lang attribute? p[lang] : Selects all paragraph elements with a lang attribute.