Upload Button Icon Add office photos

Filter interviews by

Plintron Global Technology Solutions Software Developer Trainee Interview Questions and Answers

Updated 27 Mar 2022

6 Interview questions

A Software Developer Trainee was asked
Q. What is a variable?
Ans. 

A variable is a named storage location in memory that holds a value. A static variable is a variable that retains its value between function calls.

  • Variables are used to store data in a program

  • They can be of different data types such as int, float, char, etc.

  • Static variables are declared with the static keyword and retain their value between function calls

  • They are useful for maintaining state across function calls

A Software Developer Trainee was asked
Q. Write a function to reverse a string without using predefined methods.
Ans. 

Reverse a string without using predefined methods.

  • Create an empty string to store the reversed string.

  • Loop through the original string from the end to the beginning.

  • Add each character to the empty string.

  • Return the reversed string.

Software Developer Trainee Interview Questions Asked at Other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. ... read more
Q2. 1.Do you use social media? What is the use of it? 2.Tell us about ... read more
Q3. What is a static keyword in java? Where are the static variables ... read more
Q4. Given a chessboard and the position of a queen, find the coordina ... read more
Q5. Given the distances between bus stops and the charges, how do you ... read more
A Software Developer Trainee was asked
Q. Write a program to generate the Fibonacci sequence.
Ans. 

Fibonacci program generates a series of numbers where each number is the sum of the two preceding ones.

  • Declare variables for first and second numbers in the series

  • Use a loop to generate subsequent numbers by adding the previous two

  • Print or store the numbers in an array

A Software Developer Trainee was asked
Q. Can you declare a constructor privately? If so, what are the ways to access it from outside its class?
Ans. 

Yes, a constructor can be declared privately.

  • Private constructors are used to prevent the creation of objects of a class from outside the class itself.

  • To access a private constructor from outside its class, we can use a public static method or a factory method.

  • The public static method or factory method can create an instance of the class by calling the private constructor.

A Software Developer Trainee was asked
Q. What is a constructor?
Ans. 

A constructor is a special method that is used to initialize objects of a class.

  • Constructors have the same name as the class they belong to.

  • They are called automatically when an object is created.

  • They can take parameters to set initial values for object properties.

  • If a class does not have a constructor, a default constructor is created automatically.

A Software Developer Trainee was asked
Q. What is a class? And how can a class access another class?
Ans. 

A class is a blueprint for creating objects that have properties and methods. One class can access another class using inheritance or composition.

  • A class is a user-defined data type that encapsulates data and functions.

  • Classes can have access modifiers like public, private, and protected.

  • Inheritance allows a class to inherit properties and methods from another class.

  • Composition allows a class to use objects of ano...

Plintron Global Technology Solutions Software Developer Trainee Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude+Logical Reasoning+Puzzles

Round 2 - Coding Test 

Required to write 2 programs in the language one is comfortable with.

Round 3 - Technical 

(4 Questions)

  • Q1. What is a constructor?
  • Ans. 

    A constructor is a special method that is used to initialize objects of a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • They can take parameters to set initial values for object properties.

    • If a class does not have a constructor, a default constructor is created automatically.

  • Answered by AI
  • Q2. What is a variable/ static variable?
  • Ans. 

    A variable is a named storage location in memory that holds a value. A static variable is a variable that retains its value between function calls.

    • Variables are used to store data in a program

    • They can be of different data types such as int, float, char, etc.

    • Static variables are declared with the static keyword and retain their value between function calls

    • They are useful for maintaining state across function calls

  • Answered by AI
  • Q3. Can you declare constructor privately? If so, what are the ways to access it from outside its class?
  • Ans. 

    Yes, a constructor can be declared privately.

    • Private constructors are used to prevent the creation of objects of a class from outside the class itself.

    • To access a private constructor from outside its class, we can use a public static method or a factory method.

    • The public static method or factory method can create an instance of the class by calling the private constructor.

  • Answered by AI
  • Q4. What is a class? And how can a class access another class?
  • Ans. 

    A class is a blueprint for creating objects that have properties and methods. One class can access another class using inheritance or composition.

    • A class is a user-defined data type that encapsulates data and functions.

    • Classes can have access modifiers like public, private, and protected.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Composition allows a class to use objects of another ...

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. Why did you choose to study what you studied?
  • Q2. Write Fibonacci program
  • Ans. 

    Fibonacci program generates a series of numbers where each number is the sum of the two preceding ones.

    • Declare variables for first and second numbers in the series

    • Use a loop to generate subsequent numbers by adding the previous two

    • Print or store the numbers in an array

  • Answered by AI
  • Q3. Write reverse string manipulation without using the predefined methods.
  • Ans. 

    Reverse a string without using predefined methods.

    • Create an empty string to store the reversed string.

    • Loop through the original string from the end to the beginning.

    • Add each character to the empty string.

    • Return the reversed string.

  • Answered by AI
  • Q4. 3l Jar and 5l Jar puzzle.

Interview Preparation Tips

Topics to prepare for Plintron Global Technology Solutions Software Developer Trainee interview:
  • C++
  • OOPS
Interview preparation tips for other job seekers - Answer what you know and be truthful. Never pretend to know something.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Plintron Global Technology Solutions?
Ask anonymously on communities.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Reverse a linked list.
  • Q2. Merge sort on a array/
  • Ans. 

    Merge sort is a divide-and-conquer algorithm that sorts an array by recursively splitting and merging sorted subarrays.

    • 1. Divide the array into two halves until each subarray contains a single element. Example: [38, 27, 43, 3, 9, 82, 10] becomes [38, 27, 43] and [3, 9, 82, 10].

    • 2. Recursively sort each half. Example: [38, 27, 43] becomes [27, 38, 43] and [3, 9, 82, 10] becomes [3, 9, 10, 82].

    • 3. Merge the sorted halves b...

  • Answered by AI

Software Developer Trainee Interview Questions Asked at Other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. ... read more
Q2. 1.Do you use social media? What is the use of it? 2.Tell us about ... read more
Q3. What is a static keyword in java? Where are the static variables ... read more
Q4. Given a chessboard and the position of a queen, find the coordina ... read more
Q5. Given the distances between bus stops and the charges, how do you ... read more
Interview experience
4
Good
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 - Coding Test 

60 Minutes, Mostly DSA c# and platform used was HackerRank

Round 3 - Technical 

(2 Questions)

  • Q1. It was a virtual interview mostly preferred content is DSA, space and time complexity and software development
  • Q2. They'll give us a scenario and ask us to write code accordingly.

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA is must
Be attentive
Don't get confused
Take time to think and then answer the question
If you're not familiar with the question just say 'I don't know' dont try to turnaround things
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Based on python and also question included networking

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before May 2023.

Round 1 - Coding Test 

3 SQL Query and 3 Java Problem

Round 2 - Technical 

(1 Question)

  • Q1. Basic Questions about Java and Hibernate
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse a string
  • Ans. 

    Reverse a given string

    • Create an empty string to store the reversed string

    • Iterate through the original string from end to start and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q2. Database mysql join
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Kadane's Algorithm
Reverse of a Linked List

Round 3 - HR 

(5 Questions)

  • Q1. Questions about the Projects
  • Q2. Questions about Previous Experience
  • Q3. Strength and Weakness
  • Q4. Where i showed my leadership
  • Q5. Why do you want this job

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for DSA and Network concept. Don't worry interviewer will help and Gives a hint.
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Hashmap working Sql joins Java 8 features
Round 2 - HR 

(1 Question)

  • Q1. Roles and responsibilities

I appeared for an interview before Feb 2021.

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. Basic c cpp Stack and heap Project related Simple c programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of c and cpp well.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

1 hour , 3 coding questions java based

Round 2 - HR 

(2 Questions)

  • Q1. Normal discussion
  • Q2. Discussed about joining date or telling about salary or benifits.

Interview Preparation Tips

Topics to prepare for Rakuten Symphony Software Engineer interview:
  • Java
  • Core Java
  • Angular
  • Spark
  • Microservices
Interview preparation tips for other job seekers - This is a telecom doamin compony

Plintron Global Technology Solutions Interview FAQs

How many rounds are there in Plintron Global Technology Solutions Software Developer Trainee interview?
Plintron Global Technology Solutions interview process usually has 4 rounds. The most common rounds in the Plintron Global Technology Solutions interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Plintron Global Technology Solutions Software Developer Trainee interview?

Some of the top questions asked at the Plintron Global Technology Solutions Software Developer Trainee interview -

  1. Can you declare constructor privately? If so, what are the ways to access it fr...read more
  2. What is a class? And how can a class access another cla...read more
  3. What is a variable/ static variab...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Telstra Interview Questions
4.0
 • 51 Interviews
Ciena Interview Questions
4.2
 • 40 Interviews
ZTE Corporation Interview Questions
4.0
 • 19 Interviews
Spectranet Interview Questions
3.7
 • 19 Interviews
Mitel Interview Questions
3.6
 • 17 Interviews
PEARCE SERVICES Interview Questions
3.1
 • 17 Interviews
OnMobile Global Interview Questions
3.5
 • 15 Interviews
View all
Engineer
54 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Software Developer
52 salaries
unlock blur

₹3 L/yr - ₹9.9 L/yr

Test Engineer
51 salaries
unlock blur

₹2.3 L/yr - ₹9.5 L/yr

Softwaretest Engineer
38 salaries
unlock blur

₹3.8 L/yr - ₹13 L/yr

Software Engineer
27 salaries
unlock blur

₹2.7 L/yr - ₹11 L/yr

Explore more salaries
Compare Plintron Global Technology Solutions with

Telenor

4.1
Compare

ZTE Corporation

4.0
Compare

NR Switch N Radio Services

3.7
Compare

Ciena

4.2
Compare
write
Share an Interview