Upload Button Icon Add office photos

Amdocd

Compare button icon Compare button icon Compare

Filter interviews by

Amdocd Sde1 Interview Questions and Answers

Updated 24 Dec 2022

Amdocd Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 24 Dec 2022

I applied via Campus Placement and was interviewed in Jun 2022. There were 4 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 - Coding Test 

Basic coding test on DSA on hirepro 90 mins total , choice of your own language. Easy to midium level questions

Round 3 - Technical 

(3 Questions)

  • Q1. Swap a number without any temporary variables and pointers.
  • Ans. 

    Swapping numbers without temporary variables or pointers.

    • Use addition and subtraction to swap values

    • For example, a = a + b; b = a - b; a = a - b;

    • Another method is to use XOR bitwise operator

    • For example, a = a ^ b; b = a ^ b; a = a ^ b;

  • Answered by AI
  • Q2. What is bubble sort time complexity, Code it
  • Ans. 

    Bubble sort has a time complexity of O(n^2)

    • Bubble sort compares adjacent elements and swaps them if they are in the wrong order

    • It repeats this process until the array is sorted

    • It has a worst-case time complexity of O(n^2) and a best-case time complexity of O(n)

    • It is not efficient for large datasets

  • Answered by AI
  • Q3. U have a seesaw their are 9 people on an island one ways slightly heavier or lighter than the rest find that person in minimum no of comparisons
Round 4 - HR 

(2 Questions)

  • Q1. Why do you want to join amdocs
  • Ans. 

    I want to join Amdocs for its innovative culture, commitment to technology, and opportunities for professional growth in the telecom sector.

    • Innovative Culture: Amdocs is known for fostering creativity and innovation, which aligns with my passion for developing cutting-edge solutions.

    • Commitment to Technology: Amdocs invests heavily in new technologies, such as AI and cloud computing, allowing me to work on the latest ad...

  • Answered by AI
  • Q2. Do you have plans for higher education

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident prepare your resume well brush up on your projects and skills mentioned in your resume and do DSA,

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Amdocd?
Ask anonymously on communities.

Interview questions from similar companies

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 12 Aug 2017

I appeared for an interview in Aug 2017.

Interview Questionnaire 

17 Questions

  • Q1. -----/ But here the main thing is that handling of corner cases like when there are duplicate tickets and when there is no proper path possible with given tickets
  • Q2. -----/
  • Q3. N queen problem with problem statement and dry running of code with 4 queens and then writing the code
  • Q4. Sub set problem(Check if there exists any sub array with given sum in the array ) . But the thing here is that we have to do it with space complexity of only O( 1 K ) . K is the sum given .
  • Q5. What is NP hardness .
  • Ans. 

    NP hardness refers to the difficulty of solving a problem in non-deterministic polynomial time.

    • NP-hard problems are some of the most difficult problems in computer science.

    • They cannot be solved in polynomial time by any known algorithm.

    • Examples include the traveling salesman problem and the knapsack problem.

  • Answered by AI
  • Q6. What is the difference between references and pointers
  • Q7. What is difference between reference variable and actual reference
  • Ans. 

    A reference variable is a variable that holds the memory address of an object, while an actual reference is the object itself.

    • A reference variable is declared with a specific type and can only refer to objects of that type.

    • An actual reference is the object itself, which can be accessed and manipulated using the reference variable.

    • Changing the value of a reference variable does not affect the original object, but changi...

  • Answered by AI
  • Q8. In this round he asked me about previous round questions and their time complexities also . and with every DS and Algo related questions they asked the time complexities
  • Q9. Segmentation , virtual memory , paging
  • Q10. 0-1 Knapsack problem
  • Ans. 

    The 0-1 Knapsack problem involves maximizing value within a weight limit using items that can either be included or excluded.

    • Dynamic Programming approach is commonly used to solve this problem.

    • Each item has a weight and a value; you cannot take fractional items.

    • Example: If you have items with weights [1, 2, 3] and values [10, 15, 40], and a capacity of 6, the maximum value is 55.

    • The solution involves creating a table t...

  • Answered by AI
  • Q11. What happens when we type an URL
  • Ans. 

    When we type an URL, the browser sends a request to the server hosting the website and retrieves the corresponding webpage.

    • The browser parses the URL to extract the protocol, domain, and path.

    • It resolves the domain name to an IP address using DNS.

    • The browser establishes a TCP connection with the server.

    • It sends an HTTP request to the server.

    • The server processes the request and sends back an HTTP response.

    • The browser re...

  • Answered by AI
  • Q12. Implementation of LRU (WIth Production level code)
  • Ans. 

    Implementation of LRU cache using a doubly linked list and a hash map.

    • LRU (Least Recently Used) cache is a data structure that stores a fixed number of items and evicts the least recently used item when the cache is full.

    • To implement LRU cache, we can use a doubly linked list to maintain the order of items based on their usage frequency.

    • We can also use a hash map to store the key-value pairs for quick access and retrie...

  • Answered by AI
  • Q13. Given page access sequence and we have to tell final output using different page replacement algorithms like FIFO , LRU etc
  • Ans. 

    Explaining page replacement algorithms like FIFO and LRU using a given page access sequence.

    • FIFO (First-In-First-Out): Replaces the oldest page in memory.

    • Example: Access sequence [1, 2, 3, 1, 2, 4] with 3 frames results in [1, 2, 4].

    • LRU (Least Recently Used): Replaces the page that hasn't been used for the longest time.

    • Example: Access sequence [1, 2, 3, 1, 2, 4] with 3 frames results in [2, 3, 4].

    • Optimal: Replaces the ...

  • Answered by AI
  • Q14. What is indexing in DBMS How do we maintain it
  • Ans. 

    Indexing in DBMS is a technique to improve query performance by creating a data structure that allows faster data retrieval.

    • Indexing is used to speed up data retrieval operations in a database.

    • It involves creating a separate data structure that maps the values of a specific column to their corresponding records.

    • This data structure is called an index.

    • Indexes are typically created on columns that are frequently used in s...

  • Answered by AI
  • Q15. B trees , B+ trees with examples
  • Q16. AVL trees with examples and their balancing
  • Q17. Pid ={3,5,0,1} ppid ={5,4,2,2} process id(pid) ppid=parent process id let us say the process that we killed is 2 now we have to print 2,0,1 as 0,1 are child of 2 and suppose that if we have children f...
  • Ans. 

    Given a list of process IDs and their corresponding parent process IDs, print the IDs of all processes that are children of a specific process ID, and recursively kill all their children.

    • Iterate through the list of process IDs and parent process IDs

    • Check if the current process ID is the one to be killed

    • If yes, recursively find and print all its children

    • If a child has further children, recursively kill them as well

  • Answered by AI

Interview Preparation Tips

Round: WRITTEN
Experience: It is a written round .

We are given with 2 coding questions of 10 marks each .There is no negative marking for coding questions

1)Given a string you have to partition the string in such a manner that each part of the partitioned string is a palindrome in itself and you have to count the number of such partition

For eg: given string NITIN
N ITI N
N I T I N
NITIN
So output will be 3.

2)You are given with a large paragraph and N words.
You have to find a min length subparagraph of the paragraph which contain all those N words in any order. Here length of a paragraph is the count of words in the paragraph.

There are 20 MCQ's all are technical questions only majorly from DSA
Tips: Coding it comes from practice . And for aptitude be good at fundamentals like time complexities etc .

Round: Technical Interview
Experience: Some times luck in interview is also important .I was unable to solve the second question initially ,but later with the help of my interviewer I was able to solve it .
Tips: Even if you are not able to solve the question initially don't be panic it will definitely go well

Round: Technical Interview
Experience: There are so many other questions . But sorry to say that I don't remember all of them ,if I remember them at some other time I will again update it here .

This round interviewer was very nice person And he is very helpful in fact .
Tips: Have solid basics at all data structures and algorithms ,Operating Systems


Round: Technical Interview
Experience: This round is entirely about other CS subjects like OS , DBMS,Networking .

Here asked me do you know other CS subjects like compiler design etc .
But as I am from Electronics I told them that I don't know all those subjects
Tips: Be good at other Cs subjects also

Round: Technical Interview
Experience: I solved above question Using DFS .I constructed a Graph using given information . and I did DFS starting from Given process .In the graph I took each process as 1 Node and the corresponding parent child relationship between the process as edges .
Tips: They will give sufficient time for thinking of the solution . So don't worry immediately after seeing the question . First think well you will definitely get it

Skills: Algorithms And DataStructures, Algorithm Analysis, Operating Systems, Basic Knowledge Of DBMS, Networking Basics, Object Oriented Programming (OOP) Basics
College Name: MNIT

Skills evaluated in this interview

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. Given process IDs (pid) and parent process IDs (ppid), and a proc ... read more
Q4. Given a point and a circle, how would you determine if the point ... read more
asked in Amazon
Q5. Given an array, determine if there exists a subarray with a given ... read more

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 2 Nov 2022

I applied via Company Website and was interviewed before Nov 2021. There were 3 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 - Aptitude Test 

General Leet Code Question and it was easy

Round 3 - Coding Test 

General coding question which was from difficult

Interview Preparation Tips

Topics to prepare for Amazon Sde1 interview:
  • leetcode
  • Python
Interview preparation tips for other job seekers - Prepare Amazon Principles and also leet code.
Good to know system designs and more.

Sde1 Interview Questions & Answers

Amazon user image Rhea Mehta

posted on 8 Aug 2022

I applied via Campus Placement and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. You are given a family tree, and a node, you have to print all the nodes on the same level as it.
  • Ans. 

    Given a node in a family tree, print all nodes on the same level.

    • Traverse the tree level by level using BFS

    • Keep track of the level of each node while traversing

    • Print all nodes with the same level as the given node

    • Example: If the given node is 'John', print all his siblings and cousins

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer will be friendly and will be there to help you throughout, stay calm, revise your basics of tree/graph/array/strings and you'll do good. Focus mainly on tree/graph questions as almost everyone got asked at least one question relating to that.

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 11 Aug 2022

I applied via LinkedIn and was interviewed in Jul 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 - One-on-one 

(1 Question)

  • Q1. Linux Networking Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Linux (core) Networking (IP and Subnet) Programming (OOP)

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 18 Aug 2022

I applied via Campus Placement and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions were asked, 1 invloves sorting and manipulation and the other one was trees question.

Round 2 - One-on-one 

(3 Questions)

  • Q1. 1 trees question and 1 priority queue question
  • Q2. Connect n ropes with minimum cost(priority queue question)
  • Ans. 

    Connect n ropes with minimum cost using priority queue

    • Create a priority queue and insert all the ropes into it

    • Pop the two smallest ropes from the queue and connect them

    • Insert the new rope into the queue and repeat until only one rope remains

    • The cost of connecting two ropes is the sum of their lengths

    • Time complexity: O(nlogn)

    • Example: Ropes of lengths 4, 3, 2, and 6 can be connected with a cost of 29

  • Answered by AI
  • Q3. Find the height of the tree when the leaf nodes are connected with each other
  • Ans. 

    The height of the tree can be found by counting the number of edges from the root to the farthest leaf node.

    • Count the number of edges from the root to the farthest leaf node

    • This will give the height of the tree

    • Example: If the farthest leaf node is 4 edges away from the root, the height of the tree is 4

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Amazon Sde1 interview:
  • Data Structures
  • OOPS
Interview preparation tips for other job seekers - Practicing Data Structures and Algorithms is must.

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 30 Dec 2022

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

I applied via LinkedIn and was interviewed in Jun 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Coding based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Jsjsvhs svamsvamd bssmxvsn sbdnvvsksbs xhxksbshsksn
Are these interview questions helpful?

Sde1 Interview Questions & Answers

Amazon user image Subhash Liler

posted on 14 Nov 2022

I applied via Campus Placement and was interviewed in Oct 2022. There were 4 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 - Coding Test 

Machine learning, SQL, data structure

Round 3 - Group Discussion 

Privious problem with logical understanding , always participate in discussion with valid and clear points.

Round 4 - HR 

(3 Questions)

  • Q1. Explain one machine learning algorithm.
  • Ans. 

    Random Forest is a machine learning algorithm that builds multiple decision trees and combines their outputs.

    • Random Forest is an ensemble learning method.

    • It builds multiple decision trees and combines their outputs to make a final prediction.

    • It is used for both classification and regression tasks.

    • It is less prone to overfitting compared to a single decision tree.

    • It can handle missing values and outliers.

    • Example: predic...

  • Answered by AI
  • Q2. Algorithm for string attachment
  • Ans. 

    String attachment algorithm joins two strings together.

    • Create a new string variable to hold the result

    • Loop through the first string and add each character to the new string

    • Loop through the second string and add each character to the new string

    • Return the new string

  • Answered by AI
  • Q3. You strength and weakness

Interview Preparation Tips

Topics to prepare for Amazon Sde1 interview:
  • Machine Learning
  • Data Structures
Interview preparation tips for other job seekers - Always confident, don't choose what you not know. Always learn some key machine learning algorithma and data structure. Recently Python language are more cooperative and easy to learn so yes if you are beginner so start to leaning python.

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Amazon user image Anonymous

posted on 6 May 2022

Round 1 - Coding Test 

Dynamic Programing, string manipulation

Round 2 - Technical 

(1 Question)

  • Q1. Largest common ancestor
  • Ans. 

    Largest common ancestor is the most recent node that is a common ancestor of two or more nodes in a tree.

    • It is commonly used in computer science and genealogy.

    • In genealogy, it refers to the most recent common ancestor of two or more individuals.

    • In computer science, it is used in algorithms for finding the lowest common ancestor of two nodes in a tree.

    • It can be found using various algorithms such as Tarjan's off-line le...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Rain water trapping Problem
  • Ans. 

    Rain water trapping problem refers to the accumulation of rainwater in low-lying areas or on flat roofs.

    • The problem can be solved by installing rainwater harvesting systems.

    • Proper drainage systems can also prevent rainwater trapping.

    • Green roofs and permeable pavements can help absorb rainwater.

    • Rain gardens can be created to collect and filter rainwater.

    • Regular maintenance of gutters and downspouts can prevent clogging ...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Basic Computer Science concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of the rounds focus on Data structure and algorithms skills. Try Practising medium and few hard question from leetcode.

Skills evaluated in this interview

Sde1 Interview Questions & Answers

Amazon user image ananya jamaiyar

posted on 15 May 2022

Round 1 - Coding Test 
Round 2 - HR 

(1 Question)

  • Q1. Detailed discussion about your resume
Round 3 - Technical 

(1 Question)

  • Q1. Database related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Well be confident about the things you mentioned in your resume.

Amdocd Interview FAQs

How many rounds are there in Amdocd Sde1 interview?
Amdocd interview process usually has 4 rounds. The most common rounds in the Amdocd interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Amdocd Sde1 interview?

Some of the top questions asked at the Amdocd Sde1 interview -

  1. U have a seesaw their are 9 people on an island one ways slightly heavier or li...read more
  2. Swap a number without any temporary variables and pointe...read more
  3. What is bubble sort time complexity, Code...read more

Tell us how to improve this page.

Sde1 Interview Questions from Similar Companies

Amazon Sde1 Interview Questions
4.0
 • 30 Interviews
Accenture Sde1 Interview Questions
3.7
 • 3 Interviews
TCS Sde1 Interview Questions
3.6
 • 2 Interviews
Jio Sde1 Interview Questions
4.1
 • 2 Interviews
Flipkart Sde1 Interview Questions
3.9
 • 2 Interviews
Infosys Sde1 Interview Questions
3.6
 • 1 Interview
BYJU'S Sde1 Interview Questions
3.1
 • 1 Interview
View all
Compare Amdocd with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview