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 Management Trainee Interview Questions and Answers

Updated 16 Dec 2024

IDBI Intech Limited Management Trainee Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Basic linux commands
  • Q2. Basic sql statements
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.

Management Trainee Interview Questions Asked at Other Companies

asked in Genpact
Q1. What do you mean by balance sheet reconciliation could you explai ... read more
asked in Ola Cabs
Q2. Case study- Ola has completed 2 years of operations at Jaipur wit ... read more
asked in Genpact
Q3. What's the difference between Intercompany and Intracompany?
Q4. If you have decided to go for a movie and suddenly an emergency a ... read more
Q5. Journal Entries and their effects on Cash Flow Statement. Differe ... read more

I applied via Campus Placement and was interviewed before May 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java basics, jdk, oops concept, data base questions, resume based questions, final year project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for java basics java scripting good attitude, good communication

Interview questions from similar companies

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 experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Remove duplicates from the list
  • Ans. 

    Remove duplicates from an array of strings

    • Create a new set to store unique values

    • Iterate through the array and add each element to the set

    • Convert the set back to an array to remove duplicates

  • Answered by AI
  • Q2. Inheritance related theoretical

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Teall me about urself

I applied via Referral and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Coding Test 

I was asked 2 programming questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Scenario based question. What if someone creates new user with 1st name and last name but backend developer forgot to write code to store last name. How will data be corrected.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice programs for whatever language you are applying for.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. General .net core, oops, sql, caching, authentication, security, angular.

Interview Preparation Tips

Topics to prepare for NeoSOFT Team Lead interview:
  • .Net Core
  • Angular
  • Microservices
  • cqrs
  • JWT
Interview preparation tips for other job seekers - Basics should be clear and confidence level should be high

I applied via Naukri.com and was interviewed in Oct 2021. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Skill and technology worked
  • Ans. 

    I have worked with various technologies and developed skills in project management, team leadership, and software development.

    • Proficient in project management tools such as JIRA and Trello

    • Experience in leading teams of up to 10 members

    • Skilled in programming languages such as Java, Python, and JavaScript

    • Familiarity with front-end frameworks such as React and Angular

    • Knowledge of database technologies such as MySQL and Mo

  • Answered by AI
  • Q2. Give only honest reply
Round 2 - Technical 

(2 Questions)

  • Q1. Basic and semi advance
  • Q2. Clear the basic and try hands on experince
Round 3 - Technical 

(2 Questions)

  • Q1. Advance level of power bi and SQL
  • Ans. 

    I have an advanced level of Power BI and SQL skills.

    • Expertise in creating complex data models and DAX formulas in Power BI

    • Proficient in writing complex SQL queries and stored procedures

    • Experience in integrating Power BI with SQL Server and other data sources

    • Ability to optimize queries and improve performance

    • Familiarity with data visualization best practices and design principles

  • Answered by AI
  • Q2. Can get idea if worked aroud 7 years
Round 4 - HR 

(2 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard work. Clear with basics and hands on experience.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Nov 2022. There were 5 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 - Technical 

(1 Question)

  • Q1. Technical and real life scenario
Round 3 - Technical 

(1 Question)

  • Q1. Technical, use case, real life scenario
Round 4 - One-on-one 

(1 Question)

  • Q1. General knowledge
Round 5 - HR 

(1 Question)

  • Q1. HR round for qualification and negotiation

IDBI Intech Limited Interview FAQs

How many rounds are there in IDBI Intech Limited Management Trainee interview?
IDBI Intech Limited interview process usually has 1-2 rounds. The most common rounds in the IDBI Intech Limited interview process are HR, Technical and Resume Shortlist.
What are the top questions asked in IDBI Intech Limited Management Trainee interview?

Some of the top questions asked at the IDBI Intech Limited Management Trainee interview -

  1. Java basics, jdk, oops concept, data base questions, resume based questions, fi...read more
  2. Basic linux comma...read more
  3. Basic sql stateme...read more

Tell us how to improve this page.

IDBI Intech Limited Management Trainee Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS iON Interview Questions
3.9
 • 368 Interviews
ITC Infotech Interview Questions
3.6
 • 337 Interviews
CitiusTech Interview Questions
3.4
 • 273 Interviews
NeoSOFT Interview Questions
3.7
 • 268 Interviews
Tiger Analytics Interview Questions
3.7
 • 226 Interviews
Episource Interview Questions
3.9
 • 220 Interviews
Altimetrik Interview Questions
3.8
 • 219 Interviews
View all

Fast track your campus placements

View all
IDBI Intech Limited Management Trainee Salary
based on 44 salaries
₹2.6 L/yr - ₹4 L/yr
55% less than the average Management Trainee Salary in India
View more details

IDBI Intech Limited Management Trainee Reviews and Ratings

based on 4 reviews

4.5/5

Rating in categories

4.4

Skill development

4.5

Work-life balance

4.1

Salary

4.4

Job security

4.4

Company culture

4.1

Promotions

4.4

Work satisfaction

Explore 4 Reviews and Ratings
Team Lead
170 salaries
unlock blur

₹3.5 L/yr - ₹14.8 L/yr

Customer Service Associate
155 salaries
unlock blur

₹1.1 L/yr - ₹3.5 L/yr

Customer Service Executive
138 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Senior Team Leader
117 salaries
unlock blur

₹5.2 L/yr - ₹21 L/yr

Project Lead
96 salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Explore more salaries
Compare IDBI Intech Limited with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

3i Infotech

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