Servicenow
More Experiences
Servicenow IC2 No response after last round
April 19, 2025 • 4 reads
Summary
I recently appeared for a ServiceNow IC2 interview, detailing three rounds including DSA, system design, and behavioral questions, but I have not yet received a response after the final round.
Full Experience
Hi everyone,
I recently appeared for a ServiceNow interview.
First Round: DSA + My Previous Work
Bracket Swapping (standard question)Math + Binary Search question (easy-medium level, I can't recall the exact problem)
I solved both optimally.
Second Round: DSA + My Previous Work
Rotten Oranges (solved completely)Find the number of rooms required to conduct all meetings
(I explained it using the line sweep algorithm, but the interviewer asked me not to use that approach. I have come up with new approach but couldn’t code it in within the given time)
The interviewer seemed satisfied with my approach, and I got a call for the Hiring Manager round the same day.
Third Round: HM Round
Basic questions on Java, Docker, Kubernetes, Java vs Golang, Rest vs GrpcA puzzle
Discussion about my previous work, current salary, and expected salary
(I primarily work as a backend developer (SpringBoot, Golang) and have a basic understanding of Docker and Kubernetes. I answered all questions correctly, except for one Docker-related question, which I couldn't answer properly.)
It's been 5 days since the last round, and I haven’t heard back from them.
Has anyone faced a similar situation or can share any insights?
Update: HR called me asked me to share documents (3months payslip, pan, passport,...) and expected salary, I have shared all the details but no response from there side even after 4 days, not lifting the calls currently :(
About Me:
Expereience: 1 year 8 monthsCollege: Tier-1
Current Company: Startup - One of India's Biggest :)
Interview Questions (2)
Q1
Rotten Oranges
Data Structures & Algorithms
Given a grid of oranges, where 0 is an empty cell, 1 is a fresh orange, and 2 is a rotten orange. Every minute, any fresh orange that is 4-directionally adjacent to a rotten orange becomes rotten. Determine the minimum number of minutes that must elapse until no fresh oranges remain. If this is impossible, return -1.
Q2
Meeting Rooms II
Data Structures & Algorithms
Given an array of meeting time intervals intervals where intervals[i] = [starti, endi], return the minimum number of conference rooms required.