Upload Button Icon Add office photos

Filter interviews by

Carelon Global Solutions Servicenow Developer Interview Questions and Answers

Updated 2 Feb 2024

Carelon Global Solutions Servicenow Developer Interview Experiences

2 interviews found

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

(1 Question)

  • Q1. Asked to give Introduction and experienced with project. Basic ServiceNow Development questions.
Round 2 - Technical 

(1 Question)

  • Q1. Scripting questions in ServiceNow
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Questions related to experience.
  • Q2. Basic ServiceNow knowledge check.
  • Q3. Little Bit scripting knowledge check.
Round 2 - Technical 

(2 Questions)

  • Q1. Medium level servicenow knowledge checks.
  • Q2. More scripting questions from servicenow server side scripting.
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to change the company?
  • Q2. Salary expectation and justify it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be genuine and honest, do not give fake answers.

Servicenow Developer Interview Questions Asked at Other Companies

asked in Wipro
Q1. How to calculate timing of Incident which assigned to multiple gr ... read more
asked in Wipro
Q2. What is difference between service catalog and order guide and re ... read more
asked in Wipro
Q3. How to populate manager using Server side code
asked in Techstitch
Q4. Write a program to either make a pattern using star or program of ... read more
asked in Accenture
Q5. What is record producer? How many ways we can call server script ... read more

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. How can a Spring Boot project be created to develop an API that returns specified data?
  • Q2. What is the code to print a right-angled triangle of numbers based on a given input number?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Can you explain about Platform Events?
  • Ans. 

    Platform Events are a feature in Salesforce that allow developers to deliver secure, scalable, and customizable event notifications.

    • Platform Events are based on the publish-subscribe model, where publishers send events and subscribers receive them.

    • They are used to communicate changes in Salesforce data or custom events within an organization.

    • Developers can define custom event objects and trigger events using Apex or de...

  • Answered by AI
  • Q2. Tell me about Asynchronous Apex? Difference between Batch Apex and Queueable Apex
  • Ans. 

    Asynchronous Apex allows you to run processes in the background, without user interaction. Batch Apex and Queueable Apex are two types of Asynchronous Apex.

    • Asynchronous Apex allows you to process large amounts of data asynchronously, without impacting the user interface.

    • Batch Apex is used to process large data sets that can be divided into smaller batches for processing.

    • Queueable Apex allows you to submit jobs for asyn...

  • Answered by AI
  • Q3. Explain Future method? and why we need (Callout= true) along with that annotation?
  • Ans. 

    Future method is used to run code asynchronously. Callout=true is needed to make HTTP callouts from future methods.

    • Future methods are used to run code asynchronously in Salesforce.

    • They are annotated with @future annotation.

    • Callout=true is needed to make HTTP callouts from future methods.

    • Without Callout=true, making HTTP callouts from future methods is not allowed.

  • Answered by AI
  • Q4. Data Security in Salesforce and types in it.
  • Ans. 

    Data security in Salesforce involves various types of security measures to protect sensitive information.

    • Salesforce provides various security features such as user authentication, data encryption, and access controls.

    • Types of data security in Salesforce include object-level security, field-level security, and record-level security.

    • Salesforce also offers tools like Salesforce Shield for enhanced data security and compli...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Valid Anagrams was asked
  • Q2. Make a pattern logic
  • Ans. 

    Create a pattern logic using arrays of strings

    • Start by defining the pattern you want to create

    • Use loops and conditional statements to generate the pattern

    • Test the pattern with different inputs to ensure it works correctly

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions about internships, Projects were asked
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in May 2023. There were 3 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 - Coding Test 

Find out a string is palindrome or not

Round 3 - One-on-one 

(8 Questions)

  • Q1. ACID properties
  • Ans. 

    ACID properties are a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all

    • Consistency ensures that the database remains in a consistent state before and after the transaction

    • Isolation ensures that transactions are executed independently of...

  • Answered by AI
  • Q2. Event loop in node js
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js

    • It allows Node.js to perform non-blocking operations efficiently

    • Event loop continuously checks the event queue and executes callback functions when events are triggered

  • Answered by AI
  • Q3. Trigger and cursor
  • Q4. Primary vs foreign vs unique key
  • Ans. 

    Primary key uniquely identifies a record, foreign key links to a primary key in another table, unique key ensures uniqueness of a column or set of columns.

    • Primary key: uniquely identifies each record in a table (e.g. employee_id in an employees table)

    • Foreign key: links to a primary key in another table to establish a relationship (e.g. department_id in an employees table linking to department_id in a departments table)

    • ...

  • Answered by AI
  • Q5. Project related Questions and whats your job role in that project
  • Q6. Variable hoisting in js
  • Ans. 

    Variable hoisting is a behavior in JavaScript where variable declarations are moved to the top of their scope during compilation.

    • Variable declarations are hoisted to the top of their function or global scope.

    • Only the declarations are hoisted, not the initializations.

    • Hoisting allows you to use a variable before it is declared, but it is best practice to declare variables at the top of the scope.

    • Example: console.log(myV

  • Answered by AI
  • Q7. Function closure in js
  • Ans. 

    Function closure in JavaScript allows a function to access variables from its outer scope even after the outer function has finished executing.

    • Function closures occur when a function is defined within another function and the inner function has access to the outer function's variables.

    • Closures are commonly used to create private variables and functions in JavaScript.

    • Example: function outerFunction() { let outerVar = 'I...

  • Answered by AI
  • Q8. Shallow vs deep copy in js
  • Ans. 

    Shallow copy creates a new object but references the same nested objects, while deep copy creates a new object with copies of all nested objects.

    • Shallow copy only copies the top-level object, not the nested objects.

    • Deep copy creates new copies of all nested objects, ensuring they are independent.

    • In JavaScript, shallow copy can be achieved using Object.assign or spread operator, while deep copy can be achieved using JSO

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on database levels.
They are using some what old technologies so prepare like that way

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
6-8 weeks
Result
No response

I applied via campus placement at SRM university (SRMU) and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions on array and strings

Round 2 - Technical 

(2 Questions)

  • Q1. Projects done in college
  • Q2. About yourself and an introduction
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

One to one interview along with coding round.
Basic questions for python based on list touple dictionary.
Numpy, Pandas, CSV and operation.
SQL queries basic like join query
Having query.

Round 3 - One-on-one 

(5 Questions)

  • Q1. Managerial round Use case base
  • Q2. Completely based on your work experience discussion along with some basic logical use case.
  • Q3. This including salary expectancy questions
  • Q4. Previous projects questions
  • Q5. Core logic of previous work
  • Ans. 

    The core logic of my previous work involved developing a web application using Python and Django framework.

    • Developed a web application using Python and Django framework

    • Implemented various features and functionalities based on client requirements

    • Handled database operations and data manipulation using Django ORM

    • Worked on front-end development using HTML, CSS, and JavaScript

    • Collaborated with a team of developers to ensure

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Dassault Systemes Python Developer interview:
  • Python
  • SQL
  • Use case based
Interview preparation tips for other job seekers - Stick to basics, Be as you are.
Quick answer not expected but give appropriate answer
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Nice company i found on earth is this

Round 2 - One-on-one 

(1 Question)

  • Q1. What is your current ctc and its expectation
  • Ans. 

    My current CTC is $80,000 and I am looking for a 10-15% increase in my next role.

    • Current CTC is $80,000

    • Expecting a 10-15% increase in next role

    • Open to negotiation based on job responsibilities and benefits

  • Answered by AI

I applied via Company Website and was interviewed in Mar 2022. There were 5 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic C program debugging (Find the output, and find the error) and Flowchart based questions (Finding output)
Round 2 - Coding Test 

Multiple questions on integer array manipulation, with one pattern programming

Round 3 - Coding Test 

Advanced integer/character array manipulation (2D arrays)

Round 4 - Technical 

(1 Question)

  • Q1. All basic HR questions like Tell me about yourself, Previously worked projects, and then technical questions based on desired programming language, one coding question to solve and 2 aptitude questions wit...
Round 5 - Technical 

(1 Question)

  • Q1. Same as previous technical HR round, but they conducted the same technical + HR round for like 5 times

Interview Preparation Tips

Interview preparation tips for other job seekers - Just don't even try to apply for Zoho. I was passionate to join Zoho ever since I joined my B. E. course.. I apply for Software Developer through Off-campus, and successfully went through Level 1 and Level 2 coding rounds. They conducted approximately 7 technical + HR discussion rounds (one technical staff member from each major team like Identity Management, CRN, IT Security, etc. Although I passed all these rounds, they only offered me an Internship-cum-placement..

I was given 2 tasks directly without any training (One console based game, and one web application using Tomcat and Servlets), and I finished the tasks within a week. They conducted a couple of technical interviews with HR discussion again, and then boom! I got fired saying that my performance was not adequate.. Although this internship was for evaluating for FTE, they cancelled my intern without a proper reason.. That's the worst shit ever happened.
I had to raise a complaint to some senior HR to get my stipend processed, until then the people who used to guide for onboarding didn't even RESPOND!


As far as I've heard, they're hiring people only through recommendations, not by fresh skills.

Carelon Global Solutions Interview FAQs

How many rounds are there in Carelon Global Solutions Servicenow Developer interview?
Carelon Global Solutions interview process usually has 3 rounds. The most common rounds in the Carelon Global Solutions interview process are Technical and HR.
What are the top questions asked in Carelon Global Solutions Servicenow Developer interview?

Some of the top questions asked at the Carelon Global Solutions Servicenow Developer interview -

  1. More scripting questions from servicenow server side scripti...read more
  2. Medium level servicenow knowledge chec...read more
  3. Basic ServiceNow knowledge che...read more

Tell us how to improve this page.

Carelon Global Solutions Servicenow Developer Salary
based on 18 salaries
₹4.1 L/yr - ₹14.2 L/yr
36% more than the average Servicenow Developer Salary in India
View more details

Carelon Global Solutions Servicenow Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
3.3k salaries
unlock blur

₹9.3 L/yr - ₹28 L/yr

Software Engineer
3.2k salaries
unlock blur

₹5 L/yr - ₹18.1 L/yr

Claims Associate
2.3k salaries
unlock blur

₹1.5 L/yr - ₹4.8 L/yr

Associate Software Engineer
1.2k salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Associate
1k salaries
unlock blur

₹2 L/yr - ₹5.6 L/yr

Explore more salaries
Compare Carelon Global Solutions with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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