i
ServiceNow
Filter interviews by
I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.
To find the area of a triangle given coordinates, use the formula: (1/2) * base * height
Identify the coordinates of the three vertices of the triangle
Calculate the length of each side of the triangle using the distance formula
Use Heron's formula or the formula (1/2) * base * height to calculate the area
Top trending discussions
I applied via Company Website and was interviewed in Sep 2021. There was 1 interview round.
HTML5 is the latest version of the HTML standard, with new features for multimedia, graphics, and interactivity.
Support for multimedia elements like <video> and <audio>
Canvas and SVG for graphics rendering
Improved form controls and validation
Offline storage capabilities with Local Storage and IndexedDB
Geolocation API for location-based services
Web Workers for running scripts in background threads
CSS box model is a design concept that describes how elements are rendered on a web page.
It consists of content, padding, border, and margin.
Content is the actual element content.
Padding is the space between the content and the border.
Border is the line that surrounds the content and padding.
Margin is the space between the border and the next element.
The box model can be adjusted using CSS properties such as padding, b...
Prototype chaining is the mechanism by which objects inherit properties and methods from their prototype.
Every object in JavaScript has a prototype property that refers to another object.
If a property or method is not found on an object, JavaScript looks for it in the object's prototype chain.
Prototype chaining can be used to create inheritance in JavaScript.
Modifying the prototype of an object affects all objects that
React is a JavaScript library for building user interfaces.
Declarative approach to building UI
Component-based architecture
Virtual DOM for efficient updates
JSX syntax for writing HTML in JavaScript
One-way data binding
Support for server-side rendering
Large and active community
Integration with other libraries and frameworks
Media elements are HTML tags used to embed media content like images, audio, video, etc. in a web page.
Media elements include <img> for images, <audio> for audio files, and <video> for video files.
They allow developers to easily integrate multimedia content into web pages.
Attributes like src, alt, controls, autoplay, etc. can be used to customize the behavior of media elements.
Same Origin Policy is a security feature in web browsers that restricts web pages from making requests to a different domain.
It prevents malicious scripts from accessing sensitive data from other websites
It applies to all web content, including JavaScript, CSS, and images
Cross-Origin Resource Sharing (CORS) is used to bypass the Same Origin Policy
Example: A script from www.example.com cannot access data from www.anothe
Redux is a predictable state container for JavaScript apps.
Redux is a library for managing application state.
It provides a single source of truth for the entire application state.
Redux follows a unidirectional data flow pattern.
Actions are dispatched to update the state, which triggers a re-render of the UI.
Redux can be used with React, Angular, Vue, and other frameworks.
Thunk is a function that delays the evaluation of an expression.
A thunk is a function that wraps an expression to delay its evaluation.
It is commonly used in Redux to handle asynchronous actions.
Thunks are used to dispatch actions that return a function instead of an object.
Thunks can be used to handle side effects in React components.
Callbacks are functions passed as arguments to other functions and executed later.
Callbacks are used for asynchronous programming.
They allow a function to be called when an event occurs.
They can be used to handle errors in asynchronous code.
Examples include event listeners and setTimeout() function.
Promises are objects that represent the eventual completion or failure of an asynchronous operation.
Promises have 3 states: pending, fulfilled, or rejected
Pending is the initial state when a promise is created
Fulfilled means the operation completed successfully
Rejected means the operation failed
Promises can be chained using .then() and .catch() methods
Worker threads allow for parallel execution of JavaScript code in the browser or Node.js environment.
Worker threads can be used to perform CPU-intensive tasks without blocking the main thread.
They can also be used to communicate between different scripts or modules.
In Node.js, worker threads can be created using the 'worker_threads' module.
In the browser, worker threads can be created using the 'Worker' constructor.
Exa...
posted on 31 Mar 2022
I applied via Naukri.com and was interviewed before Mar 2021. There were 2 interview rounds.
I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.
I applied via Naukri.com and was interviewed in Jun 2020. There were 5 interview rounds.
I appeared for an interview before Jan 2021.
Round duration - 120 Minutes
Round difficulty - Medium
The test included MCQ questions from SQL, Linux Commands, C/C++ programming, Logical Reasoning, Aptitude
questions. The other section was the coding round, where 2 SQL queries and 2 coding questions were there.
Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x2 + y2 = z2 within the array.
The first lin...
Detect if an array contains a Pythagorean triplet by checking if there are three integers x, y, and z such that x^2 + y^2 = z^2.
Iterate through all possible triplets of numbers in the array and check if they form a Pythagorean triplet.
Use a nested loop to generate all possible combinations of three numbers from the array.
Check if the sum of squares of any three numbers is equal to the square of another number.
Return 'y...
Given a string STR
consisting of lowercase English letters, identify the first non-repeating character in the string and return it. If no such characte...
Identify the first non-repeating character in a string and return it, or '#' if none exists.
Iterate through the string to count the frequency of each character
Iterate through the string again to find the first character with frequency 1
Return the first non-repeating character or '#' if none exists
Round duration - 70 Minutes
Round difficulty - Medium
This was a standard DSA round where I was asked to solve 2 questions and also code it in a production ready manner . After DS and Algo , I was asked some questions from OOPS and Java followed by some Unix Commands and basic concepts from Operating Systems.
Given an array ARR
of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.
Return the duplicate elements in any orde...
Find duplicates in an array of integers within a specified range.
Iterate through the array and keep track of the count of each element using a hashmap.
Return elements with count greater than 1 as duplicates.
Time complexity can be optimized to O(N) using a set to store duplicates.
Given a singly linked list of integers, return the head of the reversed linked list.
Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
Reversed link...
Reverse a singly linked list of integers and return the head of the reversed linked list.
Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.
Use three pointers - prev, current, and next to reverse the linked list in O(N) time and O(1) space complexity.
Update the head of the reversed linked list as the last node encountered during the reversal process.
Serialization is the process of converting an object into a byte stream, while deserialization is the reverse process.
Serialization is used to persist object state or transmit objects over a network.
Deserialization reconstructs the object from the byte stream.
Java provides Serializable interface for serialization and ObjectInputStream/ObjectOutputStream classes for deserialization.
Example: Serializing an object to a fi
Singleton class in Java ensures that a class has only one instance and provides a global point of access to it.
Singleton class restricts the instantiation of a class to one object.
It provides a way to access its unique instance globally.
Commonly implemented using a private constructor and a static method to return the instance.
Example: Logger class in a multi-threaded application.
Piping in Unix/Linux allows the output of one command to be used as the input for another command.
Piping is done using the | symbol
It helps in connecting multiple commands together to perform complex operations
Example: ls -l | grep .txt - This command lists all files in long format and then filters out only the .txt files
Round duration - 30 Minutes
Round difficulty - Easy
This was a typical HR round with some standard Behavioral questions .
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.
Rotational shifts refer to working in different shifts at different times. Web service flow is the sequence of steps involved in a web service request. Checking ports on Unix or Solaris machine involves using the netstat command.
Rotational shifts involve working in different shifts at different times, such as day shift, night shift, and swing shift.
Web service flow involves a sequence of steps, such as sending a reques...
I appeared for an interview in Jul 2019.
Software Engineer
424
salaries
| ₹12 L/yr - ₹45 L/yr |
Senior Software Engineer
394
salaries
| ₹16 L/yr - ₹60 L/yr |
Technical Support Engineer
134
salaries
| ₹8 L/yr - ₹24.5 L/yr |
Content Data Analyst
91
salaries
| ₹2.8 L/yr - ₹4.1 L/yr |
Software Developer
87
salaries
| ₹10.3 L/yr - ₹36.5 L/yr |
Oracle
Amdocs
Automatic Data Processing (ADP)
24/7 Customer