Upload Button Icon Add office photos

Filter interviews by

Jeevan Technologies Servicenow Developer Interview Questions and Answers

Updated 12 Oct 2023

Jeevan Technologies Servicenow Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Apr 2023. 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. Singletone class write code
  • Ans. 

    A singleton class is a class that can only have one instance created throughout the application.

    • Ensure the class has a private constructor to prevent external instantiation.

    • Provide a static method to access the single instance of the class.

    • Use a static variable to hold the single instance of the class.

    • Example: public class Singleton { private static Singleton instance = new Singleton(); private Singleton() {} public st...

  • Answered by AI
  • Q2. Wrote singleton class
  • Ans. 

    A singleton class is a class that can only have one instance created at a time.

    • Ensure the class has a private constructor to prevent external instantiation.

    • Provide a static method to access the single instance of the class.

    • Use a static variable to hold the single instance of the class.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Asked about servicenow scripting
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at G L Bajaj Institute of Technology & Management, Greater Noida and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

They asked some general Quantitative and logical questions and code snippets.

Round 2 - Technical 

(2 Questions)

  • Q1. String Reverse and Two Sum
  • Q2. Related to my projects and Tech Stacks
Round 3 - Technical 

(2 Questions)

  • Q1. This is the Second technical round. The interviewer asked about everything from my project.
  • Q2. Asked some sql queries like joins and set operation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and Understand the business idea of your Project and Tech Stacks
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

We can easily pass the test cases

Round 2 - One-on-one 

(5 Questions)

  • Q1. OOPS, Exception Handling, Collections, Arrays, Strings
  • Q2. What is Interface
  • Ans. 

    Interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.

    • Interfaces are used to define a contract for classes that implement them.

    • Classes can implement multiple interfaces in Java.

    • Interfaces cannot have instance fields, constructors, or non-static methods.

    • Example: interface Shape { void draw(); }

    • Example: class Circle...

  • Answered by AI
  • Q3. What is Abstractin
  • Ans. 

    Abstraction is a concept in object-oriented programming where only relevant data is shown to the user while hiding unnecessary details.

    • Abstraction helps in simplifying complex systems by only showing essential features.

    • It allows for creating abstract classes and interfaces in Java.

    • Example: In a car, the driver only needs to know how to drive it without understanding the internal workings of the engine.

  • Answered by AI
  • Q4. Explain about Exception and Exception handling
  • Ans. 

    Exceptions are unexpected events that disrupt the normal flow of a program. Exception handling is the process of dealing with these events.

    • Exceptions are objects that represent an abnormal condition or error in a program.

    • Exception handling allows developers to gracefully handle errors and prevent the program from crashing.

    • Java provides try-catch blocks for handling exceptions. The try block contains the code that may t...

  • Answered by AI
  • Q5. Explain Arrays and Strinds
  • Ans. 

    Arrays are a collection of elements of the same data type, while Strings are a sequence of characters.

    • Arrays can store multiple values of the same data type, accessed by index.

    • Strings are immutable sequences of characters, can be manipulated using various methods.

    • Example: int[] numbers = {1, 2, 3}; String name = "John";

  • Answered by AI

Skills evaluated in this interview

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

Code Snept question with 3-4 Reasoning question. Google form

Round 2 - Assignment 

Pen paper coding round. String , Array . Linkedlist , graph, questions

Round 3 - Technical 

(3 Questions)

  • Q1. Maximum Spaning
  • Q2. Nearest Prime number
  • Ans. 

    To find the nearest prime number, iterate from the given number in both directions until a prime number is found.

    • Start iterating from the given number in both directions to find the nearest prime number.

    • Check if a number is prime by dividing it by all numbers less than its square root.

    • Keep track of the closest prime number found during the iteration.

  • Answered by AI
  • Q3. Second Maximum Number in Array
  • Ans. 

    Find the second maximum number in an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Project Question
  • Q2. Robot question of DSA
  • Q3. Stock Buy and sell - VI . Leetcode Hard
  • Q4. Leetcode Medium

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is java virtual machine?
  • Q2. What os inheritance in java?
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

First round is technical apptitude in java or python

Round 2 - Coding Test 

Second round is strings and array coding test

Round 3 - Coding Test 

Third level also advanced coding level

Round 4 - HR 

(2 Questions)

  • Q1. Basic information
  • Q2. Basic level hr questions

Interview Preparation Tips

Topics to prepare for Soft Suave Technologies Java Developer interview:
  • Java
Interview preparation tips for other job seekers - study well ,try your best
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Maharaja Agrasen Institute of Technology, Delhi and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Duration 60 min, topics: DBMS, computer networking, outputs, SQL queries

Round 2 - Coding Test 

Topics: Trees, DP, Greedy

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good understanding of DSA, specially topics like Trees, DP, Graph and Greedy
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is normalization
  • Ans. 

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

    • Normalization helps in minimizing data redundancy by dividing the database into multiple tables.

    • It ensures data integrity by avoiding update anomalies.

    • Normalization is achieved through a series of rules called normal forms, such as 1NF, 2NF, 3NF, etc.

    • Example: In a database, instead of storing customer details i...

  • Answered by AI
  • Q2. What is reflection
  • Ans. 

    Reflection is the ability of a program to examine and modify its own structure and behavior at runtime.

    • Allows accessing metadata of types and members at runtime

    • Enables dynamic instantiation of objects

    • Facilitates invoking methods dynamically

  • Answered by AI

Jeevan Technologies Interview FAQs

How many rounds are there in Jeevan Technologies Servicenow Developer interview?
Jeevan Technologies interview process usually has 2 rounds. The most common rounds in the Jeevan Technologies interview process are Resume Shortlist and Technical.
How to prepare for Jeevan Technologies Servicenow 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 Jeevan Technologies. The most common topics and skills that interviewers at Jeevan Technologies expect are CSM, GRC, HTML, Javascript and Service Management.
What are the top questions asked in Jeevan Technologies Servicenow Developer interview?

Some of the top questions asked at the Jeevan Technologies Servicenow Developer interview -

  1. singletone class write c...read more
  2. wrote singleton cl...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Jeevan Technologies interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Associate
40 salaries
unlock blur

₹7.7 L/yr - ₹16.9 L/yr

Senior Associate
36 salaries
unlock blur

₹8.4 L/yr - ₹35.5 L/yr

Salesforce Developer
33 salaries
unlock blur

₹3 L/yr - ₹10.7 L/yr

Senior IT Analyst
14 salaries
unlock blur

₹5 L/yr - ₹11.2 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Explore more salaries
Compare Jeevan Technologies with

Infosys

3.7
Compare

TCS

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