Upload Button Icon Add office photos

Filter interviews by

TRON Softech Software Developer Interview Questions, Process, and Tips

Updated 18 Oct 2023

TRON Softech Software Developer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Sep 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 tips
Round 2 - Coding Test 

Patterns using loops

Round 3 - Technical 

(5 Questions)

  • Q1. Explain oops concept by giving an example
  • Ans. 

    OOPs concept is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (object)

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for different data types

  • Answered by AI
  • Q2. What is difference between method and function
  • Ans. 

    A method is a function that is associated with a class or object, while a function is a standalone block of code.

    • Method is defined within a class or object, while function is standalone

    • Method is called using dot notation on an object, while function is called by its name

    • Methods can access and modify the data of the object they belong to, while functions cannot

  • Answered by AI
  • Q3. Explain main method
  • Ans. 

    Main method is the entry point of a Java program where execution begins.

    • Main method must be public, static, and void.

    • It must accept an array of strings as parameter.

    • It is where the program starts execution.

  • Answered by AI
  • Q4. Explain access modifier
  • Ans. 

    Access modifiers control the visibility and accessibility of classes, methods, and variables in a program.

    • Access modifiers include public, private, protected, and default (package-private).

    • Public - accessible from any other class.

    • Private - accessible only within the same class.

    • Protected - accessible within the same package and subclasses.

    • Default - accessible only within the same package.

    • Example: public class MyClass {

  • Answered by AI
  • Q5. Explain inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits attributes and methods from another class.

    • Allows a class to inherit properties and behavior from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can access all public and protected members of the base class

    • Example: Class Car can inherit from class Vehicle, inheriti...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for TRON Softech Software Developer interview:
  • Core Java
  • JDBC
  • OOPS
Interview preparation tips for other job seekers - we have to prepare oops concept and core java

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Plugin pipeline based scenario question which will trigger first?
  • Q2. Which jscript method used to prevent form save??
  • Ans. 

    The onbeforeunload method is used to prevent form save.

    • Use the onbeforeunload method to display a warning message before leaving the page without saving the form.

    • Return a custom message in the method to prompt the user to confirm if they want to leave the page.

    • Example: window.onbeforeunload = function() { return 'Are you sure you want to leave this page without saving?'; };

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Behavioral interview
  • Q2. Package negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - What limitations each implementation has. Keep that clear. That will help you to clear scenario based questions.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asking the dp and tree and other

Round 2 - One-on-one 

(1 Question)

  • Q1. Asking the project based question and
Round 3 - HR 

(1 Question)

  • Q1. Some question asking base on cultural base and resume based
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How is GIL and how python handle multi threading
  • Ans. 

    GIL stands for Global Interpreter Lock in Python, which limits execution of multiple threads at once.

    • GIL is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes at once.

    • Due to GIL, Python threads are not suitable for CPU-bound tasks but are still useful for I/O-bound tasks.

    • To handle multi-threading in Python, one can use multiprocessing module or asynchronous progr...

  • Answered by AI
  • Q2. Explain How React works under the hood.
  • Ans. 

    React uses a virtual DOM to efficiently update the actual DOM based on changes in state or props.

    • React creates a virtual DOM representation of the actual DOM.

    • When state or props change, React compares the virtual DOM with the actual DOM to determine the minimal set of changes needed.

    • React then updates the actual DOM efficiently to reflect the changes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep understanding of technology you apply for

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between comparator and comparison
  • Ans. 

    Comparator is an interface used to compare objects, while comparison is the act of comparing two or more objects.

    • Comparator is an interface in Java used to define custom sorting logic for objects.

    • Comparison is the process of evaluating the similarities and differences between two or more objects.

    • Comparator is used in sorting algorithms like Collections.sort() to define the sorting order.

    • Comparison is a general term use...

  • Answered by AI
  • Q2. Implement run time polymorphism
  • Ans. 

    Run time polymorphism is achieved in object-oriented programming by using virtual functions and pointers.

    • Use base class with virtual functions

    • Create derived classes that override the virtual functions

    • Use pointers of base class type to store objects of derived classes

    • Call the virtual functions through the base class pointers to achieve polymorphism

  • Answered by AI
  • Q3. What is stack with an example
  • Ans. 

    A stack is a data structure that follows the Last In First Out (LIFO) principle.

    • Elements are added and removed from the top of the stack.

    • Common operations include push (add element) and pop (remove element).

    • Example: Undo functionality in a text editor.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare oops for global logic ans some basic coding questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Hexaware was came to our college placement and our placement staff gave us 3 days coding training and aptitude training and the first round round is aptitude it was a online mcq type you have to pass the aptitude inorder to attend the round 2

Round 2 - Coding Test 

Coding test was based on DSA

Interview Preparation Tips

Interview preparation tips for other job seekers - PREPARE FOR APTITUDE AND HAVE A GOOD KNOWLEDGE IN CODING AND DSA

I applied via Company Website

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 

(2 Questions)

  • Q1. What is the work in office
  • Q2. What is timings in day
  • Ans. 

    Timings in a day refer to the different periods of time that make up a 24-hour day.

    • A day is typically divided into morning, afternoon, evening, and night

    • Different cultures may have different ways of dividing a day

    • Timings can also refer to specific times for events or activities

  • Answered by AI
Round 3 - HR 

(4 Questions)

  • Q1. How much salary per month
  • Q2. What is timing in the day
  • Ans. 

    Timing in the day refers to the different periods or divisions of time within a 24-hour cycle.

    • Timing in the day includes morning, afternoon, evening, and night.

    • It helps in organizing daily activities and scheduling tasks.

    • Different cultures may have different names or divisions for timing in the day, such as siesta or tea time.

    • Timing in the day can also be represented using the 12-hour or 24-hour clock system.

  • Answered by AI
  • Q3. How to procesa I share my details
  • Q4. Please tell me the process

Interview Preparation Tips

Interview preparation tips for other job seekers - Job seekers are known all knowledge and seek easy way to apply for job

I applied via campus placement at Siddhartha Institute of Engineering & Technology, Hyderabad and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Prepare the basic programming languages like Java,SQL and pseudocodes,computer fundamentals,communication.All the questions will be MCQ type of queries.

Round 2 - Technical 

(2 Questions)

  • Q1. Programming codes and core Java ,SQL related questions.If your resume has some other languages then prepare for it.Always be ready with your resume details and the subject.
  • Q2. 1.What is constraints and it's types? 2.what is meant by wrapper class? 3.What is meant by string buffer? 4.Write a program to print number of count of characters in a string and remove duplicates by givin...
  • Ans. 

    This interview includes questions related to constraints, wrapper class, string buffer, and programming.

    • Constraints are rules that limit the values or types of data that can be entered into a field or table. There are two types of constraints: column-level and table-level constraints.

    • Wrapper classes are classes that encapsulate primitive data types and provide methods to manipulate them. For example, Integer is a wrapp...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. 1.Self introduction 2.why should I hire you? 3.Are u want to relocate? 4.what is the reason to join our company?

Interview Preparation Tips

Topics to prepare for Virtusa Consulting Services Software Developer interview:
  • Java
  • SQL
  • HTML
  • CSS
  • Python
  • C
  • Javascript
  • Core Java
Interview preparation tips for other job seekers - Prepare the basic concepts in programming languages like core Java,SQL,html and be prepare with your resume details.

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple technical maths calculations,

Round 2 - Coding Test 

Writing a Jawa coding in small projects

Interview Preparation Tips

Topics to prepare for Sutherland Global Services Software Developer interview:
  • Core Java
  • SQL
  • C
Interview preparation tips for other job seekers - Hr interview
Face to face interview
Tell about my education details

I applied via Job Portal and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Coding Test 

2 rounds easy

Round 2 - HR 

(3 Questions)

  • Q1. Where do you see yourself in 5 years?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare all basic concepts and try to learn all the functions

TRON Softech Interview FAQs

How many rounds are there in TRON Softech Software Developer interview?
TRON Softech interview process usually has 3 rounds. The most common rounds in the TRON Softech interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in TRON Softech Software Developer interview?

Some of the top questions asked at the TRON Softech Software Developer interview -

  1. what is difference between method and funct...read more
  2. explain oops concept by giving an exam...read more
  3. explain access modif...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 TRON Softech interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
TRON Softech Software Developer Salary
based on 5 salaries
₹2 L/yr - ₹6.1 L/yr
48% less than the average Software Developer Salary in India
View more details

TRON Softech Software Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

1.0

Job Security

1.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Softwaretest Engineer
52 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

SQL Database Administrator
9 salaries
unlock blur

₹4.6 L/yr - ₹5 L/yr

Software Engineer
6 salaries
unlock blur

₹2.2 L/yr - ₹8 L/yr

Software Tester
5 salaries
unlock blur

₹2.4 L/yr - ₹4.6 L/yr

Data Analyst
5 salaries
unlock blur

₹2.5 L/yr - ₹5.1 L/yr

Explore more salaries
Compare TRON Softech with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview