Upload Button Icon Add office photos

Filter interviews by

Accentuate IT Solutions Python Fullstack Developer Interview Questions and Answers

Updated 5 May 2024

Accentuate IT Solutions Python Fullstack Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Assesses person's ability to understand and work with numerical data, graphs and mathematical concepts and measures understanding of language, including comprehension, vocabulary and reasoning through verbal concepts.

Round 2 - Coding Test 

Access your ability to solve algorithmic problems, often involving data structures and require you to writing code to accomplish specific task or functions, often with focus on syntax, structure and accuracy.

Round 3 - Technical 

(6 Questions)

  • Q1. What are the key differences between ArrayList and LinkdList in python?
  • Ans. 

    ArrayList is a resizable array implementation, while LinkedList is a doubly linked list implementation in Python.

    • ArrayList uses contiguous memory allocation, while LinkedList uses non-contiguous memory allocation.

    • ArrayList provides fast access to elements using index, while LinkedList provides fast insertion and deletion of elements.

    • ArrayList is better for storing and accessing data sequentially, while LinkedList is be...

  • Answered by AI
  • Q2. You can explain the HHTP request response cycle
  • Ans. 

    HTTP request response cycle involves a client sending a request to a server, which processes the request and sends back a response.

    • Client sends a request to a server using a specific HTTP method (GET, POST, PUT, DELETE, etc.)

    • Server processes the request, performs necessary actions, and generates a response

    • Server sends the response back to the client, typically including a status code (200 for success, 404 for not found...

  • Answered by AI
  • Q3. Write a function to determine if given string id palindrome
  • Ans. 

    Function to determine if a given string is a palindrome

    • Create a function that takes a string as input

    • Remove all non-alphanumeric characters and convert to lowercase

    • Compare the string with its reverse to check if it is a palindrome

    • Return True if it is a palindrome, False otherwise

  • Answered by AI
  • Q4. How would you delete and remove duplicates from an array
  • Ans. 

    To delete and remove duplicates from an array of strings, use a set to store unique values.

    • Convert the array to a set to automatically remove duplicates

    • Convert the set back to a list to maintain the original order

    • Example: array = ['apple', 'banana', 'apple', 'orange']

    • Set(array) will result in {'apple', 'banana', 'orange'}

    • List(set(array)) will give ['apple', 'banana', 'orange']

  • Answered by AI
  • Q5. How do you prioritize tasks when working on multiple projects
  • Q6. Given a list of numbers, find the first missing positive integer
  • Ans. 

    Find the first missing positive integer in a list of numbers

    • Sort the list and iterate through it to find the first positive integer

    • Use a set to keep track of positive integers already seen

    • Return the first positive integer not in the set

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accentuate IT Solutions Python Fullstack Developer interview:
  • Python fullstack development
  • Python
  • Javascript
  • MongoDB
  • Django
Interview preparation tips for other job seekers - Understand what kind of role, industry and work environment you are seeking

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Accentuate IT Solutions?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed in Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Basic structure of an HTML page
  • Ans. 

    Basic structure of an HTML page includes doctype declaration, html, head, and body tags.

    • DOCTYPE declaration specifies the HTML version

    • HTML tag wraps the entire content of the page

    • Head tag contains meta information, title, and links to external resources

    • Body tag contains the visible content of the page

  • Answered by AI
  • Q2. What is the difference between padding and margin?
  • Q3. What is Box Model?
  • Ans. 

    Box Model is a concept in CSS where every element is treated as a box with content, padding, border, and margin.

    • Box Model consists of content, padding, border, and margin.

    • Content is the actual content of the box.

    • Padding is the space between the content and the border.

    • Border is the line that goes around the padding and content.

    • Margin is the space outside the border.

  • Answered by AI
  • Q4. What are different types of directives in Angular?
  • Q5. Difference between JIT compiler and AOT?

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to answer 80 % of the questions you are asked, you will be able to crack the interview

Skills evaluated in this interview

Python Fullstack Developer Interview Questions Asked at Other Companies

Q1. What are the key differences between ArrayList and LinkedList in ... read more
Q2. How would you delete and remove duplicates from an array?
Q3. Given a list of numbers, find the first missing positive integer.
Q4. Write a function to determine if a given string is a palindrome.
Q5. What is dependency injection in FastAPI, and what are its benefit ... read more

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

Interview Questionnaire 

1 Question

  • Q1. Experience

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Medium

This is a written round on paper for everyone. Three coding questions were given. Two out of three must be correct covering every single edge case to qualify for the next round. Only the most optimal solution was to be considered.

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array ARR consisting of N integers, your goal is to determine the maximum possible sum of a non-empty contiguous subarray within this array.

    Example of Sub...

  • Ans. 

    Find the maximum sum of a contiguous subarray in an array of integers.

    • Use Kadane's algorithm to find the maximum subarray sum in linear time.

    • Initialize two variables: maxSum and currentSum.

    • Iterate through the array and update currentSum by adding the current element or starting a new subarray.

    • Update maxSum if currentSum becomes greater than maxSum.

    • Return maxSum as the maximum subarray sum.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Easy

This was face to face interview round.

  • Q1. 

    Finding Triplets in a Binary Tree Problem Statement

    You are given a Binary Tree of integers and an integer 'X'. Your task is to find all the triplets in the tree whose sum is strictly greater than 'X'. Th...

  • Ans. 

    Find all triplets in a binary tree whose sum is greater than a given integer X, with a grandparent-parent-child relationship.

    • Traverse the binary tree to find all possible triplets.

    • Check if the sum of each triplet is greater than X.

    • Ensure the relationship of grandparent-parent-child in each triplet.

    • Return the valid triplets in any order.

    • Handle constraints and edge cases appropriately.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

FACE TO FACE ROUND INTERVIEW

  • Q1. Can you tell me about yourself?
  • Q2. What is the difference between Mutex and Semaphores? Please provide a real-life example.
  • Ans. 

    Mutex is used for exclusive access to a resource by only one thread at a time, while Semaphores can allow multiple threads to access a resource simultaneously.

    • Mutex is binary and allows only one thread to access a resource at a time, while Semaphores can have a count greater than one.

    • Mutex is used for protecting critical sections of code, while Semaphores can be used for controlling access to a pool of resources.

    • Exampl...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in NoidaEligibility criteriaabove 7 cgpaAmazon interview preparation:Topics to prepare for the interview - Computer Fundamentals, Data Structures and AlgorithmsTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Participate in previous interview questions from leetcode, geeksforgeeks
Tip 2 : Revise computer science subjects like dbms and oops thoroughly
Tip 3 : Participate in live contests on CodeChef, Codeforces

Application resume tips for other job seekers

Tip 1 : Only write the things on which you are the most confident about

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Mar 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 - HR 

(16 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and opportunities offered by the position.

    • I am flexible and open to negotiation.

    • I am looking for a competitive salary that reflects my skills and experience.

    • I am more interested in the overall compensation package, including benefits and growth opportunities.

    • I would like to learn more about the company's salary range for this position.

    • I am confident that we c...

  • Answered by AI
  • Q2. What is your family background?
  • Ans. 

    My family background is diverse and multicultural.

    • My parents are from different countries, which has exposed me to different cultures and perspectives.

    • I have relatives who work in various industries, including technology and healthcare.

    • Growing up, my family encouraged me to pursue my interests in computer science and supported my education in the field.

  • Answered by AI
  • Q3. Share details of your previous job.
  • Ans. 

    I worked as a Software Developer at XYZ Company.

    • Developed and maintained software applications using Java and Python.

    • Collaborated with a team of developers to design and implement new features.

    • Participated in code reviews and debugging sessions to ensure high-quality code.

    • Worked closely with clients to gather requirements and provide technical support.

    • Implemented unit tests and performed software testing to identify an...

  • Answered by AI
  • Q4. Why should we hire you?
  • Ans. 

    I have a strong background in software development and a proven track record of delivering high-quality projects on time and within budget.

    • I have a deep understanding of various programming languages and frameworks, allowing me to adapt quickly to new technologies.

    • I am highly skilled in problem-solving and troubleshooting, which enables me to identify and resolve issues efficiently.

    • I am a team player and have excellent...

  • Answered by AI
  • Q5. Why are you looking for a change?
  • Ans. 

    Looking for new challenges and growth opportunities.

    • Seeking a more challenging role to enhance my skills and knowledge.

    • Interested in working on cutting-edge technologies and projects.

    • Want to be part of a dynamic and innovative team.

    • Desire to expand my professional network and learn from industry experts.

  • Answered by AI
  • Q6. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously learning and staying updated with new technologies

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q7. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, attention to detail, and teamwork. My weaknesses include time management and public speaking.

    • Strengths: problem-solving, attention to detail, teamwork

    • Weaknesses: time management, public speaking

  • Answered by AI
  • Q8. Tell me about yourself.
  • Ans. 

    I am a software developer with experience in various programming languages and a passion for creating innovative solutions.

    • Experienced in Java, C++, and Python

    • Developed a mobile app using React Native

    • Worked on a team to create a web application using Angular

    • Strong problem-solving and analytical skills

  • Answered by AI
  • Q9. Tell me about yourself
  • Ans. 

    I am a software developer with experience in web development and a passion for problem-solving.

    • Experienced in web development using HTML, CSS, and JavaScript

    • Proficient in programming languages such as Java and Python

    • Familiar with frameworks like React and Angular

    • Strong problem-solving and analytical skills

    • Excellent teamwork and communication abilities

  • Answered by AI
  • Q10. What are your strength and weakness
  • Ans. 

    My strength is problem-solving and my weakness is sometimes overthinking.

    • Strength: Problem-solving

    • Weakness: Overthinking

  • Answered by AI
  • Q11. Where do you see yourself in 5 year's
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously learning and improving my skills

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q12. Why are you looking for a change
  • Ans. 

    Seeking new opportunities for professional growth and challenges.

    • Looking for a more challenging role

    • Want to expand my skill set

    • Seeking better career prospects

    • Interested in working with new technologies

    • Want to work in a more collaborative environment

  • Answered by AI
  • Q13. I think I am very flexible and adaptive to learning new things
  • Q14. Share your details for your previous job
  • Ans. 

    I worked as a Software Developer at XYZ Company.

    • Developed and maintained web applications using Java and Spring framework

    • Collaborated with cross-functional teams to gather requirements and design solutions

    • Implemented unit tests and performed code reviews to ensure code quality

    • Participated in Agile development process and attended daily stand-up meetings

    • Troubleshooted and resolved software defects reported by users

  • Answered by AI
  • Q15. What is your family background
  • Ans. 

    My family background is diverse and multicultural, with members from different professions and cultural backgrounds.

    • My father is a doctor and my mother is a teacher.

    • I have two siblings, one is an engineer and the other is a lawyer.

    • We celebrate various cultural festivals and traditions together.

    • My family values education and encourages continuous learning.

  • Answered by AI
  • Q16. What are your salary expectations
  • Ans. 

    I am open to discussing salary based on the responsibilities and opportunities offered by the position.

    • I am flexible and open to negotiation.

    • I am looking for a fair and competitive salary based on my skills and experience.

    • I am more interested in the overall compensation package, including benefits and growth opportunities.

    • I am confident that we can come to a mutually beneficial agreement.

  • Answered by AI
Round 3 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Good morning sir/ mam..
I'm from Vinukonda
I'm ready to the interview

I applied via Walk-in and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Many technical questions
  • Q2. Application tools

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare more tools,practical working technic
Are these interview questions helpful?

I applied via Campus Placement and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are you willing to relocate?
  • Q2. Why should I hire you?
  • Ans. 

    I bring a unique blend of skills, experience, and passion for software development that aligns perfectly with your team's goals.

    • Proven experience in developing scalable applications, such as a recent project where I improved performance by 30%.

    • Strong problem-solving skills demonstrated through my contributions to open-source projects, enhancing functionality and fixing bugs.

    • Excellent teamwork and communication abilitie...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical and Hr interview done at same place. It lasted about 40minutes. The interviewer test both my technical knowledge and communication skills. I tell most of the answer. They check patience level.He stressed on my final year project . Asking about range and specification of compotents which I heve used in my project. Finally ask some HR questions.

Interview Questionnaire 

1 Question

  • Q1. Tell me about software system

I applied via Campus Placement and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java and spring based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare java questions, spring and Data structure.

Accentuate IT Solutions Interview FAQs

How many rounds are there in Accentuate IT Solutions Python Fullstack Developer interview?
Accentuate IT Solutions interview process usually has 3 rounds. The most common rounds in the Accentuate IT Solutions interview process are Technical, Aptitude Test and Coding Test.
What are the top questions asked in Accentuate IT Solutions Python Fullstack Developer interview?

Some of the top questions asked at the Accentuate IT Solutions Python Fullstack Developer interview -

  1. what are the key differences between ArrayList and LinkdList in pyth...read more
  2. how would you delete and remove duplicates from an ar...read more
  3. given a list of numbers, find the first missing positive inte...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.8k Interviews
Amazon Interview Questions
4.0
 • 5.3k Interviews
Capgemini Interview Questions
3.7
 • 5k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.3k Interviews
View all
Application Development Analyst
10 salaries
unlock blur

₹4.3 L/yr - ₹6.5 L/yr

Associate Manager
8 salaries
unlock blur

₹15.5 L/yr - ₹35.6 L/yr

Senior Analyst
8 salaries
unlock blur

₹8.3 L/yr - ₹15.5 L/yr

Associate Software Engineer
8 salaries
unlock blur

₹4.2 L/yr - ₹4.6 L/yr

Analyst
7 salaries
unlock blur

₹1.2 L/yr - ₹10.6 L/yr

Explore more salaries
Compare Accentuate IT Solutions with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview