Upload Button Icon Add office photos

Filter interviews by

Accentuate IT Solutions Python Fullstack Developer Interview Questions, Process, and Tips

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

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Def factorial_iterative(n):
result = 1
for i in range(1, n + 1):
result *= i
return result

Interview Preparation Tips

Interview preparation tips for other job seekers - Working on personal projects can showcase your skills and initiative, especially if you’re pivoting to a new field.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2023. 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 

Train and time and work

Round 3 - Technical 

(3 Questions)

  • Q1. Python fullstack
  • Q2. Introduction,projects,skills,strenths,habies,goles
  • Q3. Python fullstack with django

Interview Preparation Tips

Topics to prepare for Infosys Python Fullstack Developer interview:
  • about myself
  • my skills
  • strenths
  • projectwork
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. Tell me your self How to you passHR equations
  • Q2. What would you add to the team question
  • Q3. What is your self Describe who are?or Tellme about your background
  • Q4. What is your greater fear?

Interview Preparation Tips

Interview preparation tips for other job seekers - Python html css javascript

I applied via Walk-in and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Why should be fit for job 

(1 Question)

  • Q1. How much an candidate can capable, he can work at any condition in stress
Round 2 - Coding Test 

Basic need will be need for fresher

Round 3 - HR 

(1 Question)

  • Q1. What your goal,why u choose this

Interview Preparation Tips

Interview preparation tips for other job seekers - Check the person knowledge more than coding, degree, personality
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Demonstrate Function Overriding.
  • Q2. Linq query with order by
  • Q3. What is Out Parameter with example
  • Q4. Authentication and autherization, JWT Tocken
  • Q5. Reflection in C#

Interview Preparation Tips

Topics to prepare for Accenture Dot Net Fullstack Developer interview:
  • OOPS
  • SQL
  • Javascript
Interview preparation tips for other job seekers - Basics of OOPS SQL JS will do.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
-

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Find the second largest element from array
  • Ans. 

    Find the second largest element from array of strings

    • Sort the array in descending order

    • Access the element at index 1 to get the second largest element

  • Answered by AI
  • Q2. Java basics and advanced programming
  • Q3. Failsafe vs fail fast integrators
  • Ans. 

    Failsafe integrators prioritize system stability by handling errors gracefully, while fail fast integrators prioritize quick detection and resolution of errors.

    • Failsafe integrators focus on ensuring the system continues to function even in the presence of errors.

    • Fail fast integrators aim to quickly identify and address errors to prevent further issues.

    • Failsafe integrators often use techniques like retries, circuit brea...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Saga design patterns
  • Q2. Micro services architecture

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between jvm jre jdk?
  • Ans. 

    JVM is the virtual machine that runs Java bytecode, JRE is the runtime environment for Java programs, and JDK is the development kit for creating Java applications.

    • JVM (Java Virtual Machine) is responsible for running Java bytecode on different platforms.

    • JRE (Java Runtime Environment) includes JVM, libraries, and other components necessary to run Java applications.

    • JDK (Java Development Kit) is a software development ki...

  • Answered by AI
  • Q2. Why string is immutable?
  • Ans. 

    String is immutable in Java to ensure security, thread safety, and optimization.

    • Immutable strings prevent accidental changes to sensitive data like passwords.

    • Immutable strings allow for safe sharing of string literals across multiple threads.

    • Immutable strings enable string pooling for memory optimization.

    • Example: String str = "Hello"; str.concat(" World"); // str remains "Hello"

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Java overloading overriding differences
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters, while overriding is implementing a method in a subclass with the same signature as in the superclass.

    • Overloading allows different methods to have the same name but different parameters.

    • Overriding involves implementing a method in a subclass with the same signature as in the superclass.

    • Overloading is determined at compile time based on t...

  • Answered by AI
  • Q2. Angular decorators
  • Q3. Angular services

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic js question on hoisting, closure, promises
Round 2 - Behavioral 

(1 Question)

  • Q1. Basic resume based
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion -- HR never responded

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 Aptitude Test, Coding Test and Technical.
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.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
Application Development Analyst
13 salaries
unlock blur

₹4.3 L/yr - ₹9.5 L/yr

Team Lead
13 salaries
unlock blur

₹7.9 L/yr - ₹24 L/yr

Associate Software Engineer
9 salaries
unlock blur

₹4.3 L/yr - ₹4.6 L/yr

Application Development - Senior Analyst
8 salaries
unlock blur

₹9.2 L/yr - ₹16.5 L/yr

Senior Analyst
8 salaries
unlock blur

₹8.6 L/yr - ₹13 L/yr

Explore more salaries
Compare Accentuate IT Solutions with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview