AI Interview Questions and Answers for 5 Year Experience
Table Of Contents Artificial Intelligence (AI) interviews for candidates with 5 years of experience often focus on a combination of technical expertise and practical problem-solving skills. You can expect questions on topics like machine learning algorithms, deep learning architectures, natural language processing, and the use of AI in real-world applications….
Why Does Salesforce CLI Authentication Fail in VS Code?
Question When trying to authenticate a Salesforce org in VS Code, the process successfully redirects to the browser for login, and after entering credentials, the browser confirms “Authentication successfully.” However, in VS Code, the status remains stuck at “in progress,” and if canceled, the following error message appears: Answer This…
JWT vs. JWT Token Exchange in Named Credentials?
Question: When setting up a Named Credential in Salesforce with the Identity Type set to “Named Principal,” there are two options available under the “Authentication Protocol” dropdown: “JWT” and “JWT Token Exchange.” What is the difference between these two options? Additionally, when “JWT Token Exchange” is selected, two extra fields—”Scope”…
Salesforce Encryption: Salesforce Shield vs Classic Encryption
Table Of Contents There’s a famous quote that says, “Data is the new oil,” which holds true in today’s era of digital transformation. Industries are undergoing rapid changes, and the need for secure data systems has become paramount. A data breach, especially in sensitive sectors like finance or healthcare, can…
Genpact Software Engineer Interview Questions
Table Of Contents When preparing for a Genpact Software Engineer Interview, I know that the process can be challenging, but with the right preparation, I can set myself up for success. Genpact is known for its rigorous interview process, where I can expect a blend of technical and problem-solving questions….
How to use a custom LWC component in a Lightning Datatable?
Question: How can we integrate a custom Lightning Web Component (LWC) into a lightning-datatable? For example, if we want to include a file upload feature for each record in the datatable, how can this be achieved? Answer: To achieve this, we need to create a custom LWC component that integrates…
How to filter Opportunity Owner ID in a report using Apex?
Question: When building a report programmatically using Apex, how can you set up a filter for the “Owner ID” field on the Opportunity object? Specifically, I tried to use the ReportFilter from the Reports namespace to set the filter for the Owner ID but encountered errors. Here’s the code I…
Jasmine and Karma step by step in Angular
Table Of Contents If you’re aiming to master unit testing in Angular, then understanding Jasmine and Karma is essential. In many interviews, I’ve noticed employers often ask questions about setting up Jasmine and Karma, writing efficient test cases, and troubleshooting test failures. They might even ask about handling asynchronous operations…
How Does Test Coverage Work for Enums and Properties in Apex?
Question: I recently noticed some unusual behavior in Apex test coverage and wanted to confirm whether this has always been the case or if something has changed over time. Specifically, I observed that: Consider the following class containing only an enum: Even when this enum is used in test cases,…
Loop with SOQL or List, Which is Better?
Question: When working with Salesforce Apex, is it better to use a SOQL query directly within a for loop, or to query the records into a list first and then iterate through that list? Considerations include performance, memory usage, and specific use cases. Here are two examples of the approaches…


