Upload Button Icon Add office photos

Filter interviews by

Zellis Hr India Servicenow Developer Interview Questions and Answers

Updated 30 Dec 2024

Zellis Hr India Servicenow Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What are the technical aspects related to ServiceNow?
Round 2 - HR 

(1 Question)

  • Q1. What is your perspective on the future?

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Have you read the job description
  • Q2. What you know about Vision India Services Pvt Ltd and Why do you wish to join us
Round 2 - One-on-one 

(2 Questions)

  • Q1. What did you like the best in Job Description
  • Q2. Get me 2 best reason we should hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Read JD description properly & prepare accordingly
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic from language
  • Q2. Question from project if have done any
Round 2 - Coding Test 

For designer have to create page
And for coder simple coding questions

Round 3 - HR 

(1 Question)

  • Q1. Ready to work with low salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Before joining ask for job type will they are going to hire you as IC role or on company role because if u will go as IC(freelance) role so in future tcs like company not consider your experience
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Group Discussion 

About web development

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oops concept ,c#, ms sql ,web api
Round 2 - Coding Test 

Web api creation with single table and two table

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

I was interviewed before Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is your basic knowledge of Web Forms, ASP.NET, .NET Core, and SQL Server?

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamental knowledge of Webform, .NET, and SQL Server.

I was interviewed in Jan 2021.

Round 1 - Video Call 

(6 Questions)

Round duration - 105 minutes
Round difficulty - Medium

Yes, here comes the technical Round. Like other casual Interviews, it started with my introduction. and then the Interviewer asked me about OOPs Concepts and for every concept he asked for an example code. it took around 20 mins for this round and next he started asking questions from my project ( in which I mentioned ML Project ). From this he has asked Like why do you choose this algorithm and why did you learned ML. After That he moved to the problem solving part. He asked 6 questions on Problem solving. this took me around 30 mins to solve. I'll mention those problems in the below section. And he started asking me about tree's implementation. I answered him the theoretical part for the questions asked. and furtherly he asked me 6-7 SQL queries which took me around 20mins I remember. And from there he started asking questions about CN and OS. As I don't know about them- I replied Like i didn't have much Knowledge In these Sessions but I have Learned Some new technologies that are trending in the market. So, the key point for every Interview is like- we need not to be know everything it is up to us to in which area we are having interest and finally you should be able to show that you are expert in that and one more thing- Any job role is not expecting to be good at only one area of tech- So you should be able to convince the Interviewer that you are capable of understanding, learning new tech and to be have good team working skills.

  • Q1. Cycle Detection in a Singly Linked List

    You have given a Singly Linked List of integers, determine if it forms a cycle or not.

    A cycle occurs when a node's next points back to a previous node in the ...

  • Ans. Outer And Inner Loop

    We are going to have two loops outer-loop and inner-loop 

    1. Maintain a count of the number of nodes visited in outer-loop.
    2. For every node of the outer-loop, start the inner loop from head.
    3. If the inner-loop visits the node next to the outer-loop node, then return true, else repeat the process for the next iteration of outer-loop.
    4. If outer-loop reaches the end of list or null, then return false.
    Space ...
  • Answered by CodingNinjas
  • Q2. Merge Sort Linked List

    You are given a Singly Linked List of integers. Sort the Linked List using merge sort.

    Merge Sort is a Divide and Conquer algorithm. It divides the input into two halves, calls its...

  • Ans. Merge Sort

    We will use the ‘Merge Sort’ algorithm to sort the given linked list. Merge Sort is a Divide and Conquer algorithm. In this algorithm, we will divide the list into two parts, recursively sort the two parts and finally merge them such that the resultant list will be sorted.

     

    Algorithm:

     

    1. If the list contains only one node, return the head of the list.
    2. Else, divide the list into two sublists. For this, we...
  • Answered by CodingNinjas
  • Q3. Matrix Is Symmetric

    You are given a square matrix, return true if the matrix is symmetric otherwise return false.

    A symmetric matrix is that matrix whose transpose is equal to the matrix itself.

    Exampl...

  • Ans. Brute Force
    • Create another matrix ‘TRANSPOSE’ of the same size initially having all zeros.
    • Now replace ‘TRANSPOSE’ (i,j) with ‘MATRIX’ (j,i).
    • And now traverse both matrixes element by element if anywhere there is inequality return false, else continue.
    • In the end, return true as you traverse.
    Space Complexity: O(1)Explanation:

     O(N ^ 2), Where ‘N’ is the size of the square matrix.

     

    Since an extra matrix of size ‘N’...

  • Answered by CodingNinjas
  • Q4. Spiral Matrix

    You are given a N x M matrix of integers, return the spiral path of the matrix

    Example Of Spiral Path

    Input Format:
    The first line contains an integer 'T' which denotes the numb...

  • Ans. Spiral Matrix

    Divide the matrix into loops. Print all the elements in the clockwise order from the first-outer layer, followed by the elements from the second outer layer, and so on. Use four loops to print all the elements. Every ‘for’ loop defines a single direction movement along with the matrix. The first loop represents the movement from left to right, the second loop represents the movement from top to bottom, the...

  • Answered by CodingNinjas
  • Q5. Technical Questions

    A program using most of the OOPs Concepts.

    find the second highest salary in sql.

    Write an SQL query to fetch all the Employees who are also managers from the EmployeeDetails table.

    Write a...

  • Q6. Height of the Binary Tree

    You have been given the Inorder Traversal and Level Order Traversal of a Binary Tree of integers. Your task is to calculate the height of the Binary tree without constructing it.

    ...
  • Ans. Queue Solution
    • The first element of the Level order Traversal is necessarily the root of the binary tree.
    • The nodes which appear left of the root in the inorder traversal are necessarily in the left subtree, and those which appear in the right are in the right subtree of the right subtree.
    • We can make use of the fact that the nodes of a subtree of the binary tree will form a continuous segment in the inorder array.
    • We can ...
  • Answered by CodingNinjas
Round 2 - HR 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

In this round Company Director for India team and HR has joined.
I started with my Introduction and he has asked what I know about the Company. I started saying everything from google and Wikipedia and from their official site. As this is a off campus recruitment he started explaining about the company what they do and the job role I have applied for. He said that the job was very challenging one and we'll be closely dealing with clients and meeting their expectations is quite challenging for the role. and then he started asking some real HR questions. for which I have answered in a cool way

  • Q1. Basic HR Questions

    Can you describe your time management skills? 

    What’s your absenteeism record like? 

    Can I trust you with responsibilities?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriaBachelor’s degree in Engineering or a relevant fieldSymphony Talent, LLC interview preparation:Topics to prepare for the interview - Java, DBMS, SQL, HTML, CSS, JS, Standards and FrameWorks of JSP, Maven, Junit, Log4j, Collections.Time required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Basics of technology you know and work proof ( can be projects or events you have conducted ) for that particular technology is must.
Tip 2 : Even if you are not good at a particular technology, try to be best at some other technology.
Tip 3 : Never show of your weakness. and never in technology. There must be some, be you good at a particular thing. so find it out and become expertise in that.

Application resume tips for other job seekers

Tip 1 : Hide some interesting facts about you in the resume, So that you can impress the recruiter during the interview.
Tip 2 : Don't try online resumes, Instead you can make your own resume in MS Word to stand out from others. For me it took 2-3 hours to learn making resume in word and to complete it.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Multi Network
  • Q2. API
  • Q3. Hooks

Zellis Hr India Interview FAQs

How many rounds are there in Zellis Hr India Servicenow Developer interview?
Zellis Hr India interview process usually has 2 rounds. The most common rounds in the Zellis Hr India interview process are HR and Technical.
What are the top questions asked in Zellis Hr India Servicenow Developer interview?

Some of the top questions asked at the Zellis Hr India Servicenow Developer interview -

  1. What are the technical aspects related to ServiceN...read more
  2. What is your perspective on the futu...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 887 Interviews
SAP Interview Questions
4.2
 • 303 Interviews
UKG Interview Questions
3.2
 • 96 Interviews
View all
Zellis Hr India Servicenow Developer Salary
based on 4 salaries
₹5.4 L/yr - ₹7.6 L/yr
At par with the average Servicenow Developer Salary in India
View more details

Zellis Hr India Servicenow Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Payroll Associate
80 salaries
unlock blur

₹2.2 L/yr - ₹3.5 L/yr

Payroll Specialist
60 salaries
unlock blur

₹2.9 L/yr - ₹4.3 L/yr

Associate
34 salaries
unlock blur

₹2.2 L/yr - ₹4 L/yr

Senior Associate
23 salaries
unlock blur

₹3.1 L/yr - ₹6 L/yr

Senior Payroll Specialist
12 salaries
unlock blur

₹4.2 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Zellis Hr India with

Automatic Data Processing (ADP)

4.0
Compare

UKG

3.1
Compare

PeopleStrong

3.4
Compare

SAP

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