Upload Button Icon Add office photos

Tally Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Tally Solutions Software Developer Intern Interview Questions and Answers

Updated 2 Oct 2024

Tally Solutions Software Developer Intern Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

It was good experience

Round 2 - One-on-one 

(2 Questions)

  • Q1. Good question asked ny imterviwer
  • Q2. Good question asked bye interviewer

Interview questions from similar companies

I was interviewed before Oct 2020.

Round 1 - Video Call 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Hard

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. Brute Force
    • Run a loop from i = 0 to N - 1, to check each row.
      • Run a loop from j = 0 to N - 1, to check each element of the row.
        • If there is a match, return {i, j}.
    • If the element is not found in the entire matrix, return {-1, -1}
    Space Complexity: O(1)Explanation:

    O(1).

     

    Since only constant extra space is required.

    Time Complexity: O(n^2)Explanation:

    O(N ^ 2), where ‘N’ is the number of rows or columns in the matrix.

    &nb...

  • Answered Anonymously
  • Q2. 

    String Palindrome Verification

    Given a string, your task is to determine if it is a palindrome considering only alphanumeric characters.

    Input:

    The input is a single string without any leading or trailing...
  • Ans. Space Complexity: Explanation: Time Complexity: Explanation:
  • Answered Anonymously
  • Q3. 

    Covid Vaccination Distribution Problem

    As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is...

  • Ans. Brute force

    The idea is to choose a peak value at the ‘dayNumber’ th index. Then we can create the array like a mountain with the peak of the mountain being at the  ‘dayNumber’ th index. The sum of the elements of this array must be less than or equal to maxVaccines.If we find that the sum is greater, then we have chosen a high peak value, and if it is less, then it means we have chosen a smaller peak value. So we ...

  • Answered Anonymously
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteriaNANewgen Software Technology interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hackathon on chatbot development website

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basics like shallow copy deep copy
  • Q2. Sorting techniques and psuedo code
Round 3 - HR 

(2 Questions)

  • Q1. Questions on projects
  • Q2. Introduction and insights of comapny
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quants,verbels based on maths and grammer

Round 2 - Coding Test 

Problem solving - python programming,Java programming

Round 3 - HR 

(1 Question)

  • Q1. Oops logics and types Methods of overloading and overridding Class and object
  • Ans. 

    Overloading and overriding are ways to achieve polymorphism in object-oriented programming. Classes are blueprints for objects.

    • Overloading involves defining multiple methods with the same name but different parameters.

    • Overriding involves redefining a method in a subclass that is already defined in the superclass.

    • Classes are templates for creating objects, while objects are instances of classes.

    • Example: Overloading - ha...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Based place to experience something new skills and environment
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - HR 

(1 Question)

  • Q1. Sdlc explanation
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.

    • SDLC is a framework that defines tasks performed at each phase of software development.

    • Common phases include planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has specific goals and deliverables to ensure the software meets requirements and qualit...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2023. 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 - Aptitude Test 

There were 98 MCQ type questions related to various topics like Linux, Java, Aptitude, English, etc.

Round 3 - Technical 

(1 Question)

  • Q1. Interviewer was friendly, questions were from topics like string reversal, Linux commands, sorting, etc.
Round 4 - HR 

(1 Question)

  • Q1. Family background etc. Was asked and whether I can relocate or not all easy personal questions and also there were questions from pre placement talk that was conducted before the start of the recruiting pr...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well based on above experience shared by me
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Implement LinkedList and insert element at last
  • Ans. 

    Implement LinkedList and insert element at last

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head and tail pointers

    • Implement a method in LinkedList class to insert element at the end

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected
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 - Aptitude Test 

BASIC TO MODERATE questions on there. & sectional time was given.

Round 3 - Group Discussion 

There was a communication round. Some basic English Grammer and 5 small topic was given. you have to say on those 5 topics within 2mins each. This was Easy level.

Round 4 - Technical 

(1 Question)

  • Q1. Some qst based on the programming language you are comfortable in. Then basic DBMS qst are there. And based on your final year project.
Round 5 - HR 

(1 Question)

  • Q1. Basic HR qst like introduce yourself, your skills, strenth & weakness, and willing to relocate or not.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Core java , spring boot , mysql , lunix

Interview Preparation Tips

Interview preparation tips for other job seekers - its good
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

It was basic aptitue

Round 3 - Technical 

(2 Questions)

  • Q1. Ask basic oops questions
  • Q2. Abstraction , encapsulation etc

Interview Preparation Tips

Interview preparation tips for other job seekers - NA NA NA

Tally Solutions Interview FAQs

How many rounds are there in Tally Solutions Software Developer Intern interview?
Tally Solutions interview process usually has 2 rounds. The most common rounds in the Tally Solutions interview process are Coding Test and One-on-one Round.
What are the top questions asked in Tally Solutions Software Developer Intern interview?

Some of the top questions asked at the Tally Solutions Software Developer Intern interview -

  1. Good question asked ny imtervi...read more
  2. Good question asked bye intervie...read more

Tell us how to improve this page.

Tally Solutions Software Developer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
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 Software Developer Intern Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Business Manager
179 salaries
unlock blur

₹7.3 L/yr - ₹17.8 L/yr

Software Engineer
58 salaries
unlock blur

₹5 L/yr - ₹15 L/yr

Senior Software Engineer
41 salaries
unlock blur

₹9.3 L/yr - ₹26 L/yr

Associate Product Manager
39 salaries
unlock blur

₹8.2 L/yr - ₹18 L/yr

Accountant
34 salaries
unlock blur

₹1 L/yr - ₹4 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