Upload Button Icon Add office photos

Filter interviews by

Plintron Global Technology Solutions Interview Questions and Answers

Updated 12 Apr 2025
Popular Designations

15 Interview questions

A Software Developer was asked 12mo ago
Q. What is the difference between application and session state?
Ans. 

Application and session statements are used in programming to manage user data and interactions, but have different scopes and lifetimes.

  • Application statements are used to store data that is shared across all users and sessions.

  • Session statements are used to store data that is specific to a particular user's session.

  • Application statements are typically stored in a database or global variables, while session statem...

View all Software Developer interview questions
A Software Developer was asked 12mo ago
Q. What is the split method and where is it used?
Ans. 

Split is a method used to divide a string into an array of substrings based on a specified delimiter.

  • Split is commonly used in programming languages like Java, Python, and JavaScript.

  • It is used to separate a string into multiple parts based on a specific character or sequence of characters.

  • For example, in Java, you can use the split() method to split a sentence into words based on spaces.

View all Software Developer interview questions
A Software Developer was asked 12mo ago
Q. What is cookie timeout?
Ans. 

Cookies timeout refers to the duration a cookie remains valid before it expires and is deleted by the browser.

  • Cookies have an expiration date set by the 'Expires' or 'Max-Age' attribute.

  • If no expiration is set, cookies are considered session cookies and expire when the browser is closed.

  • Example: A cookie with 'Max-Age=3600' will expire in one hour.

  • Cookies can be used for session management, user preferences, and t...

View all Software Developer interview questions
A Server Administrator was asked 12mo ago
Q. What is the Linux booting process?
Ans. 

The Linux booting process involves several stages including BIOS, bootloader, kernel initialization, and user space initialization.

  • BIOS (Basic Input/Output System) performs Power-On Self Test (POST) and locates the bootloader

  • Bootloader (such as GRUB) loads the Linux kernel into memory

  • Kernel initializes hardware, mounts the root filesystem, and starts the init process

  • User space initialization involves starting syst...

View all Server Administrator interview questions
An Engineer was asked 12mo ago
Q. Write an SQL query to create a table.
Ans. 

Creating a table using SQL query

  • Use CREATE TABLE statement

  • Specify table name and column names along with data types

  • Add any constraints like primary key or foreign key if needed

View all Engineer interview questions
An Engineer was asked 12mo ago
Q. Why are radio cells hexagonal in shape?
Ans. 

Radio cells are hexagonal in shape because it allows for efficient coverage with minimal overlap and interference.

  • Hexagonal shape provides equal distance between each cell edge, ensuring uniform coverage.

  • Minimizes interference by reducing overlapping areas between cells.

  • Easier to plan and optimize network layout compared to other shapes like squares or circles.

View all Engineer 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

View all Software Developer Trainee interview questions
Are these interview questions helpful?
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.

View all Software Developer Trainee interview questions
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

View all Software Developer Trainee interview questions
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.

View all Software Developer Trainee interview questions

Plintron Global Technology Solutions Interview Experiences

17 interviews found

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

A link will be mailed to you after you apply. Quantitative Ability, Verbal and Logical Reasoning are asked.

Round 2 - Coding Test 

5 DSA-based questions were asked in the coding round (Easy-Medium difficulty)

Round 3 - Technical 

(2 Questions)

  • Q1. C++ qns (Friens Fn, Virtual Fn)
  • Q2. Java(Heap, Stack, Method Overloading, DSA Qns)

Test Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Apr 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. 1.Sql queries and rdbms
  • Q2. Putty commands with linux

Software Developer Interview Questions & Answers

user image 231103 SRIVATHSAN. S

posted on 16 Apr 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. SQL based basic questions
Round 2 - HR 

(1 Question)

  • Q1. General questions and previous experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 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 - Technical 

(2 Questions)

  • Q1. Basics in ASP.net,sql server
  • Q2. Exception handling,drawback of cookies
Round 3 - One-on-one 

(1 Question)

  • Q1. Previous working experience

Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Jun 2024

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

I applied via Job Fair and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Written aptitude test

Round 2 - Technical 

(5 Questions)

  • Q1. What are Logic gates and what are universal gate
  • Ans. 

    Logic gates are basic building blocks of digital circuits that perform logical operations. Universal gates can be used to implement any other gate.

    • Logic gates are electronic devices that perform logical operations on one or more binary inputs to produce a single binary output.

    • There are different types of logic gates such as AND, OR, NOT, NAND, NOR, XOR, and XNOR.

    • Universal gates, like NAND and NOR gates, can be used to ...

  • Answered by AI
  • Q2. SQL query for creating a table
  • Ans. 

    Creating a table using SQL query

    • Use CREATE TABLE statement

    • Specify table name and column names along with data types

    • Add any constraints like primary key or foreign key if needed

  • Answered by AI
  • Q3. Why radio cells are hexagonal in shape
  • Ans. 

    Radio cells are hexagonal in shape because it allows for efficient coverage with minimal overlap and interference.

    • Hexagonal shape provides equal distance between each cell edge, ensuring uniform coverage.

    • Minimizes interference by reducing overlapping areas between cells.

    • Easier to plan and optimize network layout compared to other shapes like squares or circles.

  • Answered by AI
  • Q4. Various Linux commands
  • Q5. OSI model and it's uses
  • Ans. 

    The OSI model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.

    • The OSI model helps in understanding how data is transmitted over a network.

    • Each layer in the OSI model performs specific functions and communicates with the adjacent layers.

    • Examples of OSI model layers include physical layer, data link layer, network layer, transport layer, session layer...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. College name and project details
  • Q2. Terms of employment

Interview Preparation Tips

Interview preparation tips for other job seekers - As a fresher they ask from the basic question from the college

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Company give the question paper with 10 questions answer the question it was like basic coding and general knowledge

Round 2 - One-on-one 

(3 Questions)

  • Q1. What is split and where we used?
  • Ans. 

    Split is a method used to divide a string into an array of substrings based on a specified delimiter.

    • Split is commonly used in programming languages like Java, Python, and JavaScript.

    • It is used to separate a string into multiple parts based on a specific character or sequence of characters.

    • For example, in Java, you can use the split() method to split a sentence into words based on spaces.

  • Answered by AI
  • Q2. Cookies timeout?
  • Ans. 

    Cookies timeout refers to the duration a cookie remains valid before it expires and is deleted by the browser.

    • Cookies have an expiration date set by the 'Expires' or 'Max-Age' attribute.

    • If no expiration is set, cookies are considered session cookies and expire when the browser is closed.

    • Example: A cookie with 'Max-Age=3600' will expire in one hour.

    • Cookies can be used for session management, user preferences, and tracki...

  • Answered by AI
  • Q3. Application and session statement difference?
  • Ans. 

    Application and session statements are used in programming to manage user data and interactions, but have different scopes and lifetimes.

    • Application statements are used to store data that is shared across all users and sessions.

    • Session statements are used to store data that is specific to a particular user's session.

    • Application statements are typically stored in a database or global variables, while session statements ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please explain your answer bold don't panic

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What linx booting process
  • Ans. 

    The Linux booting process involves several stages including BIOS, bootloader, kernel initialization, and user space initialization.

    • BIOS (Basic Input/Output System) performs Power-On Self Test (POST) and locates the bootloader

    • Bootloader (such as GRUB) loads the Linux kernel into memory

    • Kernel initializes hardware, mounts the root filesystem, and starts the init process

    • User space initialization involves starting system se...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Asked aws Cloud also
Round 3 - Technical 

(1 Question)

  • Q1. Basics of DHCP,DNS etc
Round 4 - HR 

(1 Question)

  • Q1. Your selected that is it

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't attend interview in this kind of office your career will poor

Skills evaluated in this interview

Trainee Interview Questions & Answers

user image Emmanuel Asbon

posted on 20 Apr 2022

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

Round 1 - Aptitude Test 

25 questions. Just a formality to that tests a worthy candidate.

Round 2 - Coding Test 

2 questions. It's a must. Most will be filtered out beforehand. Just know that the 'waiting time' between round 1 and 2 will be long... Like really really long.

Round 3 - Technical 

(2 Questions)

  • Q1. What are variables, classes...etc
  • Ans. 

    Variables are containers for storing data values. Classes are blueprints for creating objects in object-oriented programming.

    • Variables are declared with a data type and can hold different values.

    • Classes define the properties and methods of objects.

    • Inheritance allows classes to inherit properties and methods from other classes.

    • Polymorphism allows objects to take on different forms depending on the context.

    • Encapsulation ...

  • Answered by AI
  • Q2. Scope resolutions, friend functions etc
Round 4 - Technical 

(1 Question)

  • Q1. 3 liter jug and 5 liter jug puzzle
Round 5 - HR 

(1 Question)

  • Q1. Personal questions based on resume
Round 6 - Aptitude Test 
Round 7 - HR 

(3 Questions)

  • Q1. What is your family background?
  • Ans. 

    My family background is diverse and multicultural, with members from different countries and professions.

    • My father is from India and works as a software engineer.

    • My mother is from Brazil and is a doctor.

    • I have an older sister who is studying law in the United States.

    • My grandparents on my father's side are farmers in rural China.

    • We celebrate both Indian and Brazilian cultural traditions in our household.

  • Answered by AI
  • Q2. Share details of your previous job.
  • Ans. 

    I worked as a customer service representative at a telecommunications company.

    • Handled customer inquiries and complaints via phone and email

    • Provided technical support and troubleshooting assistance

    • Processed billing and payment transactions

    • Maintained accurate customer records

    • Collaborated with other departments to resolve customer issues

  • Answered by AI
  • Q3. Tell me about yourself.
  • Ans. 

    I am a motivated and enthusiastic individual with a strong desire to learn and grow in the trainee role.

    • I have recently completed my Bachelor's degree in Business Administration.

    • During my studies, I gained practical experience through internships at two different companies.

    • I have developed excellent communication and problem-solving skills through my coursework and extracurricular activities.

    • I am a quick learner and ad...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Plintron Global Technology Solutions Trainee interview:
  • C++
  • C
  • System testing
  • Puzzles & riddles
  • Oops
Interview preparation tips for other job seekers - If you feel like you're being ignored. Just know that you're being tested. Like the elders always say, "Patience is a virtue." Good luck!

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

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

I applied via Walk-in and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. 5g call flow, data flow
  • Q2. OCS, sigtron, bss

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls do not join this organisation unless you want to spoil your career and your mental health

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.

Plintron Global Technology Solutions Interview FAQs

How many rounds are there in Plintron Global Technology Solutions interview?
Plintron Global Technology Solutions interview process usually has 3-4 rounds. The most common rounds in the Plintron Global Technology Solutions interview process are Technical, HR and Aptitude Test.
How to prepare for Plintron Global Technology Solutions interview?
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 Plintron Global Technology Solutions. The most common topics and skills that interviewers at Plintron Global Technology Solutions expect are C++, C, Telecom, ASP.Net and Linux.
What are the top questions asked in Plintron Global Technology Solutions interview?

Some of the top questions asked at the Plintron Global Technology Solutions 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 are variables, classes......read more
What are the most common questions asked in Plintron Global Technology Solutions HR round?

The most common HR questions asked in Plintron Global Technology Solutions interview are -

  1. What is your family backgrou...read more
  2. Share details of your previous j...read more
  3. Tell me about yourse...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 14 interview experiences

Difficulty level

Easy 22%
Moderate 78%

Duration

Less than 2 weeks 67%
4-6 weeks 11%
6-8 weeks 11%
More than 8 weeks 11%
View more

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

Plintron Global Technology Solutions Reviews and Ratings

based on 143 reviews

2.8/5

Rating in categories

3.0

Skill development

2.8

Work-life balance

2.5

Salary

3.2

Job security

2.5

Company culture

2.4

Promotions

2.7

Work satisfaction

Explore 143 Reviews and Ratings
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