Upload Button Icon Add office photos
Engaged Employer

i

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

Translab Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Translab Technologies Software Engineer Interview Questions and Answers

Updated 19 Jun 2024

Translab Technologies Software Engineer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

C++ mcq test
Java mcq test
Logical question

Round 2 - Coding Test 

Java coding questions
C++ coding questions

Interview questions from similar companies

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

(2 Questions)

  • Q1. Basic java questions
  • Q2. Sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude followed with english and reasoning

Round 2 - Technical 

(3 Questions)

  • Q1. Core java technical questions , spring , spring boot
  • Q2. What is JIT in java
  • Ans. 

    JIT stands for Just-In-Time compilation in Java. It dynamically compiles bytecode into machine code at runtime for improved performance.

    • JIT is a part of the Java Virtual Machine (JVM) that optimizes the execution of Java programs.

    • It analyzes the frequently executed parts of the bytecode and compiles them into native machine code.

    • This compilation happens at runtime, just before the code is executed, hence the name Just-...

  • Answered by AI
  • Q3. Explain lifecyxle of thread in java
  • Ans. 

    The lifecycle of a thread in Java includes several stages from creation to termination.

    • A thread is created using the Thread class or implementing the Runnable interface.

    • The thread goes through the new, runnable, and blocked states before running.

    • Once running, the thread can be paused, resumed, or stopped.

    • Finally, the thread reaches the terminated state and cannot be restarted.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Questions was based on SQL
  • Q2. SQL queries and joins and

Interview Preparation Tips

Interview preparation tips for other job seekers - was good and easy process, HR was supportive but i did not get selected
Round 1 - Coding Test 

Basic to medium questions on array string SQL

Round 2 - Technical 

(1 Question)

  • Q1. Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly they hire for freshers because company doesn't have budget to hire good experienced people. So just go through basics because senior people who are working there are also not that knowledgeable.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Recursive program of binary tree and basic HTML bootstrap

I applied via Campus Placement and was interviewed in Nov 2022. There were 5 interview rounds.

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 

This is the aptitude round in this round quant questions were asked

Round 3 - Coding Test 

In this round 2 java coding questions were there

Round 4 - Technical 

(2 Questions)

  • Q1. What is the framework
  • Ans. 

    A framework is a set of rules, guidelines, and standards that provide a structure for developing software applications.

    • A framework provides a common structure for developers to work within

    • It includes pre-written code and libraries that can be used to speed up development

    • Frameworks can be specific to a programming language or platform

    • Examples include AngularJS, React, and Ruby on Rails

  • Answered by AI
  • Q2. What is the java explain
  • Ans. 

    Java is a widely used programming language known for its platform independence and object-oriented approach.

    • Java is an object-oriented language that follows the 'write once, run anywhere' principle.

    • It is used for developing a wide range of applications, from desktop to web and mobile applications.

    • Java programs are compiled into bytecode that can run on any Java Virtual Machine (JVM).

    • It provides built-in libraries and f...

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. What is your salary, tell your expectations
  • Q2. What is your location

Interview Preparation Tips

Topics to prepare for Tradebulls System Engineer interview:
  • Java
  • API
  • C
Interview preparation tips for other job seekers - this is very good company's interview ilike the process basically its overall interview and your are judged basis on your skills

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What is your minimum salary expectation?
  • Q2. Are you planning to stay long-term in this position?
  • Ans. 

    I am committed to long-term growth and contribution in this position, aligning my goals with the company's vision.

    • I believe in building strong relationships with my team and the organization, which takes time and dedication.

    • For example, I aim to take on increasing responsibilities and contribute to long-term projects.

    • I am eager to develop my skills and grow within the company, ensuring I can add value over time.

    • I see t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cautious about Bonus, because they will delay bonus. Will make you wait longer for appraisal
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. How internally work HashMap ?
  • Ans. 

    HashMap uses key-value pairs, hashing, and buckets for efficient data retrieval and storage.

    • HashMap stores data in key-value pairs, where each key is unique.

    • It uses a hash function to compute an index (hash code) for each key.

    • The computed index points to a bucket in an array where the value is stored.

    • If multiple keys hash to the same index (collision), they are stored in a linked list or tree structure.

    • Example: For a k...

  • Answered by AI
  • Q2. Write the logic of prime number
  • Ans. 

    A prime number is a natural number greater than 1 that cannot be formed by multiplying two smaller natural numbers.

    • A prime number has exactly two distinct positive divisors: 1 and itself.

    • Examples of prime numbers include 2, 3, 5, 7, 11, and 13.

    • The number 1 is not prime because it has only one positive divisor.

    • The number 4 is not prime because it can be divided by 1, 2, and 4.

    • To check if a number n is prime, test divisi

  • Answered by AI
  • Q3. Difference between hash map and hash set?
  • Ans. 

    HashMap stores key-value pairs; HashSet stores unique keys without values.

    • HashMap allows duplicate values but not duplicate keys. Example: {1: 'A', 2: 'B', 1: 'C'} results in {1: 'C', 2: 'B'}.

    • HashSet only stores unique elements. Example: {1, 2, 2} results in {1, 2}.

    • HashMap provides O(1) average time complexity for get and put operations.

    • HashSet provides O(1) average time complexity for add, remove, and contains operati...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Nov 2023. There were 3 interview rounds.

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 - One-on-one 

(2 Questions)

  • Q1. Work experience
  • Q2. How many experiance
  • Ans. 

    I have 5 years of experience as an Assistant Manager.

    • I have worked as an Assistant Manager for 5 years.

    • During my time as an Assistant Manager, I successfully led a team of 10 employees.

    • I have experience in budgeting, scheduling, and performance management.

    • I have a proven track record of achieving targets and improving operational efficiency.

    • I am familiar with various management software and tools.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Current ctc discussion

Translab Technologies Interview FAQs

How many rounds are there in Translab Technologies Software Engineer interview?
Translab Technologies interview process usually has 2 rounds. The most common rounds in the Translab Technologies interview process are Aptitude Test and Coding Test.

Tell us how to improve this page.

Translab Technologies Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Translab Technologies Software Engineer Salary
based on 4 salaries
₹3.5 L/yr - ₹8.5 L/yr
32% less than the average Software Engineer Salary in India
View more details

Translab Technologies Software Engineer Reviews and Ratings

based on 2 reviews

2.6/5

Rating in categories

3.3

Skill development

2.3

Work-life balance

2.0

Salary

2.7

Job security

2.7

Company culture

2.3

Promotions

2.7

Work satisfaction

Explore 2 Reviews and Ratings
Technical Specialist
38 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Data Engineer
15 salaries
unlock blur

₹3.6 L/yr - ₹11 L/yr

System Analyst
12 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

AI Engineer
8 salaries
unlock blur

₹14 L/yr - ₹27 L/yr

MS SQL DBA
8 salaries
unlock blur

₹4 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Translab Technologies with

Tradebulls

3.2
Compare

Axis Sales

4.3
Compare

Muthoot Money

3.7
Compare

SysArc Infomatix

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