Upload Button Icon Add office photos
Engaged Employer

i

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

Wipro Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 52k Reviews

Filter interviews by

Wipro Servicenow Consultant Interview Questions and Answers

Updated 21 Oct 2024

Wipro Servicenow Consultant Interview Experiences

1 interview found

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

(3 Questions)

  • Q1. Rest Api integration
  • Q2. Sccm integration
  • Q3. Define response body
  • Ans. 

    Response body is the data sent back from a server in response to a client's request.

    • Contains information requested by the client

    • Usually in JSON or XML format

    • Includes status codes like 200 for success or 404 for not found

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Discussion on current components

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepared be clear with basic concepts and interview stages will be basic to advanced level.

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. Configure an email notification using email script.
  • Ans. 

    Configure email notification using email script

    • Create a new notification in ServiceNow

    • Select 'Email Script' as the notification type

    • Write the email script to define the email content and recipients

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Manager round related questions.
Round 3 - HR 

(1 Question)

  • Q1. CTC negotiation etc.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Types of client scripts
  • Ans. 

    Client scripts in ServiceNow can be categorized into three types: onLoad, onChange, and onSubmit.

    • onLoad client scripts run when a form is loaded

    • onChange client scripts run when a field value is changed

    • onSubmit client scripts run when a form is submitted

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Skills evaluated in this interview

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

Logical and verbal reasoning

Round 2 - Coding Test 

Good and factorial series

I applied via Naukri.com and was interviewed in Aug 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. Difference between incident management and major incident management
  • Ans. 

    Incident management deals with any unplanned interruption while major incident management deals with critical incidents that require immediate attention.

    • Incident management is a process of managing any unplanned interruption in the service, whereas major incident management deals with critical incidents that require immediate attention.

    • Incident management aims to restore normal service operation as soon as possible, wh...

  • Answered by AI
  • Q2. What is stagging table
  • Ans. 

    Staging table is a temporary table used to store data before it is processed and loaded into the final destination table.

    • Staging tables are used in ETL (Extract, Transform, Load) processes.

    • They help to ensure data quality and consistency before it is loaded into the final destination table.

    • Staging tables can also be used for data migration or integration projects.

    • Examples of staging tables include: import tables, expor

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare with all topics which you mentioned in resume and be transparent about your knowledge
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions held online with their portal

Round 2 - Coding Test 

Broad coding and basic oops

Round 3 - HR 

(1 Question)

  • Q1. About hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Preview about basics and brush up

I applied via Naukri.com and was interviewed in Oct 2022. 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 - HR 

(4 Questions)

  • Q1. What is java? What is variable?
  • Ans. 

    Java is a popular programming language used for developing various applications. A variable is a named memory location used to store data.

    • Java is an object-oriented language

    • It is platform-independent

    • Variables in Java have a specific data type

    • Variables can be assigned values and their values can be changed

    • Example: int age = 25; String name = "John";

  • Answered by AI
  • Q2. What is inheritance? types of inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows code reuse and promotes code organization.

    • There are different types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

    • Single inheritance involves a class inheriting from a single base class.

    • Multiple inheritance involves...

  • Answered by AI
  • Q3. 1.Java is a high level language 2.java is a programme is called a set of instructions 3.java run time environment (jre) 4.java is a platform independent. Variable: A variable which is container that some d...
  • Q4. Inheritance; 1.Acquring the properties of parent class to the child class with out changeing the properties of parent class is known as inheritance 2.inheritanc is a is relationship 3.extends keyword is us...
  • Ans. 

    Inheritance is acquiring properties of parent class to child class without changing parent class properties. It is classified into 5 types.

    • Inheritance is a way to reuse code and establish a relationship between classes

    • The 'extends' keyword is used to implement inheritance in Java

    • Examples of inheritance include a 'Car' class inheriting properties from a 'Vehicle' class

    • Single level inheritance involves one parent class a...

  • Answered by AI
Round 3 - Group Discussion 

May I about you ? Which your qualification and which stream

Interview Preparation Tips

Topics to prepare for Tata Group Software Developer interview:
  • Core Java
  • Web Technologies
Interview preparation tips for other job seekers - My strength is quick learner, self motivated, Hard working
My weakness is if any body ask for help me,I never say know.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. As Tomcat is the default server in Spring Boot, how would you add a new server?
  • Ans. 

    To add a new server in Spring Boot, you need to exclude the default Tomcat dependency and add the desired server dependency.

    • Exclude the Tomcat dependency in the pom.xml file

    • Add the desired server dependency in the pom.xml file

    • Configure the server properties in the application.properties or application.yml file

  • Answered by AI
  • Q2. How can you check if a string is not null without string != null?
  • Ans. 

    Checking if a string is not null without using string != null.

    • Use string.IsNullOrEmpty() method

    • Use string.IsNullOrWhiteSpace() method

    • Use string.Compare() method to compare with an empty string

    • Use string.Length property to check if length is greater than 0

  • Answered by AI
  • Q3. Yoda notation.
  • Ans. 

    Yoda notation is a programming style where the order of a conditional statement is reversed.

    • Used to avoid null pointer exceptions

    • Improves readability for complex conditions

    • Example: if ('red' === color) instead of if (color === 'red')

  • Answered by AI
  • Q4. Convert a List of employees into a Map of Employees with ID as the key.
  • Ans. 

    Convert a List of employees into a Map of Employees with ID as the key.

    • Create an empty Map

    • Iterate through the List of employees

    • For each employee, add a key-value pair to the Map with ID as key and employee object as value

  • Answered by AI
  • Q5. Use Java 8. Collectors.toMap(Employee.getID(), e -> e).

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your skills on Java 8, Spring Boot, Hibernate, JPA, and Collections framework in Java (including Map).

Skills evaluated in this interview

I applied via Referral and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How Many Employees Working In Your Company
  • Q2. This Year How Much Profit Increased
  • Ans. 

    I don't have the available data.

    • N/A

  • Answered by AI
  • Q3. Company Was Devoloped From Last Year To This Year

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain Be Confident Be Honourble

I applied via Recruitment Consulltant and was interviewed in Sep 2021. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Add Interview Questions
Round 3 - Technical 

(1 Question)

  • Q1. Add Interview Questions
Round 4 - Technical 

(1 Question)

  • Q1. Add Interview Questions
Round 5 - HR 

(1 Question)

  • Q1. Mostly Salary Discussions along with other background details

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in what you know and be open in expressing the same.

Wipro Interview FAQs

How many rounds are there in Wipro Servicenow Consultant interview?
Wipro interview process usually has 2 rounds. The most common rounds in the Wipro interview process are Technical and HR.
How to prepare for Wipro Servicenow Consultant 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 Wipro. The most common topics and skills that interviewers at Wipro expect are ITIL and ITSM.
What are the top questions asked in Wipro Servicenow Consultant interview?

Some of the top questions asked at the Wipro Servicenow Consultant interview -

  1. Define response b...read more
  2. Discussion on current compone...read more
  3. Rest Api integrat...read more

Tell us how to improve this page.

Wipro Servicenow Consultant Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Wipro Servicenow Consultant Salary
based on 22 salaries
₹4 L/yr - ₹15.1 L/yr
20% less than the average Servicenow Consultant Salary in India
View more details

Wipro Servicenow Consultant Reviews and Ratings

based on 3 reviews

2.4/5

Rating in categories

2.8

Skill development

3.6

Work-life balance

2.8

Salary

2.8

Job security

3.2

Company culture

2.0

Promotions

2.4

Work satisfaction

Explore 3 Reviews and Ratings
Project Engineer
32.7k salaries
unlock blur

₹1.8 L/yr - ₹8.3 L/yr

Senior Software Engineer
23.1k salaries
unlock blur

₹5.8 L/yr - ₹22.4 L/yr

Senior Associate
21.3k salaries
unlock blur

₹0.8 L/yr - ₹5.5 L/yr

Senior Project Engineer
20.5k salaries
unlock blur

₹5 L/yr - ₹19.5 L/yr

Technical Lead
18.7k salaries
unlock blur

₹8.3 L/yr - ₹36.5 L/yr

Explore more salaries
Compare Wipro with

TCS

3.7
Compare

Infosys

3.6
Compare

Tesla

4.3
Compare

Amazon

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