Upload Button Icon Add office photos
Engaged Employer

i

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

Amdocs Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Amdocs UI Frontend Developer Interview Questions and Answers

Updated 4 Oct 2021

14 Interview questions

An UI Frontend Developer was asked
Q. What are the features of React?
Ans. 

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

An UI Frontend Developer was asked
Q. What is the CSS box model?
Ans. 

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 paddi...

UI Frontend Developer Interview Questions Asked at Other Companies

Q1. What are pseudo classes and pseudo elements in CSS?
Q2. What is the difference between display: inline, display: block, a ... read more
Q3. What is the difference between elements and components in React?
Q4. What is the difference between position: absolute and position: r ... read more
asked in Amdocs
Q5. I was asked to create a basic input with a toggle. When the toggl ... read more
An UI Frontend Developer was asked
Q. What are worker threads in JavaScript?
Ans. 

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' constructo...

An UI Frontend Developer was asked
Q. Explain promises and their three states.
Ans. 

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

What people are saying about Amdocs

View All
a software engineer iii
1w
Urgent advice required!!!
Which company is best to join Hsbc direct offer - annual bonus Amdocs offer from third party - No annual bonus Role : Senior Software Engineer Pay is almost same I have 3 yrs of experience and looking for career growth, which organization would be better to join. #urgent #careers # growth
Got a question about Amdocs?
Ask anonymously on communities.
🔥 Asked by recruiter 2 times
An UI Frontend Developer was asked
Q. What is the same-origin policy?
Ans. 

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.a...

🔥 Asked by recruiter 2 times
An UI Frontend Developer was asked
Q. What are the features of HTML5?
Ans. 

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

An UI Frontend Developer was asked
Q. Explain thunk.
Ans. 

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.

Are these interview questions helpful?
An UI Frontend Developer was asked
Q. What are callbacks?
Ans. 

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.

An UI Frontend Developer was asked
Q. Explain Redux.
Ans. 

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.

An UI Frontend Developer was asked
Q. What are media elements?
Ans. 

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.

Amdocs UI Frontend Developer Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

16 Questions

  • Q1. What are the features of html 5
  • Ans. 

    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

  • Answered by AI
  • Q2. What is a css box model
  • Ans. 

    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...

  • Answered by AI
  • Q3. What is prototype chaining
  • Ans. 

    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...

  • Answered by AI
  • Q4. What's are the features of react
  • Ans. 

    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

  • Answered by AI
  • Q5. What are media elements
  • Ans. 

    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.

  • Answered by AI
  • Q6. What is same origin property
  • Ans. 

    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...

  • Answered by AI
  • Q7. Explain redux
  • Ans. 

    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.

  • Answered by AI
  • Q8. Explain thunk
  • Ans. 

    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.

  • Answered by AI
  • Q9. What are callbacks
  • Ans. 

    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.

  • Answered by AI
  • Q10. Explain promises and it's 3 states
  • Ans. 

    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

  • Answered by AI
  • Q11. Basic js output questions
  • Q12. React life cycle methods
  • Q13. Callback hell
  • Ans. 

    Callback hell refers to the difficulty of managing nested callbacks in asynchronous programming, leading to complex and unreadable code.

    • Callback hell occurs when multiple nested callbacks are used, making code hard to read and maintain.

    • Example: A series of asynchronous operations nested within each other, like fetching data, processing it, and then saving it.

    • Using Promises can help flatten the structure and improve rea...

  • Answered by AI
  • Q14. Storage on html
  • Ans. 

    HTML provides various storage options like cookies, localStorage, and sessionStorage for web applications.

    • Cookies: Small pieces of data stored on the client-side, sent with every HTTP request. Example: user preferences.

    • localStorage: Stores data with no expiration time, accessible across sessions. Example: saving user settings.

    • sessionStorage: Stores data for the duration of the page session, cleared when the tab is clos...

  • Answered by AI
  • Q15. Worker threads on js
  • Ans. 

    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...

  • Answered by AI
  • Q16. And I was asked to create a very basic input with toggle that print on the screen when in ON position what we enter in the input
  • Ans. 

    Create a simple input with a toggle to display input text when the toggle is ON.

    • Use HTML for the input field and toggle switch.

    • Utilize JavaScript to handle the toggle state and display logic.

    • Example HTML: <input type='text' id='myInput'> <button id='toggle'>Toggle</button>

    • Example JavaScript: Use an event listener on the toggle button to check its state.

    • When ON, update a <div> with the input valu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer was cold but the interview was easy

Skills evaluated in this interview

Interview questions from similar companies

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

UI Frontend Developer Interview Questions Asked at Other Companies

Q1. What are pseudo classes and pseudo elements in CSS?
Q2. What is the difference between display: inline, display: block, a ... read more
Q3. What is the difference between elements and components in React?
Q4. What is the difference between position: absolute and position: r ... read more
asked in Amdocs
Q5. I was asked to create a basic input with a toggle. When the toggl ... read more

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Ans. 

    Creating test cases for random scenarios ensures software reliability and robustness through diverse input validation.

    • Identify edge cases: Test with minimum and maximum input values, e.g., an empty array vs. a large array.

    • Use random data: Generate random inputs to simulate real-world usage, e.g., random user names or passwords.

    • Test invalid inputs: Ensure the system handles unexpected inputs gracefully, e.g., negative n...

  • Answered by AI
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

What people are saying about Amdocs

View All
a software engineer iii
1w
Urgent advice required!!!
Which company is best to join Hsbc direct offer - annual bonus Amdocs offer from third party - No annual bonus Role : Senior Software Engineer Pay is almost same I have 3 yrs of experience and looking for career growth, which organization would be better to join. #urgent #careers # growth
Got a question about Amdocs?
Ask anonymously on communities.

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. 

    Reverse words in a string while handling leading, trailing, and multiple spaces.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words

    • Join the reversed words with a single space in between

    • Handle leading, trailing, and multiple spaces appropriately

  • Answered by AI
  • Q2. 

    Reverse a Stack Using Recursion

    You are given a stack of integers. Your task is to reverse the stack using recursion without using any extra space other than the internal stack space used due to recursion...

  • Ans. 

    Reverse a stack using recursion without using any extra space other than the internal stack space.

    • Use recursion to pop all elements from the original stack and store them in function call stack.

    • Once the stack is empty, push the elements back in reverse order.

    • Base case of recursion should be when the original stack is empty.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. 

    Convert a Binary Tree to its Mirror Tree

    Given a binary tree, convert this binary tree into its mirror tree. A binary tree is a tree in which each parent node has at most two children. The mirror of a bin...

  • Ans. 

    Convert a binary tree to its mirror tree by interchanging left and right children of all non-leaf nodes.

    • Traverse the binary tree in a recursive manner.

    • Swap the left and right children of each non-leaf node.

    • Continue this process until all nodes have been processed.

  • Answered by AI
  • Q2. 

    Remove Nth Node from End of Linked List

    You are given a singly linked list with 'N' nodes, each containing integer data, and an integer 'K'. Your goal is to remove the 'K'th node counting from the end of ...

  • Ans. 

    Remove the Kth node from the end of a singly linked list.

    • Use two pointers approach to find the Kth node from the end.

    • Handle edge cases like removing the head node or removing the last node.

    • Update the pointers to remove the Kth node and reconnect the list.

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical Managerial round.

Interview Preparation Tips

Eligibility criteriaAbove 6 months of experience24/7 customer private limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

General Tips: I asked my seniors about the interview process. Their guidelines were very helpful. Always try to bring the interviewer into your comfort zone. Also be confident and expressive while explaining. Explain your thought process while solving. Even though you don't get the solution the thought process might be very important for your selection.
College Name: NIT SURATHKAL

Interview Preparation Tips

Round: Test
Experience: Oracle had an online test which includes 3
Sections:
1. Programming: basic C++/java programming + data structure. One need to have good hand over oops
to score well in this section.

2. Aptitude: General Aptitude Questions

3. General Maths: Very simple maths problem (+2 level) but needs very very good speed.
Tips: Individual cutoff was not declared, but different cutoff for different profile is expected.
Oracle has no GD round.

Round: Interview
Experience: In 2nd round of interview, there was more programming, less resume based question and more emphasis on will I be comfortable in an IT sector. Some apti questions were also asked.

Round: Interview
Experience: 1st round was completely on resume based. Each and every project and intern is discussed in detail. Most of the extracurricular activities were also discussed. In the 1st interview, some basic program like fibonacci series by recursion, star pattern by loop etc were asked.

Round: Interview
Experience: Next round was HR. I was asked about the earlier 2 interviews and some basic HR questions.

College Name: IIT Roorkee
Are these interview questions helpful?

Interview Preparation Tips

Round: Test
Experience: The sections were Quantitative, Logical, Verbal and Computer Science.The three sections contained very basic questions of general aptitude while the Computer Science section contained questions on Database Management, OS, SQL and Programming Aptitude.

Round: Test
Experience: The question was to program a logic to test the correctness of a solved sudoku. We were allowed to code in C++, Java, C or pseudo code.

Round: Technical Interview
Experience: Were asked simple questions and program them like reversing string without temporary variables, finding the earlier date when entered as string and finding the difference in number of days between them.
I was asked to explain him my internship project in great detail and above all one should be prepared to answer the question 'Why IT?' if from a non IT background. Then I was asked to program a logic for 'Search and replace" tool of MS Word.

Round: HR Interview
Experience: Was asked about my background in detail and stressed again and again on 'Why IT?'. Then he asked me to prepare a summary on the merits and demerits of various Employee Data Management techniques for an organisation. For the end of the interview you should have a question which you would ask to the interviewer.

General Tips: Don't try to over emphasize the correctness of your logic if the interviewer finds a glitch. It irritates him. Be interactive in your HR round. In our case it was the VP of Oracle India who took the final round. So I asked him about his experience in the company. He was very happy to share it with me. But asses your interviewer before you put forth these queries cause your interviewer might not be as jolly as mine was.
Skills:
College Name: NIT Surathkal

Interview Preparation Tips

Round: Resume Shortlist
Tips: If you think it is worth it, write it in the resume.

Round: Technical Interview
Experience: I discussed a political party in one such interview in another company. He was impressed rather inspired.
Tips: All they are looking for in this interview is that you have a basic aptitude

Round: HR Interview
Tips: Try to be as real as possible. They know people and have great deal of experience. You cannot fake it.

General Tips: Peace yoo
College Name: IIT BOMBAY

Interview Questionnaire 

2 Questions

  • Q1. Ques on SQL,puzzles, C
  • Q2. Basic family background, hobbies, academics, why interest in software field, questions from the ppt they presentec earlier

Interview Preparation Tips

Round: Test
Experience: apti and logical reasoning ques  were not tough and with basic knowledge on C and SQL I could easily solve the questions
Tips: Just try to  maintain a good speed while solving

Round: Technical Interview
Experience: mostly they focus their questions based on the form that we had to fill. it had details about our extracurricular activities, main courses of interest, training and project work, software languages known, academics.
Tips: the form was to be filled with accuracy and only those points about which one is confident enough should be added

Round: HR Interview
Experience: it was just a normal interaction. they wanted to know the kind of person i am, my strengths and weakness. any impressive qualities unique of me. my favourite author. it lasted no longer than 10 minutes . and try to acquire as much background information as you about the company.
Tips: try to be honest with your answers. do not fake since they can easily catch you. do not give any such answers about which you are not confident or any view where you cannot defend yourself.

Skill Tips: I learned sql from w3school.com.
Skills: confidence, amicable nature, leadership qualities, participation in extracurricular activities, puzzle solving, Aptitude
College Name: NIT ROURKELA
Motivation: Its quite simple&#44; I wanted to land with good job before i leave  nit.
Funny Moments: Since it was the first time i was facing an interview&#44; so i asked my interviewer how were my answers.

Amdocs Interview FAQs

How to prepare for Amdocs UI Frontend 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 Amdocs. The most common topics and skills that interviewers at Amdocs expect are Amdocs, Continuous Improvement, DOM, Debugging and Flex.
What are the top questions asked in Amdocs UI Frontend Developer interview?

Some of the top questions asked at the Amdocs UI Frontend Developer interview -

  1. And I was asked to create a very basic input with toggle that print on the scre...read more
  2. What are the features of htm...read more
  3. What's are the features of rea...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 896 Interviews
Oracle Interview Questions
3.7
 • 894 Interviews
Zoho Interview Questions
4.3
 • 537 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce Interview Questions
4.0
 • 234 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
View all
Software Developer
8.5k salaries
unlock blur

₹9 L/yr - ₹15.5 L/yr

Software Engineer
1.9k salaries
unlock blur

₹6.8 L/yr - ₹16.1 L/yr

Softwaretest Engineer
1.8k salaries
unlock blur

₹5.7 L/yr - ₹13.8 L/yr

Functional Test Engineer
1.2k salaries
unlock blur

₹5.2 L/yr - ₹12.3 L/yr

Associate Software Engineer
964 salaries
unlock blur

₹4.8 L/yr - ₹10 L/yr

Explore more salaries
Compare Amdocs with

TCS

3.6
Compare

IBM

4.0
Compare

Oracle

3.7
Compare

Carelon Global Solutions

3.9
Compare
write
Share an Interview