Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by IDBI Intech Limited Team. If you also belong to the team, you can get access from here

IDBI Intech Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IDBI Intech Limited Interview Questions and Answers for Freshers

Updated 10 Jun 2025
Popular Designations

IDBI Intech Limited Interview Experiences for Freshers

4 interviews found

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

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

Round 1 - HR 

(1 Question)

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was an off-campus placement drive at Bharati Vidyapeeth Belapur.
1st round was MCQ based 
2nd round was interview with HR. Kunal Yadav
If you have a degree in your hand, then you are eligible for a Management trainee position; otherwise, you will have to work as an intern.
A fixed salary and a bond period of 2 years.

Questions asked in the MCQ - Anti Money Laundering department:

1. Which of the following is smallest integer data type?
-Long
-Int
-Short
-Byte

2. What will be the output of the program?
class Bitwise
{
     public static void main (String [ ] args)
     {
           int x = 11 & 9;
           int y = x ^ 3;
           System.out.println( y | 12 );
     } }

12
7
8
14

3. Integer Data type does not include following primitive data type ___ .
-Double -Short -Byte -Enum

4. class Equals
{
    public static void main(String [ ] args)
    {
        int x = 100;
        double y = 100.1;
        Boolean b = (x = y); /* Line 7 */
        System.out.println(b);
    } }

-True
-False
-Compilation fails
-An exception is thrown at runtime

5. GROUP BY typically involves aggregates fn. as:
-COUNT ()
-MAX ()
-SUM ()
-All of the above

6. public void foo( boolean a, Boolean b)
{
     if ( a )
     {
          System.out.println("A"); /* Line 5 */
     }
     elseif(a && b) /* Line 7 */
     {
          System.out.println("A && B");
      }
      else /* Line 11 */
      {
            if ( !b )
            {
                System.out.println( "not B") ;
             }
             else
             {
                  System.out.println( "ELSE");
             }
        }
 }

-If a is true and b is true then the output is "A && B"
-If a is true and b is false then the output is "notB"
-If a is false and b is true then the output is "ELSE"
-If a is false and b is false then the output is "ELSE"

7. class PassS
{
     public static void main (String [ ] args)
     {
         PassS p = new PassS( );
         p.start ( );
     }
     void start ( )
     {
          String s1 = "slip".
          String s2 = fix(S1);
          System.out.println(s1 + " " + s2);
     }
     String fix(String s1)
     {
          s1= s1 + "stream";
          System.out.println(s1 + " ");
          return "stream";
      }
}

-slip stream
-slipstream stream
-stream slip stream
-slipstream slip stream

8. switch (x)
{
    default:
        System.out.println("Hello");
}

Which two are acceptable types of x?
byte
long
char
float
short
long

-1 and 3
-2 and 4
-3 and 5
-4 and 6

9. What will be the output of the program?

class Test
{
    public static void main(String [ ] args)
    {
        int x = 0;
        int y = 0;
        for (int z = 0; z < 5; z++)
        {
            if (( ++x > 2 ) || (++y > 2))
            {
                  x++;
             }
       }
      System.out.println(x + " " + y);
       }  }

11
82
83
85

10. Which three statements inserts a row into the table ? (Choose three)
A. INSERT INTO employees
VALUES ( NULL, 'John' ,'Smith');
B. INSERT INTO employees ( first_name,last_name)
VALUES ('John' ,'Smith');
C. INSERT INTO employees
VALUES ('1000' ,'John', NULL);
D. INSERT INTO employees (first_name,last_name, employee_id)
VALUES (1000,'John', 'Smith');
E. INSERT INTO employees (employee_id)
VALUES (1000);
F. INSERT INTO employees (employees_id,first_name,last_name)
VALUES ( 1000, 'John' , ");

-A,C,D,F
-B,C,F
-C,E,F
-All of the above

11. class Test
{
    public static void main (String [ ] args)
    {
        int x = 20;
        String sup = (x < 15) ? "small" : (x < 22)? "tiny" : "huge";
        System.out.println(sup);
     }
}

-Small
-Tiny
-Huge
-Compilation fails

12. What will be the output of the program?
class Test
{
    public static void main(String [ ] args)
    {
        int x = 0;
        int y = 0;
        for (int x = 0; z < 5; z++)
        {
            if (( ++x > 2 ) && (++y > 2))
            {
                  x++;
             }
       }
       System.out.println(x + " " + y);
       }
 }

52
53
63
64

13. Which of the following is not a primitive data type?
-Int
-Short
-Byte
-Enum

14. Which of the following is an OOP feature in Java*
-Encapsulation
-Abstraction
-Polymorphism
-All of the above

15. Byte variables are declared by use of the ___ keyword ( Using Primitive Data Type).
-Bytes
-byte
-Byte
-bytes

16. public class While
{
    public void loop()
    {
         int x= 0;
         while ( 1 ) /* Line 6 */
         {
            System.out.print("x plus one is " + (x+1));/* Line 8 */
          }
   }
}

Which statement is true?
-There is a syntax error on line 1
-There are syntax errors on lines 1 and 6
-There are syntax errors on lines 1,6, and 8.
-There is a syntax error on line 6.

17. Members of a base class are never accessible to a derived class*
-Public
-Private
-Protected
-All of the above

18. Which of the following is the correct statement to create an object of Data class?*
-Data d=new object ( );
-Data d =new Data ( );
-Data d( ) = new Data ( );
-Data d( )= new Data ( );

19. public void test (int x)
{
   int odd = 1;
   if(odd) /* Line 4 */
   {
       System.out.println("odd");
   }
    else
   {
       System.out.println("even");
    }
}

Which statement is true?
-Compilation fails.
-odd will always be output
-even will always be output.
-odd will be output for odd values of x and even for even values.

20. A stored procedure is a :-
-Sequence of SQL or PL/SQL statements to perform specific function
-Stored in compiled form in the database
-Can be called from all client environments
-All of the above.

Round 2 - HR 

(2 Questions)

  • Q1. I was not eligible for HR round. But still this website asked me to write at least 2 questions Other wise this form won't submit.
  • Q2. About the resume and projects done.

Interview Preparation Tips

Interview preparation tips for other job seekers - A fixed salary and a bond period of 2 years.
So choose wisely.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Written English 

(1 Question)

  • Q1. Nouns Pronouns Verb Adverb

Interview Preparation Tips

Interview preparation tips for other job seekers - I will advice to do as your own
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. 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 

Basic ASP.Net C# questions were asked

Round 3 - Technical 

(1 Question)

  • Q1. Asp.net C#, OOPs concept, SQL (queries and joints) questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. OOPS concepts, stored procedure related questions.

Interview Preparation Tips

Topics to prepare for IDBI Intech Limited Executive Software Developer interview:
  • Asp.net
  • SQL
  • Oops concepts
  • Stored Procedures
Interview preparation tips for other job seekers - Keep basic concepts clear ! Be confident.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about IDBI Intech Limited?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Question related to dilr, aptitude were asked.

Round 2 - Coding Test 

Easy level questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium level aptitude questions were asked. Easy level coding questions were asked.

I applied via Naukri.com and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All related to the technical queries based on the profile and project required skill set

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at the technical point of view and project management with time line delivery as they have client facing interviews and one has to visit client side for work.

Interview Questionnaire 

1 Question

  • Q1. This interview wada technical one but was majorly a stress test the interviewer wanted to test both my knowledge and communication skills
Are these interview questions helpful?
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 - Coding Test 

I am good coder in java coding knowledge.

Round 3 - Technical 

(2 Questions)

  • Q1. I am best technicaly in java .
  • Q2. Base on java like core java .

Interview Preparation Tips

Interview preparation tips for other job seekers - Hello Mam, This side Manish Kumar. I'm looking for job as java developer so I want know is there any opportunity for Java Developer If yes so I request you please kindly asset me.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 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 

First round is written test which consists of Aptitude, verbal, coding question.

Round 3 - Technical 

(1 Question)

  • Q1. Intro do one try have two catches?(yes) Merge sort for given example
  • Ans. 

    Yes, one try can have two catches in a try-catch block.

    • A try block can have multiple catch blocks to handle different types of exceptions.

    • The catch blocks are executed in the order they are written.

    • If an exception is caught in the first catch block, the subsequent catch blocks are not executed.

    • Example: try { //code } catch (ExceptionType1 e) { //handle exception } catch (ExceptionType2 e) { //handle exception }

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, easy interview, i didnt prepare well for this, gave with the knowledge i had.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning, English grammar

Round 2 - Coding Test 

Get the duplicate numbers, what is api, what is XML file

Round 3 - HR 

(1 Question)

  • Q1. About yourself, projects, where do you see yourself in 5 years

IDBI Intech Limited Interview FAQs

How many rounds are there in IDBI Intech Limited interview for freshers?
IDBI Intech Limited interview process for freshers usually has 2-3 rounds. The most common rounds in the IDBI Intech Limited interview process for freshers are Resume Shortlist, Aptitude Test and HR.
How to prepare for IDBI Intech Limited interview for freshers?
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 IDBI Intech Limited. The most common topics and skills that interviewers at IDBI Intech Limited expect are Calling, Domestic BPO, bpo, call center and customer support.
What are the top questions asked in IDBI Intech Limited interview for freshers?

Some of the top questions asked at the IDBI Intech Limited interview for freshers -

  1. JE of Provision for doubtful debt and there treatment in financi...read more
  2. What is the difference between sessions and cooki...read more
  3. What is bank , tupes of bank ? what is mean public sector bank ? what is your o...read more
What are the most common questions asked in IDBI Intech Limited HR round for freshers?

The most common HR questions asked in IDBI Intech Limited interview are for freshers -

  1. Why are you looking for a chan...read more
  2. What is your family backgrou...read more
  3. What are your salary expectatio...read more
How long is the IDBI Intech Limited interview process?

The duration of IDBI Intech Limited interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

2.8/5

based on 4 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.8
 • 386 Interviews
ITC Infotech Interview Questions
3.7
 • 377 Interviews
CitiusTech Interview Questions
3.3
 • 290 Interviews
NeoSOFT Interview Questions
3.6
 • 280 Interviews
Altimetrik Interview Questions
3.7
 • 242 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 214 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.0
 • 193 Interviews
View all

IDBI Intech Limited Reviews and Ratings

based on 526 reviews

3.5/5

Rating in categories

3.3

Skill development

3.7

Work-life balance

2.9

Salary

4.0

Job security

3.3

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 526 Reviews and Ratings
Customer Service Associate
183 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Team Lead
178 salaries
unlock blur

₹5.4 L/yr - ₹13.4 L/yr

Customer Service Executive
139 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Senior Team Leader
118 salaries
unlock blur

₹9.4 L/yr - ₹15 L/yr

Senior Executive
116 salaries
unlock blur

₹3.5 L/yr - ₹8.5 L/yr

Explore more salaries
Compare IDBI Intech Limited with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

3.4
Compare
write
Share an Interview