Upload Button Icon Add office photos

Tally Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Tally Solutions Associate Staff Engineer Interview Questions and Answers

Updated 13 Mar 2024

Tally Solutions Associate Staff Engineer Interview Experiences

1 interview found

Associate Staff Engineer Interview Questions & Answers

user image ARUN KUMAR VERMA

posted on 13 Mar 2024

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

I applied via Job Portal and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Coding Test 

HR called me on Friday in October, and interview scheduled after 2 days on monday, i didn't got enough time to prepare. HR didn't gave time neither gave any clue what to prepare.

In interview, first question was Leetcode Hard question similar to Leetcode #1568.
In question a bomb was dropped on grid at (x,y) coordinate. Write function to calculate time taken to reach nearby islands in all 4 directions. There were some constraints i forgot. I was unable to even think about approach.
Next i was asked about c++ memory allocation and class related question, i gave correct answers.

Interview Preparation Tips

Topics to prepare for Tally Solutions Associate Staff Engineer interview:
  • Data Structures

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java Basic questions and Git

Interview Preparation Tips

Interview preparation tips for other job seekers - After selection they haven't rolled the offer and put the profile on hold and then doesn't pick calls.

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Where do we use BigInteger in java ?
  • Ans. 

    BigInteger is used for mathematical operations involving very large integers in Java.

    • BigInteger is used when the range of values supported by primitive data types like int and long is not sufficient.

    • It is commonly used in cryptography and security applications.

    • It provides methods for arithmetic, bitwise, and logical operations on large integers.

    • Example: calculating factorial of a large number, generating large prime nu

  • Answered by AI
  • Q2. Merge Sort Algo code in java
  • Ans. 

    Merge Sort Algo code in java

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity: O(n log n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Software Engineer interview:
  • Core Java
  • DSA
Interview preparation tips for other job seekers - Not a very good interview experience. I was asked 2-3 questions only. Not satisfied with interview process.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - don't be afraid be positive during the interview, Make eye contact of interview person then they feel u have manage any critical incident occurring work place.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per our institute placement cell norms.
I usually changed my “Areas of Interest” as per the company profile. For Headstrong I mentioned subjects that dealt with coding and data structure.

Round: Test
Experience: First round was a written test containing 90 aptitude based questions and the time allotted for the same was 90 minutes. Questions were of high difficulty level; most of the questions based on probability, permutation and combination. 40 people were shortlisted out of the 180 applicants.
Duration: 90 minutes
Total Questions: 90

Round: Group Discussion
Experience: In Group Discussion there were 11 people in my group. The topic for the discussion was the “impact of family drama daily soaps (saas bahu serials) on the society”. Almost all of us agreed to the fact that these serials were sending wrong message to the society. They were interested in students who were expressive. 3 people got selected from my group.

Round: Technical Interview
Experience: The first round was a technical interview. Questions related to my family and areas of interest were also asked though. Questions related to C++ were asked and the topic of data structure was their main focus. They asked me questions on linked list and other forms of data structure. Finally they asked few general puzzles too. This interview continued for around 20 minutes.

Round: HR Interview
Experience: In the HR interview, questions were asked on why they should choose me and why I had opted for Headstrong. They also asked which location I would prefer for the job. They wanted someone who would be comfortable with any location whether it be south or north India. This last interview was small and lasted around 5-10 minutes.
Tips: Preparation of puzzles foe the interview would be beneficial.

College Name: IIT ROORKEE
Motivation: Most information regarding the company was obtained by attending the pre placement talk. The company did not check much about our knowledge related to the company but were more concerned with our technical knowledge.

I was interviewed in Sep 2017.

Interview Questionnaire 

4 Questions

  • Q1. Technical interview take by client technical person actually they are hiring for another client so they took total 3 technical round and final will HR round
  • Q2. Asking about life cycle of Dot net mvc contols entity frame work and SQL queries
  • Q3. Problem based on oops and SQL queries outputs
  • Q4. Basic questions about my self ,salary discussion basic formalities form I have to fill up

Interview Preparation Tips

Round: Test
Experience: There were around 15 objective question that includes mvc, c#.net and SQL server. It was very simple question like different types of filters,Acton results in mvc. Basic oops concept and dot net web page regarding

Round: Resume Shortlist
Experience: After completing test round another was technical round discussed maily for mvc and SQL server questions. Around 30 mint discussion. After qualify this round another round will start from client technical staff.

General Tips: It was for 2-3 year experience person very simple to crack but focus on you which profile you are looking for study interview questions from net
Skills: Dot net mve oops concept jQuery and SQL server
Round 1 - Technical 

(1 Question)

  • Q1. Const ---- readonly ----- static

Interview Preparation Tips

Interview preparation tips for other job seekers - Be more practically aware of the concepts.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Tha aptitude exam was not very easy and not that difficult. It was something which one can easily get into.

Round 2 - Technical 

(1 Question)

  • Q1. Question related to 1. Servers 2. Coding practices 3. Database queries 4. Latest versions syntax
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2023.

Round 1 - Coding Test 

Duplicate array elements

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is oops and it's pillars of oops
  • Ans. 

    OOPs stands for Object-Oriented Programming. The pillars of OOPs are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • OOPs is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • The four pillars of OOPs are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior fr...

  • Answered by AI
  • Q2. What is inheritance in c# with example
  • Ans. 

    Inheritance in C# allows a class to inherit properties and behavior from another class.

    • Inheritance allows a derived class to reuse code from a base class

    • Derived class can access all public and protected members of the base class

    • Example: class Animal { public void Eat() { } } class Dog : Animal { public void Bark() { } }

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Tally Solutions Interview FAQs

How many rounds are there in Tally Solutions Associate Staff Engineer interview?
Tally Solutions interview process usually has 1 rounds. The most common rounds in the Tally Solutions interview process are Coding Test.
How to prepare for Tally Solutions Associate Staff Engineer 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 Tally Solutions. The most common topics and skills that interviewers at Tally Solutions expect are C++, Data Structures, Architectural Design, C and Coding.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Tally Solutions

No Interviews

CAMPUS PLACEMENT

Calicut University

INTERVIEWS

Cloud Analogy

No Interviews

INTERVIEWS

Micron Technology

No Interviews

INTERVIEWS

Intellect Design Arena

No Interviews

INTERVIEWS

NeoSOFT

No Interviews

INTERVIEWS

Reliance Industries

No Interviews

INTERVIEWS

Xoriant

No Interviews

Tell us how to improve this page.

Tally Solutions Associate Staff Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Genpact Interview Questions
3.8
 • 3.1k Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
NeoSOFT Interview Questions
3.9
 • 261 Interviews
3i Infotech Interview Questions
3.4
 • 141 Interviews
Microland Interview Questions
3.5
 • 126 Interviews
Sify Technologies Interview Questions
3.9
 • 121 Interviews
View all
Tally Solutions Associate Staff Engineer Salary
based on 9 salaries
₹20 L/yr - ₹27 L/yr
13% more than the average Associate Staff Engineer Salary in India
View more details

Tally Solutions Associate Staff Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Business Manager
182 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Product Manager
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accountant
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Tally Solutions with

Zoho

4.3
Compare

QUICK HEAL TECHNOLOGIES

3.7
Compare

Ramco Systems

3.9
Compare

MARG ERP

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent