Upload Button Icon Add office photos

Filter interviews by

Clear (1)

EffiaSoft Associate Software Engineer Interview Questions and Answers

Updated 1 Aug 2024

EffiaSoft Associate Software Engineer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Basic Maths related questions which are moderate

Interview Preparation Tips

Interview preparation tips for other job seekers - Graph Related problem,DSA,OOPS

Interview questions from similar companies

I was interviewed in Feb 2017.

Interview Preparation Tips

Round: Test
Experience: Very first, the interviewers and their employees gave presentation about their products and company. They were very cool and very positive to motivate candidates. After that they started Round 1 that is test based on aptitude and logical problem, also containing c programmin and operating system problems.
Tips: If you have studied basics very well, you will clear the round 1 very easily. Study C programming and Linux Operating System concepts.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: I am not specifying any question above because 2nd round i.e Technical Round 1 was continued to abt 1 and hour hours taken by 1 interviewer. If you give all answers confindently, obviously they all must be correct, you will be qualified to next techincal round.
Tips: Same as mentioned in round 1.
Study C programming & Operating System.

Round: Technical Interview
Experience: This was Technical Round 2. It was taken by 3 interviewers asking questions randomly from random subject. Also, one took rapid fire round for 20-25 questions. If you qualified this round, then you can assume that you are selected. This round was also continued more than 1 hour.
Tips: Study Networking concepts

Round: HR Interview
Experience: If you are called for HR interview, then you can assume that you already selected as employee for company. This is round is just for formality to tell you CTC and location and joining, etc.
One thing I would like to mention that in each round they will ask you to tell about yourself. So prepare that too. In HR round, they asked me some tricky puzzles to solve since I mentioned that I am very good in maths so.

College Name: Datta Meghe College of Engineering
Round 1 - Aptitude Test 

20 questions of aptitude

Round 2 - Coding Test 

Hard

Round 3 - Coding Test 

Very hard

Round 4 - HR 

(6 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What is your family background?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Easy to crack. Coading should be practiced
Interview experience
4
Good
Difficulty level
Hard
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

There are 2 sections one is Output guess and Another one is Quantitative

Round 2 - Coding Test 

I didn't attend 2nd round..i was eliminated in 1st round

Interview Preparation Tips

Interview preparation tips for other job seekers - Study hard

Interview Preparation Tips

Round: Test
Experience: 1. Aptitute Questions

2. Given 2 node and insert a node between those 2 in link list

3. Pointer based questions

4. Reverse a string

5. Reverse a singly linked list

6. create a link list in sorted order

7. range of (int,unsigned int,byte) related question

8. write definition of strcpy()

9. DBMS questions ( Based on group by having clause both)

Round: Test
Experience: 1. Its for checking your accuracy

4 6 10

who is near to 6... you have answer all the question quickly

2.odd one out

3. ram is older then shyam

4 who is older??

5 sections were there

College Name: NA

I applied via Referral

Interview Preparation Tips

Round: Test
Experience: Questions are asked on basic Programming(sorting ,trees) , networking and some aptitude
Tips: Spending some time on networking for preparation can help to clear the test ( as they are mostly like knowledge checking Questions)
Duration: 45 minutes
Total Questions: 30

Round: Test
Experience: Only 2 Questions time will be sufficient .i was asked to write the pseudo code
1) on Dynamic programming
2) Graphs
Tips: explain your code by writing in your own language at the end of your pseudo code
Duration: 60 minutes
Total Questions: 2

Skills:
College Name: IIT Kanpur

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There were 2 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 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basic apptiude questions... And basic manual testing question

Interview Questionnaire 

1 Question

  • Q1. 1st round c mcq 2nd round short coding 3rd round advanced coding 4 and 5 technical hr and general hr

Interview Questionnaire 

1 Question

  • Q1. Simple basic c programing questions

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Level Order Traversal Problem Statement

    Given a binary tree of integers, return the level order traversal of the binary tree.

    Input:

    The first line contains an integer 'T', representing the number of te...
  • Ans. 

    Return the level order traversal of a binary tree given in level order with null nodes represented by -1.

    • Create a queue to store nodes for level order traversal

    • Start with the root node and add it to the queue

    • While the queue is not empty, dequeue a node, print its value, and enqueue its children

    • Repeat until all nodes are traversed in level order

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. What is a deadlock in DBMS, and can you explain the concepts of join and query?
  • Ans. 

    A deadlock in DBMS occurs when two or more transactions are waiting for each other to release locks, causing them to be stuck indefinitely.

    • Deadlock is a situation where two or more transactions are unable to proceed because each is waiting for the other to release locks.

    • To prevent deadlocks, DBMS uses techniques like deadlock detection and prevention algorithms.

    • Joins in DBMS are used to combine rows from two or more ta...

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Design a system for Twitter, outlining the key components and architecture involved.
  • Ans. 

    Design a system for Twitter

    • Key components: user profiles, tweets, hashtags, timelines

    • Architecture: microservices, load balancers, databases, caching

    • Scalability: sharding, replication, CDN

    • Real-time processing: streaming APIs, push notifications

  • Answered by AI
Round 4 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Maximum Subarray Sum Queries

    You are provided with an array of ‘N’ integers and ‘Q’ queries. Each query requires calculating the maximum subarray sum in a specified range of the array.

    Input:

    The first ...
  • Ans. 

    Implement a function to calculate maximum subarray sum queries in a given range of an array.

    • Iterate through each query and calculate the maximum subarray sum within the specified range using Kadane's algorithm.

    • Keep track of the maximum sum found so far and update it as needed.

    • Return the maximum subarray sum for each query in the test case.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use a single scan over the array to sort it in-place.

    • Maintain three pointers for 0s, 1s, and 2s and swap elements accordingly.

    • Example: Input: [0, 2, 1, 2, 0], Output: [0, 0, 1, 2, 2]

  • Answered by AI
Round 5 - Coding Test 

Round duration - 20 Minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in ChennaiEligibility criteria7 CGPAFreshworks interview preparation:Topics to prepare for the interview - Algorithms, Data Structures, Dynamic Programming, OOPS, System DesignTime required to prepare for the interview - 2.5 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare DS and Algo
Tip 2 : Prepare Dynamic programming 

Application resume tips for other job seekers

Tip 1 : Good in DS and algo that will be help in the interview that is very neccassry
Tip 2 : Prepare DBMS

Final outcome of the interviewSelected

Skills evaluated in this interview

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

EffiaSoft Interview FAQs

How many rounds are there in EffiaSoft Associate Software Engineer interview?
EffiaSoft interview process usually has 1 rounds. The most common rounds in the EffiaSoft interview process are Aptitude Test.

Recently Viewed

SALARIES

L1 Supply Networks

INTERVIEWS

GrapplTech

No Interviews

INTERVIEWS

Auriga IT Consulting Private Limited

No Interviews

INTERVIEWS

CloudThat Technologies Private Limited

No Interviews

INTERVIEWS

Torero Corporation

No Interviews

INTERVIEWS

EffiaSoft

No Interviews

INTERVIEWS

InfoTechBrains CloudTech Private Limited

No Interviews

INTERVIEWS

Auriga IT Consulting Private Limited

No Interviews

LIST OF COMPANIES

Torero Corporation

Locations

SALARIES

Torero Corporation

Tell us how to improve this page.

EffiaSoft Associate Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
Ramco Systems Interview Questions
3.9
 • 64 Interviews
Tally Solutions Interview Questions
4.2
 • 39 Interviews
greytHR Interview Questions
3.8
 • 22 Interviews
Algonomy Interview Questions
4.0
 • 9 Interviews
View all
Software Developer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Developer
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Analyst
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare EffiaSoft with

Zoho

4.3
Compare

Tally Solutions

4.2
Compare

QUICK HEAL TECHNOLOGIES

3.7
Compare

Freshworks

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