Upload Button Icon Add office photos

Filter interviews by

Xyz Company Servicenow Developer Interview Questions and Answers

Updated 3 Oct 2024

Xyz Company Servicenow Developer Interview Experiences

2 interviews found

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

(1 Question)

  • Q1. Difference between Flow and WorkFlow
  • Ans. 

    Flow is a sequence of steps to automate a task, while Workflow is a series of automated steps to manage a process.

    • Flow is a smaller unit of work within a larger process, while Workflow is the entire process.

    • Flow can be manual or automated, while Workflow is typically automated.

    • Flow can be used to automate simple tasks, while Workflow is used for complex processes.

    • Example: A Flow could be sending an email notification, ...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is normalization
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down data into smaller, more manageable parts

    • It helps in reducing data redundancy by storing data in a structured manner

    • Normalization ensures data integrity by minimizing inconsistencies and anomalies

    • There are different levels of normalization such as 1NF, 2NF, 3NF, and BCNF

  • Answered by AI

Servicenow Developer Interview Questions Asked at Other Companies

asked in Wipro
Q1. How do you calculate the time an incident is assigned to multiple ... read more
asked in Wipro
Q2. What is the difference between a service catalog, an order guide, ... read more
asked in Wipro
Q3. How can you populate the manager field using server-side code?
asked in Infosys
Q4. Write code to auto-close a parent incident when all child inciden ... read more
asked in Infosys
Q5. Can we hide the hamburger (Context menu chooser) for a user?

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Xyz Company?
Ask anonymously on communities.

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: The test was for two and half hours where 1 hour was for general aptitude, 1 hr was for coding aptitude(either on java or C or C++as you choose) and 1/2 an hour for two coding questions.

Round: Technical Interview
Experience: In technical round they asked puzzles, aptitude questions and basic C coding. I was asked to write the code for two questions(one was on sort and search) and was asked the logic of two questions.They asked basics of linked lists, stacks, queues. Infact they were not very interested in the syntax and were pressing on the logic

General Tips: Being a non software branch students is not at all a problem. The company took 4 interns where 3 were from core branches. The fact that we had to work in JAVA and most of us didn't know JAVA, the company only looks for aptitude and ability to learn. So if you don't know anything, tell frankly that you don't know that part, rather than guessing. Be thorough with what you know and confidentially answer all the questions.
Also do not be tensed and take things lightly, if the interviewer is joking. Be candid.
Skill Tips: Learn basics of coding from books . Aptitude can be done from sites likes geeks for geeks, etc. The level of aptitude is not very high and infact the coding aptitude is also theoretical and does not involve in depth knowledge.
Skills:
College Name: NIT Surathkal

Interview Preparation Tips

Round: Test
Experience: Online Test (General aptitude, C aptitude ,Programming problems).

General Tips: Study basics of C and DSA well. Utilize the last summer vacations for studying for placements. Be confident and Honest.
Yes it is challenging and exhausting. It tests your patience. But final reward is also great so we must keep going toward it.
Skill Tips: Online coding sites such as Codechef, etc. Narasimha Karumanchi for data structures and algorithm will help in preparation.
Skills:
College Name: NIT Surathkal

I applied via Campus Placement

Interview Questionnaire 

2 Questions

  • Q1. How can a chemical Engineer help citi?
  • Ans. 

    A chemical engineer can help Citi by providing expertise in process optimization, risk management, and sustainability.

    • Optimizing Citi's manufacturing processes to reduce costs and increase efficiency

    • Developing risk management strategies to ensure compliance with environmental regulations

    • Implementing sustainable practices to reduce Citi's environmental impact

    • Providing technical expertise in chemical reactions and materi...

  • Answered by AI
  • Q2. He asked me about my JEE Rank, preparations

Interview Preparation Tips

Round: HR Interview
Experience: I had done many web and android apps. They asked me about my institute experience, things I have done here. It was an easy walk for me.

Skills: SQL, Java Programming
Duration: 2
College Name: IIT Madras

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between multi tasking, multi processing and multi programming operating systems with examples ?
  • Ans. 

    Multi tasking, multi processing, and multi programming are different approaches to managing tasks in an operating system.

    • Multi tasking allows multiple tasks to run concurrently on a single processor.

    • Multi processing involves multiple processors running tasks simultaneously.

    • Multi programming allows multiple programs to be loaded into memory and executed concurrently.

    • Examples of multi tasking operating systems include Wi...

  • Answered by AI
  • Q2. Tell me about memory allocation (stack vs. heap)?
  • Ans. 

    Memory allocation refers to the process of assigning memory to programs during runtime.

    • Stack allocation is done automatically and is limited in size.

    • Heap allocation is done manually and is larger in size.

    • Stack memory is used for local variables and function calls.

    • Heap memory is used for dynamic memory allocation.

    • Memory leaks can occur if heap memory is not properly managed.

  • Answered by AI
  • Q3. You have two threads one printing even numbers in order and other odd numbers. Design an algorithm so that it prints numbers in natural order?
  • Ans. 

    Use a shared variable and synchronization mechanisms to ensure natural order printing of numbers.

    • Create two threads, one for printing even numbers and the other for printing odd numbers.

    • Use a shared variable to keep track of the current number to be printed.

    • Implement synchronization mechanisms like locks or semaphores to ensure only one thread can access the shared variable at a time.

    • Each thread should check if it is i...

  • Answered by AI
  • Q4. Print a matrix in spiral order?
  • Ans. 

    Printing a matrix in spiral order

    • Start from the first element and print it

    • Move in a spiral order towards the center of the matrix

    • Repeat until all elements are printed

  • Answered by AI
  • Q5. Thread class and Runnable Interface?
  • Ans. 

    Thread class and Runnable Interface are used for multithreading in Java.

    • Thread class is a predefined class in Java that provides methods to create and control threads.

    • Runnable interface is used to define a task that can be executed by a thread.

    • Thread class implements Runnable interface.

    • Thread class provides more control over threads than Runnable interface.

    • Example: Thread t = new Thread(new MyRunnable()); t.start();

    • Exa...

  • Answered by AI
  • Q6. What’s the difference between a Linked List and an ArrayList and give me an example of when to use which?
  • Ans. 

    Linked List is a dynamic data structure while ArrayList is a static data structure.

    • Linked List is best for frequent insertion and deletion operations.

    • ArrayList is best for frequent access operations.

    • Linked List uses more memory than ArrayList.

    • ArrayList is faster than Linked List for accessing elements.

    • Use Linked List when you need to frequently add or remove elements from the list.

    • Use ArrayList when you need to frequen...

  • Answered by AI
  • Q7. Questions of OS concepts?
  • Q8. A role play scenario was given. With a clear instruction on I don’t need to know the basis and the hypothetical assumption was presented. I was told that I was expected to respond to the given scenario, in...
  • Q9. Why are you interested in a career in investment banking?
  • Ans. 

    I am not interested in a career in investment banking.

    • I am more interested in a career in software development

    • I enjoy problem-solving and creating innovative solutions through coding

    • Investment banking does not align with my passion and skill set

  • Answered by AI
  • Q10. Why have you chosen to apply to J.P. Morgan?
  • Ans. 

    I have chosen to apply to J.P. Morgan because of their reputation, global presence, and opportunities for growth.

    • J.P. Morgan has a strong reputation in the financial industry.

    • They have a global presence with offices in multiple countries.

    • The company offers various opportunities for career growth and development.

    • J.P. Morgan is known for its innovative technology solutions in the financial sector.

    • I am impressed by their ...

  • Answered by AI
  • Q11. Have you ever made a mistake? Tell us about it?
  • Ans. 

    Yes, I have made a mistake in my previous project.

    • I underestimated the complexity of a task and ended up missing the deadline.

    • I failed to properly test a feature, resulting in a bug that affected user experience.

    • I accidentally deleted an important file without having a backup.

    • I misunderstood a requirement and implemented a feature incorrectly.

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 1

General Tips: Interview Process: Aptitude test, followed by 3 rounds of interview. Interview process was very good. Just be positive to clear the interview.
Check this link before appearing for interview with JP Morgan. It will help  -----
Skills: Algorithm, Data structure, Stack
College Name: Na

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Core java,multi threading and react

Interview Preparation Tips

Interview preparation tips for other job seekers - very good company. Interview process is very fair.
Are these interview questions helpful?

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Maximum Sum With Specific Difference Problem Statement

    Given an array of integers and a number 'K', your task is to find the maximum possible sum of disjoint pairs of numbers where the absolute difference...

  • Ans. 

    Find maximum sum of disjoint pairs with absolute difference less than K in an array.

    • Iterate through the array and sort it.

    • Find all possible disjoint pairs with absolute difference less than K.

    • Calculate the sum of these pairs to get the maximum sum.

  • Answered by AI
  • Q2. 

    Ninja And The Tree Problem Statement

    Ninja, while learning Binary Search Trees (BST), accidentally swapped two nodes in her self-constructed BST. Your task is to help Ninja by correcting the BST so that a...

  • Ans. 

    The task is to correct a Binary Search Tree by swapping two nodes in the tree.

    • Parse the input level order tree and construct the BST

    • Identify the two nodes that are swapped incorrectly

    • Swap the values of the incorrectly swapped nodes to correct the BST

    • Return the corrected BST in level order form

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in BangaloreEligibility criteriaAbove 7 CGPAAmerican Express interview preparation:Topics to prepare for the interview - OOPs concept. Various concepts like static, non-static, virtual function, abstract class, interface, etc. Dynamic programming(imp), Data Structures - Linked List, Graph, stack , queue, treeTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Solve Code chef long challenges
Tip 2 : Solve at least problem A, B,C of codeforces competition(help to solve problems in time limit).
Tip 3 : Having at least 1 good project is a plus point.

Application resume tips for other job seekers

Tip 1 : Not more than 2 pages(1 page is good)
Tip 2 : Must know about each and every point in the resume.
Tip 3 : There should be no grammatical error in the resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic react
  • Q2. Basic javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - Know the technology u use including all the basic stuff and technical names of it

I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Data warehousing concepts
  • Q2. Database optimization

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview over zoom due to pandemic. Technical interview was in depth.

Xyz Company Interview FAQs

How many rounds are there in Xyz Company Servicenow Developer interview?
Xyz Company interview process usually has 1 rounds. The most common rounds in the Xyz Company interview process are Technical.
What are the top questions asked in Xyz Company Servicenow Developer interview?

Some of the top questions asked at the Xyz Company Servicenow Developer interview -

  1. what is normalizat...read more
  2. Difference between Flow and WorkF...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 616 Interviews
Bajaj Finserv Interview Questions
4.0
 • 598 Interviews
Citicorp Interview Questions
3.7
 • 587 Interviews
HSBC Group Interview Questions
3.9
 • 510 Interviews
Klm Axiva Finvest Interview Questions
4.4
 • 433 Interviews
American Express Interview Questions
4.1
 • 386 Interviews
BNY Interview Questions
3.8
 • 366 Interviews
UBS Interview Questions
3.9
 • 351 Interviews
View all
Xyz Company Servicenow Developer Salary
based on 7 salaries
₹5.8 L/yr - ₹16 L/yr
43% more than the average Servicenow Developer Salary in India
View more details
Software Developer
1.6k salaries
unlock blur

₹18.8 L/yr - ₹46 L/yr

Software Engineer
1.4k salaries
unlock blur

₹14.6 L/yr - ₹37.4 L/yr

Manager
802 salaries
unlock blur

₹11.9 L/yr - ₹45 L/yr

Senior Software Engineer
735 salaries
unlock blur

₹10.5 L/yr - ₹45 L/yr

Team Lead
734 salaries
unlock blur

₹12.6 L/yr - ₹43 L/yr

Explore more salaries
Compare Xyz Company with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare
write
Share an Interview