Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Hic Global Solutions Team. If you also belong to the team, you can get access from here

Hic Global Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Hic Global Solutions Senior Salesforce Developer Interview Questions and Answers

Updated 12 Apr 2024

Hic Global Solutions Senior Salesforce Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What would be the structure of backend class for LWC component?
  • Ans. 

    The backend class for a Lightning Web Component (LWC) should handle data retrieval, manipulation, and communication with Salesforce.

    • Create an Apex class with @AuraEnabled methods to be called from the LWC component

    • Use SOQL queries to retrieve data from Salesforce database

    • Implement logic for data manipulation and business processes

    • Handle error messages and exceptions appropriately

    • Utilize Apex triggers and classes for co

  • Answered by AI
  • Q2. Can callouts be made from trigger?
  • Ans. 

    Yes, callouts can be made from triggers in Salesforce.

    • Callouts can be made from triggers using @future annotation to make asynchronous callouts.

    • It is recommended to use @future annotation to avoid hitting governor limits.

    • Make sure to handle any potential exceptions that may occur during the callout.

  • Answered by AI

Skills evaluated in this interview

Senior Salesforce Developer Jobs at Hic Global Solutions

View all

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

I applied via Recruitment Consultant and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Object Oriented Concepts and basic list/tuple/dictionary/ datetime conversion
  • Q2. Project done in last company and how will you help Saama?

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to frame answers end to end and stick to what you have done. Don't try to exaggerate.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Easy to medium leetcode questions

Interview Questionnaire 

1 Question

  • Q1. SOLID principles examples in depth,given to design user management database in sql(just flow diagram,and in which table which value is used),some basic c# questions related to how you log in c#

I applied via LinkedIn and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. 1. Explain difference between spring and spring boot
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool for quickly creating Spring-based applications.

    • Spring provides a comprehensive framework for building Java applications, while Spring Boot is a tool that simplifies and accelerates the process of creating Spring-based applications.

    • Spring requires more configuration and setup, while Spring Boot provides a pre-configured environment that re...

  • Answered by AI
  • Q2. 2. String anagram program
  • Ans. 

    A program to check if two strings are anagrams of each other.

    • Create two character arrays from the input strings

    • Sort the arrays

    • Compare the sorted arrays to check if they are equal

  • Answered by AI
  • Q3. 3. write small code using streams api
  • Ans. 

    Using Streams API to filter and map an array of strings

    • Create a stream from the array using Arrays.stream()

    • Use filter() to select elements that meet a certain condition

    • Use map() to transform each element into a new value

    • Use toArray() to convert the stream back into an array

  • Answered by AI
  • Q4. 4. java 8 concepts
  • Q5. 5. what is REST api
  • Ans. 

    REST API is a web service that uses HTTP requests to access and manipulate data.

    • REST stands for Representational State Transfer

    • It is an architectural style for building web services

    • It uses HTTP methods like GET, POST, PUT, DELETE to perform operations on resources

    • It is stateless and can be cached

    • It returns data in various formats like JSON, XML, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain everything properly

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Mcq + dsa JavaScript questions

Round 2 - Technical 

(1 Question)

  • Q1. JavaScript advance topics and database design topics
Round 3 - Behavioral 

(1 Question)

  • Q1. Situation based question and behavioural questions

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. API testing methods
  • Ans. 

    API testing methods involve functional, performance, security, and exploratory testing.

    • Functional testing ensures that the API meets the requirements and specifications.

    • Performance testing checks the API's response time, throughput, and resource utilization.

    • Security testing verifies the API's authentication, authorization, and encryption mechanisms.

    • Exploratory testing involves ad-hoc testing to discover defects and usa...

  • Answered by AI
  • Q2. Difference between sanity and smoke
  • Ans. 

    Sanity and Smoke are types of software testing. Sanity tests a specific functionality while Smoke tests the entire system.

    • Sanity testing is a narrow and deep testing approach while Smoke testing is a broad and shallow testing approach.

    • Sanity testing is performed after a small change in code while Smoke testing is performed after a major change in code.

    • Sanity testing is used to check if the critical functionalities are ...

  • Answered by AI
  • Q3. Difference between retesting and regression
  • Ans. 

    Retesting is testing the same functionality again after fixing the defects. Regression is testing the unchanged functionality after making changes.

    • Retesting is done to ensure that the defects have been fixed and the functionality is working as expected.

    • Regression is done to ensure that the changes made to the software have not affected the existing functionality.

    • Retesting is a subset of regression testing.

    • Retesting is ...

  • Answered by AI
  • Q4. Bug life cycle

Interview Preparation Tips

Interview preparation tips for other job seekers - It was technical based interview round.

Skills evaluated in this interview

Hic Global Solutions Interview FAQs

How many rounds are there in Hic Global Solutions Senior Salesforce Developer interview?
Hic Global Solutions interview process usually has 1 rounds. The most common rounds in the Hic Global Solutions interview process are Technical.
How to prepare for Hic Global Solutions Senior Salesforce Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Hic Global Solutions. The most common topics and skills that interviewers at Hic Global Solutions expect are Salesforce, Salesforce Integration, Apex, Salesforce CPQ and Salesforce Service Cloud.
What are the top questions asked in Hic Global Solutions Senior Salesforce Developer interview?

Some of the top questions asked at the Hic Global Solutions Senior Salesforce Developer interview -

  1. What would be the structure of backend class for LWC compone...read more
  2. Can callouts be made from trigg...read more

Tell us how to improve this page.

Hic Global Solutions Senior Salesforce Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
View all
Hic Global Solutions Senior Salesforce Developer Salary
based on 6 salaries
₹7.9 L/yr - ₹37.5 L/yr
32% more than the average Senior Salesforce Developer Salary in India
View more details
Salesforce Developer
55 salaries
unlock blur

₹1 L/yr - ₹7.5 L/yr

Salesforce Developer Trainee
12 salaries
unlock blur

₹1 L/yr - ₹2 L/yr

Business Development Representative
12 salaries
unlock blur

₹3.7 L/yr - ₹3.7 L/yr

Quality Analyst
7 salaries
unlock blur

₹1.8 L/yr - ₹3.2 L/yr

Business Development Executive
7 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Explore more salaries
Compare Hic Global Solutions with

Maxgen Technologies

4.6
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview