Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ksolves India Limited Team. If you also belong to the team, you can get access from here

Ksolves India Limited Verified Tick

Compare button icon Compare button icon Compare
2.9

based on 116 Reviews

Filter interviews by

Ksolves India Limited Salesforce Developer Interview Questions and Answers

Updated 6 Oct 2024

Ksolves India Limited Salesforce Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics Salesforce admin quaitions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic Admin Questions related to Security, MD relationship and
  • Q2. Write a trigger on account object when account is created, 2 contacts will be inserted
  • Ans. 

    Write a trigger on account object to insert 2 contacts when account is created.

    • Create a trigger on Account object

    • Use 'after insert' trigger event

    • Create 2 Contact records and assign Account Id to them

    • Insert the Contact records

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for Triggers for like after update triggers or recursion triggers and Security

Skills evaluated in this interview

Salesforce Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Write a trigger to update contact when accounts phone changed.
asked in Infosys
Q2. How do you make the child records read only of its parent record' ... read more
asked in TCS
Q3. Difference between Roles & Profiles, Difference between Workf ... read more
asked in Infosys
Q4. How do load both parent and child records at a time using data lo ... read more
asked in Infosys
Q5. How do you call a controllor method from javascript in visualforc ... read more

Salesforce Developer Jobs at Ksolves India Limited

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Solid Principle, Design Patterns,
  • Q2. React sharing data btw siblings without any state management.
  • Q3. NodeJs is single threaded then why it feels concurrent?
Round 2 - Technical 

(3 Questions)

  • Q1. Questions related micro services
  • Q2. Message queue related questions
  • Q3. NodeJs related questions: Event loop

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare NodeJs in-depth.
Mention things in your resume that you actually know and worked on. They will ask questions from your experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Print Longest Increasing Subsequence
  • Ans. 

    Print the longest increasing subsequence of an array of strings.

    • Use dynamic programming to find the longest increasing subsequence.

    • Iterate through the array and keep track of the longest increasing subsequence ending at each index.

    • Return the longest increasing subsequence found.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is solid principple
  • Ans. 

    SOLID is a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses with...

  • Answered by AI
  • Q2. Whats are oops in c#
  • Ans. 

    Object-oriented programming concepts in C#

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability for objects to take on multiple forms

    • Abstraction: hiding the complex implementation details and showing only the necessary features

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude,reasoning,verbal,C language,Java,C++

Round 2 - Technical 

(2 Questions)

  • Q1. What is interface in JAVA
  • Q2. Explain OOPS in JAVA

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

C,c++,java ,SQL, javascript and python

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

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Project based backend and frontend
  • Q2. How to connect to backend
  • Ans. 

    To connect to the backend, you can use APIs, database connections, or web services.

    • Use APIs to send and receive data between the frontend and backend

    • Establish database connections to retrieve and store data

    • Utilize web services for communication between different systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for project

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What is class what is object what is different between private protected and public and default
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class. Private, protected, public, and default are access modifiers in object-oriented programming.

    • A class is a template or blueprint that defines the properties and behaviors of objects.

    • An object is an instance of a class, created using the class blueprint.

    • Private access modifier restricts access to class members within the same class.

    • Pro...

  • Answered by AI
  • Q2. What is object ?
  • Ans. 

    An object is a self-contained entity that consists of both data and behavior.

    • Objects are instances of classes in object-oriented programming.

    • They encapsulate data and provide methods to manipulate that data.

    • Objects can interact with each other through method calls and message passing.

    • Examples of objects include a car, a person, or a bank account.

  • Answered by AI
  • Q3. What is public?
  • Ans. 

    Public is a keyword in programming languages that denotes the accessibility of a class, method, or variable.

    • Public is one of the access modifiers in object-oriented programming.

    • It allows the class, method, or variable to be accessed from any other class or package.

    • Public members are part of the public API of a software component.

    • Example: public class MyClass { ... }

    • Example: public void myMethod() { ... }

    • Example: public

  • Answered by AI
  • Q4. What is private?
  • Ans. 

    In programming, private is an access modifier that restricts the visibility of a class member to within its own class.

    • Private is used to encapsulate data and prevent direct access from outside the class.

    • Private members can only be accessed through public methods or properties.

    • Private variables are often used to store internal state or implementation details.

    • Private methods are used for internal logic and are not meant

  • Answered by AI
  • Q5. What is protected
  • Ans. 

    protected is an access modifier in object-oriented programming that restricts access to members within the same package or subclasses.

    • protected is one of the four access modifiers in Java, along with public, private, and default.

    • Members declared as protected can be accessed within the same package or by subclasses.

    • Protected members are not accessible outside the package unless accessed through inheritance.

    • Example: prot...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cyber Infrastructure Software Developer interview:
  • OOPS
  • Java
Interview preparation tips for other job seekers - Know what you have written in your resume

Skills evaluated in this interview

Ksolves India Limited Interview FAQs

How many rounds are there in Ksolves India Limited Salesforce Developer interview?
Ksolves India Limited interview process usually has 1-2 rounds. The most common rounds in the Ksolves India Limited interview process are Technical and Resume Shortlist.
How to prepare for Ksolves India Limited 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 Ksolves India Limited. The most common topics and skills that interviewers at Ksolves India Limited expect are Salesforce, Apex, Triggers, Visualforce and JSON.
What are the top questions asked in Ksolves India Limited Salesforce Developer interview?

Some of the top questions asked at the Ksolves India Limited Salesforce Developer interview -

  1. Write a trigger on account object when account is created, 2 contacts will be i...read more
  2. Basic Admin Questions related to Security, MD relationship ...read more
  3. Basics Salesforce admin quaiti...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Ksolves India Limited interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Ksolves India Limited Salesforce Developer Salary
based on 24 salaries
₹3 L/yr - ₹10 L/yr
12% less than the average Salesforce Developer Salary in India
View more details

Ksolves India Limited Salesforce Developer Reviews and Ratings

based on 3 reviews

1.5/5

Rating in categories

2.3

Skill development

1.2

Work-Life balance

1.7

Salary & Benefits

1.0

Job Security

1.2

Company culture

1.2

Promotions/Appraisal

1.0

Work Satisfaction

Explore 3 Reviews and Ratings
Software Developer
190 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Senior Software Engineer
44 salaries
unlock blur

₹6.8 L/yr - ₹22 L/yr

Senior Software Developer
42 salaries
unlock blur

₹5 L/yr - ₹18.6 L/yr

Software Engineer
41 salaries
unlock blur

₹4.1 L/yr - ₹12.3 L/yr

Softwaretest Engineer
38 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Explore more salaries
Compare Ksolves India Limited with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview