Upload Button Icon Add office photos

Filter interviews by

Accentuate IT Solutions Interview Questions, Process, and Tips

Updated 25 Jul 2024

Top Accentuate IT Solutions Interview Questions and Answers

View all 19 questions

Accentuate IT Solutions Interview Experiences

Popular Designations

25 interviews found

I applied via Naukri.com and was interviewed in Sep 2022. 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 Resume tips
Round 2 - Technical 

(8 Questions)

  • Q1. What is derivative? How many types of derivatives, difference between type of derivatives and journal entries for recording it.
  • Ans. 

    Derivative is a financial instrument whose value is derived from an underlying asset or security.

    • Types of derivatives include futures, options, swaps, and forwards.

    • Futures are contracts to buy or sell an asset at a predetermined price and date.

    • Options give the buyer the right, but not the obligation, to buy or sell an asset at a predetermined price and date.

    • Swaps involve exchanging cash flows based on different financi...

  • Answered by AI
  • Q2. What is financial instruments? How many types and types of financial assets and how to record them
  • Ans. 

    Financial instruments are assets that can be traded. There are two types: cash and derivative instruments.

    • Cash instruments include stocks, bonds, and currencies.

    • Derivative instruments include options, futures, and swaps.

    • Financial assets are recorded on the balance sheet at their fair value.

    • Changes in fair value are recorded in the income statement.

    • Hedge accounting can be used to reduce volatility in financial statement

  • Answered by AI
  • Q3. What is impairment of assets and journal entries
  • Ans. 

    Impairment of assets is the reduction in the value of a company's assets due to various reasons.

    • Impairment occurs when the carrying value of an asset exceeds its recoverable amount.

    • Journal entry for impairment involves debiting the impairment loss account and crediting the respective asset account.

    • Impairment can occur due to physical damage, obsolescence, changes in market conditions, etc.

    • Impairment testing is required...

  • Answered by AI
  • Q4. Case study related to Ind as 115?
  • Q5. What is goodwill, how to calculate, what is negative goodwill, how to recognise in case of business combination?
  • Ans. 

    Goodwill is an intangible asset that represents the value of a company's reputation, brand, and customer base.

    • Goodwill is calculated as the difference between the purchase price of a company and the fair market value of its net assets.

    • Negative goodwill occurs when the purchase price of a company is less than the fair market value of its net assets.

    • Negative goodwill is recognized as a gain in the income statement of the...

  • Answered by AI
  • Q6. What is contingent consideration in case of business combination? Lot of questions asked from Ind as 103?
  • Q7. What is joint venture and associates?
  • Ans. 

    Joint venture and associates are two types of business arrangements where companies collaborate and share resources.

    • Joint venture is a partnership between two or more companies to undertake a specific project or business activity.

    • Associates are companies in which another company holds a significant but not controlling interest.

    • Joint ventures involve sharing of profits, losses, and control between the participating comp...

  • Answered by AI
  • Q8. Difference between deferred revenue, accrual, prepaid, provision.
  • Ans. 

    Deferred revenue is unearned income, accrual is earned but not yet received, prepaid is paid but not yet used, provision is an estimated expense.

    • Deferred revenue is money received for goods or services not yet delivered

    • Accrual is revenue earned but not yet received

    • Prepaid is payment made for goods or services not yet received

    • Provision is an estimated expense that has not yet been incurred

    • Examples: Deferred revenue - ma...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. This round is more about discussion round.
  • Q2. Ind as 116 , what was earlier and what is now, journal entries and treatment They created more confusion on ROU assets and lease liability?
  • Q3. Why this role? Why do you fit for this role

Interview Preparation Tips

Interview preparation tips for other job seekers - Read Ind as 115, 116 ,109 these three are mandatory but my interviewer panel from merger acquisition team so they asked me more about Ind as 103.

Top Accentuate IT Solutions Financial Controller Interview Questions and Answers

Q1. What is goodwill, how to calculate, what is negative goodwill, how to recognise in case of business combination?
View answer (1)

Financial Controller Interview Questions asked at other Companies

Q1. What is goodwill, how to calculate, what is negative goodwill, how to recognise in case of business combination?
View answer (1)
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

Python Fullstack Developer Interview Questions asked at other Companies

Q1. what are the key differences between ArrayList and LinkdList in python?
View answer (1)
Accentuate IT Solutions Interview Questions and Answers for Freshers
illustration image

Interview Questions & Answers

user image Anonymous

posted on 24 Mar 2024

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Feb 2024. There were 9 interview rounds.

Round 1 - Aptitude Test 

Rating , probability

Round 2 - Assignment 

Full stack developer using the question

Round 3 - Coding Test 

Java programming ,coding, array,string

Round 4 - Technical 

(2 Questions)

  • Q1. Support with techical
  • Q2. What is java?
Round 5 - HR 

(4 Questions)

  • Q1. All courses using with ask questions
  • Q2. What is array ? Array program in 2 dimensional
  • Q3. Sir, support with string concept
  • Q4. Methods, arrays,html, css
Round 6 - One-on-one 

(1 Question)

  • Q1. All mixed questions
Round 7 - I don't know 

(3 Questions)

  • Q1. Asked with course complete questions
  • Q2. Course completed
  • Q3. What is html? Html links?
Round 8 - Case Study 

Study using questions

Round 9 - One-on-one 

(1 Question)

  • Q1. Whatis css?css sectors?

Interview Preparation Tips

Topics to prepare for Accentuate IT Solutions interview:
  • Java,
  • HTML
  • CSS
  • Programming
Interview preparation tips for other job seekers - Yes, iam correct

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 21 Feb 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Which OIC integrations patterns have u worked?
  • Q2. What challenges you have faced during the OIc developments?
  • Ans. 1. Time out error while calling BI report. 2. Retry logic
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to gather detailed things what ever you know or did.

Accentuate IT Solutions interview questions for popular designations

 Associate Engineer

 (2)

 Analyst

 (1)

 Software Engineer

 (1)

 SAP Consultant

 (1)

 Computer Operator

 (1)

 Application Development Analyst

 (1)

 Financial Controller

 (1)

 Process Associate

 (1)

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What's are the needs of IT
  • Ans. 

    The needs of IT include reliable hardware and software, cybersecurity measures, skilled professionals, and efficient communication systems.

    • Reliable hardware and software to ensure smooth operations

    • Cybersecurity measures to protect sensitive data and prevent cyber attacks

    • Skilled professionals to develop, maintain, and troubleshoot IT systems

    • Efficient communication systems for seamless collaboration and information shari

  • Answered by AI
  • Q2. Which field have been

Interview Preparation Tips

Interview preparation tips for other job seekers - No e

Process Associate Interview Questions asked at other Companies

Q1. How will you explain a red colour (or any colour) to a person who is blind since his or her birth?
View answer (21)

Ptp Analyst Interview Questions & Answers

user image Anonymous

posted on 4 Jun 2024

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

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Just learn English to speak much fluently. And be confident that will help

Ptp Analyst Interview Questions asked at other Companies

Q1. Stages in PTP Cycle 1. Pre-purchase Vendor identification Vendor evaluation Vendor selection Vendor set-up 2. Purchase Purchase requisition Purchase order 3. Post-Purchase Receiving Invoice handling Invoice processing Payment processing
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Excel interview
  • Q2. Excel interview questions
  • Q3. Sap interview questions

Assistant Manager Process Excellence Interview Questions asked at other Companies

Q1. What are the SPC tools we use in six sigma?
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself

Interview Questions & Answers

user image Anonymous

posted on 1 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Depreciation of assets

Interview Preparation Tips

Interview preparation tips for other job seekers - Good job
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

An exam used to determine to individual skils

Round 2 - Coding Test 

Walk through your solution by hand with in example input

Interview Preparation Tips

Topics to prepare for Accentuate IT Solutions Associate Executive interview:
  • Basics of C,C++,Html,Css
Interview preparation tips for other job seekers - The act of looking for employment, U employment, desire for better position

Associate Executive Interview Questions asked at other Companies

Q1. How can you sell me a phone when I'm already using a better phone from your phone that you sell me?
View answer (2)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its good and i written well

Round 2 - Technical 

(1 Question)

  • Q1. What is domain Wvat is dhcp
  • Ans. 

    A domain is a group of network devices that share a common set of rules and procedures for communication. DHCP is a network protocol that assigns IP addresses to devices automatically.

    • A domain is a logical grouping of network devices that share a common namespace and administrative settings.

    • Domains are used to manage and organize network resources, such as computers, servers, and printers.

    • DHCP (Dynamic Host Configurati...

  • Answered by AI

Skills evaluated in this interview

L2 Network Engineer Interview Questions asked at other Companies

Q1. What is best link of OMP route Internet or MPLS?
View answer (2)
Contribute & help others!
anonymous
You can choose to be anonymous

Accentuate IT Solutions Interview FAQs

How many rounds are there in Accentuate IT Solutions interview?
Accentuate IT Solutions interview process usually has 2-3 rounds. The most common rounds in the Accentuate IT Solutions interview process are Technical, Aptitude Test and Resume Shortlist.
What are the top questions asked in Accentuate IT Solutions interview?

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

  1. What is goodwill, how to calculate, what is negative goodwill, how to recognise...read more
  2. What is derivative? How many types of derivatives, difference between type of d...read more
  3. what are the key differences between ArrayList and LinkdList in pyth...read more
How long is the Accentuate IT Solutions interview process?

The duration of Accentuate IT Solutions interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

SALARIES

Capital Small Finance Bank

REVIEWS

Capital Small Finance Bank

No Reviews

SALARIES

Capital Small Finance Bank

INTERVIEWS

Accentuate IT Solutions

No Interviews

INTERVIEWS

Accentuate IT Solutions

No Interviews

INTERVIEWS

Accentuate IT Solutions

No Interviews

INTERVIEWS

Accentuate IT Solutions

No Interviews

INTERVIEWS

Accentuate IT Solutions

No Interviews

SALARIES

Accentuate IT Solutions

Tell us how to improve this page.

Accentuate IT Solutions Interview Process

based on 27 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
View all

Accentuate IT Solutions Reviews and Ratings

based on 50 reviews

4.1/5

Rating in categories

4.1

Skill development

4.0

Work-life balance

3.9

Salary

3.9

Job security

4.2

Company culture

3.6

Promotions

4.1

Work satisfaction

Explore 50 Reviews and Ratings
Team Lead
12 salaries
unlock blur Lock Unlock

₹8.6 L/yr - ₹25 L/yr

Application Development Analyst
11 salaries
unlock blur Lock Unlock

₹4.3 L/yr - ₹9.8 L/yr

Associate Software Engineer
9 salaries
unlock blur Lock Unlock

₹4.3 L/yr - ₹4.6 L/yr

Application Development - Senior Analyst
8 salaries
unlock blur Lock Unlock

₹9.2 L/yr - ₹16.5 L/yr

Associate Manager
7 salaries
unlock blur Lock Unlock

₹15.5 L/yr - ₹33.5 L/yr

Explore more salaries
Compare Accentuate IT Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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