Upload Button Icon Add office photos

Filter interviews by

EffiaSoft Interview Questions and Answers

Updated 1 Aug 2024

EffiaSoft Interview Experiences

Popular Designations

4 interviews found

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

I applied via Recruitment Consulltant 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 Resume tips
Round 2 - Coding Test 

Leetcode question sum of 3

Round 3 - Technical 

(2 Questions)

  • Q1. Theoretical questions based on SQL, WPF
  • Q2. They will ask about your leet code. Answer

Interview Preparation Tips

Topics to prepare for EffiaSoft Software Engineer interview:
  • Leetcode
Interview preparation tips for other job seekers - Go thorough JD and prepare well!

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

30 mins of aptitude test conducted

Round 2 - Coding Test 

They asked some coding level questions

Interview Preparation Tips

Interview preparation tips for other job seekers - dont attaend any interview from this company , its a time waste process.

Senior IOS Developer Interview Questions asked at other Companies

Q1. What are the differences between the MVC and MVVM architectural patterns, and in what scenarios should each be used?
View answer (1)
EffiaSoft Interview Questions and Answers for Freshers
illustration image
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

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of Architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Focused more on Basics and Problem solving skills.

Solution Architect Interview Questions asked at other Companies

Q1. Difference Between classic folder and Modern folder?
View answer (10)

EffiaSoft interview questions for popular designations

 Software Engineer

 (1)

 Senior IOS Developer

 (1)

 Solution Architect

 (1)

 Associate Software Engineer

 (1)

Jobs at EffiaSoft

View all

Interview questions from similar companies

I applied via Company Website and was interviewed before May 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 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all GD tips

Interview Preparation Tips

Interview preparation tips for other job seekers - Market yourself.
Apply even if you're not fully qualified.
Job search like it's your job.
Use informational interviews to network.
Set yourself apart with letters of recommendation.
Know yourself and what you want.
Pump yourself up and stay positive.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Java basics questions
Round 3 - Technical 

(1 Question)

  • Q1. Struts 1x questions and PL SQL
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Aug 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

Online or offline classes which is better

Round 2 - Technical 

(1 Question)

  • Q1. Sql and excel and the company is good
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Design Least recently used cache.
  • Ans. 

    Design a Least Recently Used cache system.

    • Implement a doubly linked list to keep track of the order of usage of cache items.

    • Use a hashmap to store key-value pairs for quick access to cache items.

    • When a new item is accessed, move it to the front of the linked list. If the cache is full, remove the least recently used item from the end of the list.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capillary Technologies Senior Software Engineer interview:
  • LLD
Interview preparation tips for other job seekers - Interviewer was not experience. I had to ask him what exactly he was looking for.

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

A general topic was provided.

Round 2 - Aptitude Test 

Basic aptitude questions.

Round 3 - HR 

(1 Question)

  • Q1. Sql and dbms questions
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 Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are optimisation techniques in stored procedure
  • Ans. 

    Optimisation techniques in stored procedures improve performance by reducing execution time and resource usage.

    • Use proper indexing on tables involved in the stored procedure

    • Minimize the use of cursors and loops

    • Avoid using SELECT * and fetch only necessary columns

    • Avoid using temporary tables if possible

    • Use SET NOCOUNT ON to stop the message indicating the number of rows affected by a T-SQL statement

  • Answered by AI
  • Q2. Analyse the condition in query and optimise it.
  • Ans. 

    The candidate is asked to analyse and optimize a given condition.

    • Identify the key components of the condition and their interactions

    • Consider potential areas for improvement or inefficiencies

    • Propose specific changes or strategies to optimize the condition

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Integer Array rotation for K time
  • Ans. 

    Rotate an integer array K times

    • Create a temporary array to store elements that will be rotated

    • Use modulo operator to handle cases where K is larger than array length

    • Update the original array with elements from the temporary array

  • Answered by AI
  • Q2. Find the missing number in series of array of distinct numbers?
  • Ans. 

    The missing number in a series of distinct numbers can be found by identifying the pattern and determining the missing element.

    • Identify the pattern in the series of numbers.

    • Determine the logic or rule governing the sequence.

    • Apply the logic to find the missing number.

    • Example: Series - 2, 4, 6, 10, 12, 14, Missing number is 8.

  • Answered by AI

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 interview?
EffiaSoft interview process usually has 1-2 rounds. The most common rounds in the EffiaSoft interview process are Coding Test, Technical and Aptitude Test.
How to prepare for EffiaSoft 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 EffiaSoft. The most common topics and skills that interviewers at EffiaSoft expect are C#, Javascript, SQL Server, Web Api and ASP.Net.
What are the top questions asked in EffiaSoft interview?

Some of the top questions asked at the EffiaSoft interview -

  1. They will ask about your leet code. Ans...read more
  2. Theoretical questions based on SQL, ...read more
  3. Basics of Architect...read more

Recently Viewed

INTERVIEWS

Auriga IT Consulting Private Limited

No Interviews

LIST OF COMPANIES

Torero Corporation

Locations

SALARIES

Torero Corporation

INTERVIEWS

Patterns India

No Interviews

INTERVIEWS

Pepe Jeans

No Interviews

INTERVIEWS

EffiaSoft

No Interviews

INTERVIEWS

Embibe

No Interviews

SALARIES

Torero Corporation

INTERVIEWS

CloudThat Technologies Private Limited

No Interviews

Tell us how to improve this page.

EffiaSoft Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 156 Interviews
Ramco Systems Interview Questions
3.9
 • 64 Interviews
Tally Solutions Interview Questions
4.2
 • 39 Interviews
greytHR Interview Questions
3.9
 • 22 Interviews
Algonomy Interview Questions
4.0
 • 9 Interviews
View all

EffiaSoft Reviews and Ratings

based on 41 reviews

3.9/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

3.5

Salary

3.6

Job security

3.8

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 41 Reviews and Ratings
React Developer

Hyderabad / Secunderabad

3-8 Yrs

Not Disclosed

Python Developer

Hyderabad / Secunderabad

3-8 Yrs

Not Disclosed

Finance & Accounts Manager

Hyderabad / Secunderabad

4-6 Yrs

Not Disclosed

Explore more jobs
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