Upload Button Icon Add office photos

Samin Tekmindz India

Compare button icon Compare button icon Compare

Filter interviews by

Samin Tekmindz India Interview Questions and Answers

Updated 22 May 2025
Popular Designations

16 Interview questions

A Software Engineer was asked
Q. What is the Spring MVC flow?
Ans. 

Spring MVC is a framework for building web applications in Java, following the Model-View-Controller design pattern.

  • 1. Client sends a request to the DispatcherServlet.

  • 2. DispatcherServlet maps the request to a specific Controller based on URL.

  • 3. The Controller processes the request and interacts with the Model (business logic).

  • 4. The Model returns data to the Controller.

  • 5. The Controller selects a View (JSP, Thyme...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Can you tell me about some git commands?
Ans. 

Git commands are used to interact with the version control system Git.

  • git clone: Used to clone a repository from a remote server to your local machine.

  • git add: Adds changes in the working directory to the staging area.

  • git commit: Records changes to the repository.

  • git push: Pushes changes to a remote repository.

  • git pull: Fetches changes from a remote repository and merges them into the local branch.

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is Composition in Java?
Ans. 

Composition in Java is a design technique where a class contains an object of another class to reuse its functionality.

  • Composition is a 'has-a' relationship, where one class contains an instance of another class.

  • It allows for code reuse and flexibility in design.

  • Example: A Car class may contain an Engine object, utilizing its functionality without inheriting from it.

View all Software Engineer interview questions
A Software Engineer was asked
Q. How would you compare two strings in Java?
Ans. 

Use the equals() method or compareTo() method to compare two strings in Java.

  • Use the equals() method to compare two strings for content equality.

  • Use the compareTo() method to compare two strings lexicographically.

  • Consider using the equalsIgnoreCase() method for case-insensitive comparison.

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is the difference between sleep and join methods?
Ans. 

Sleep method pauses the current thread for a specified amount of time, while join method waits for a thread to finish execution.

  • Sleep method is a static method of Thread class, while join method is an instance method.

  • Sleep method does not release the lock on the object, while join method does.

  • Sleep method takes a specified time in milliseconds as an argument, while join method waits until the thread it is called o...

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is data encapsulation?
Ans. 

Data encapsulation is the concept of bundling data with the methods that operate on that data, restricting access to the data.

  • Data encapsulation is a fundamental principle of object-oriented programming.

  • It allows for the data to be hidden and only accessible through the defined methods.

  • Encapsulation helps in achieving data abstraction and information hiding.

  • Example: In a class representing a car, the variables lik...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Can you override a static method in Java?
Ans. 

No, static methods cannot be overridden in Java.

  • Static methods belong to the class itself, not to any specific instance of the class.

  • Subclasses can have static methods with the same signature as the parent class, but it is not considered overriding.

  • Example: Parent class has a static method 'display()', and subclass also has a static method 'display()', this is not overriding.

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked
Q. What is the difference between overloading and overriding in Java?
Ans. 

Overloading allows multiple methods with the same name but different parameters; overriding redefines a method in a subclass.

  • Overloading occurs within the same class.

  • Example of overloading: 'int add(int a, int b)' and 'double add(double a, double b)'.

  • Overriding occurs in a subclass, redefining a method from the superclass.

  • Example of overriding: 'void display()' in a subclass that changes behavior from the supercla...

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is a pointcut?
Ans. 

Point cut is a term used in Aspect-Oriented Programming (AOP) to define where certain aspects should be applied in the code.

  • Point cut specifies the join points in the code where advice should be applied.

  • It helps in separating the cross-cutting concerns from the main business logic.

  • Examples of point cuts include method executions, field accesses, and exception handling.

View all Software Engineer interview questions
A Software Engineer was asked
Q. What is a joint point?
Ans. 

Joint point is a point in the execution of a program where an aspect can be applied.

  • Joint point is a specific point in the execution of a program where additional behavior can be introduced.

  • It is a point in the code where the aspect code can be weaved in.

  • Examples include method calls, exception handling, variable assignments, etc.

View all Software Engineer interview questions

Samin Tekmindz India Interview Experiences

8 interviews found

Trainee Interview Questions & Answers

user image Anonymous

posted on 28 Sep 2024

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

(1 Question)

  • Q1. Why you want to be permanent
  • Ans. 

    I am seeking stability, growth opportunities, and a long-term commitment to contribute to the company's success.

    • Seeking stability in career

    • Looking for growth opportunities within the company

    • Committed to contributing to the company's success in the long term

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Bad exp bad bad mangmnt
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 Dec 2022. 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 - HR 

(1 Question)

  • Q1. General information about our profile that's it
Round 3 - One-on-one 

(2 Questions)

  • Q1. Asking about previous organisation experience
  • Q2. Asking about your educational background

Interview Preparation Tips

Interview preparation tips for other job seekers - Go green just answer what you know that's it.. ☺️ if you don't know about the question asked during the interview just say sorry I didn't.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - HR 

(5 Questions)

  • Q1. Tell me about yourself?
  • Q2. What are your strengths and weaknesses?
  • Q3. What dou you know about our organisation?
  • Q4. What are you hobbies and interests?
  • Ans. 

    I enjoy coding, hiking, and photography, which help me unwind and fuel my creativity outside of work.

    • Coding personal projects, like a weather app using React.

    • Hiking in local trails, exploring nature and staying active.

    • Photography, capturing landscapes and urban scenes on weekends.

  • Answered by AI
  • Q5. Do you have any questions?
Round 2 - Technical 

(19 Questions)

  • Q1. How would you compare two strings in java?
  • Q2. What is point cut?
  • Ans. 

    Point cut is a term used in Aspect-Oriented Programming (AOP) to define where certain aspects should be applied in the code.

    • Point cut specifies the join points in the code where advice should be applied.

    • It helps in separating the cross-cutting concerns from the main business logic.

    • Examples of point cuts include method executions, field accesses, and exception handling.

  • Answered by AI
  • Q3. What is joint point?
  • Ans. 

    Joint point is a point in the execution of a program where an aspect can be applied.

    • Joint point is a specific point in the execution of a program where additional behavior can be introduced.

    • It is a point in the code where the aspect code can be weaved in.

    • Examples include method calls, exception handling, variable assignments, etc.

  • Answered by AI
  • Q4. What docker commands do you know?
  • Ans. 

    I know various docker commands for managing containers and images.

    • docker run - to create and start a new container

    • docker ps - to list all running containers

    • docker stop - to stop a running container

    • docker images - to list all available images

    • docker pull - to download an image from a registry

    • docker build - to build an image from a Dockerfile

  • Answered by AI
  • Q5. How do you write a docker file?
  • Ans. 

    A Dockerfile is a text document that contains all the commands a user could call on the command line to assemble an image.

    • Start with a base image using the FROM keyword

    • Use the RUN keyword to execute commands in the image

    • Use the COPY keyword to add files from your Docker client's current directory

    • Use the CMD keyword to specify the command to run when the container starts

  • Answered by AI
  • Q6. What is the difference between overloading and overriding in java?
  • Q7. Can you tell me about some git commands?
  • Q8. How do you handle exceptions?
  • Q9. What is the @Restcontroller and @Controller annotations.
  • Q10. What is the Spring MVC flow?
  • Q11. What is actuator in springboot?
  • Ans. 

    Actuator in Spring Boot is a set of tools and features that help monitor and manage your application.

    • Actuator provides endpoints to monitor application health, metrics, info, etc.

    • It allows you to interact with your application through HTTP endpoints.

    • Examples of endpoints include /actuator/health, /actuator/metrics, /actuator/info.

    • Actuator can be customized and secured based on your requirements.

  • Answered by AI
  • Q12. Explain about your project technical flow?
  • Ans. 

    The project involves a web application that streamlines user interactions through a robust backend and responsive frontend.

    • User Authentication: Implemented secure login and registration using JWT tokens to manage user sessions effectively.

    • RESTful API: Developed a RESTful API using Spring Boot to handle data requests, ensuring smooth communication between frontend and backend.

    • Database Integration: Utilized PostgreSQL fo...

  • Answered by AI
  • Q13. What is the data encapsulation?
  • Q14. What is the thread life cycle?
  • Q15. What is the difference between sleep and join methods?
  • Q16. Why Strings immutable in java?
  • Q17. What is the difference between ArrayList and Vector?
  • Ans. 

    ArrayList is not synchronized while Vector is synchronized.

    • ArrayList is not thread-safe, while Vector is thread-safe.

    • Vector is slower than ArrayList because of synchronization.

    • ArrayList is a part of the Java Collection Framework, while Vector is a legacy class.

    • Example: ArrayList<String> list = new ArrayList<>(); Vector<String> vector = new Vector<>();

  • Answered by AI
  • Q18. What is the Composition in java?
  • Q19. Can you override static method in java?
  • Ans. 

    No, static methods cannot be overridden in Java.

    • Static methods belong to the class itself, not to any specific instance of the class.

    • Subclasses can have static methods with the same signature as the parent class, but it is not considered overriding.

    • Example: Parent class has a static method 'display()', and subclass also has a static method 'display()', this is not overriding.

  • Answered by AI
Round 3 - Coding Test 

Sample java basic problems.
Time complexity of a sample program.
Pseudo code of a given problem.
Implementation of a binary search tree.
Wetting an api using springboot with proper implementation of exception handling.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do revise the basic concepts of Java.
Stay updated with the latest tools in your respective field.

Skills evaluated in this interview

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

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

  • Q1. Basic oops concepts
  • Q2. Database management
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Discuss challenging Project and Their Impact
  • Q3. Team management style (micro level)
  • Q4. Stakeholder management
  • Q5. Discuss real life scenario and how will you approach towards the problem
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. - Tell me about yourself - Challenging Projects and their impacts - Team management style - Case Studies and your action in those scenarios
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Simple aptitude question

Round 3 - Coding Test 

Coding related to Arraylist and hashmaps

Round 4 - Technical 

(1 Question)

  • Q1. Logical think and implementation while explation of past projects
Round 5 - One-on-one 

(1 Question)

  • Q1. In this it was just a round to know me better nothing related to tech and all just normal interview to know my intrests and everything
Round 6 - HR 

(1 Question)

  • Q1. HR round was the end

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have basic understanding of computers and have a good logical thinking you should apply here
Got lots to learn in just one year

I applied via Job Portal and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Application optimization, scalable applications, questions on inheritance and live examples on same.

Interview Preparation Tips

Interview preparation tips for other job seekers - They took three technical rounds and then scheduled interview with some director, who was not ready to listen anything, he did not believe in certifications, when I wanted to explain what work I had done in previous projects, he said its not about talking its all technical in our company.

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 Samin Tekmindz India?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2022. 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 - Aptitude Test 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

Samin Tekmindz India Interview FAQs

How many rounds are there in Samin Tekmindz India interview?
Samin Tekmindz India interview process usually has 2-3 rounds. The most common rounds in the Samin Tekmindz India interview process are One-on-one Round, HR and Technical.
How to prepare for Samin Tekmindz India 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 Samin Tekmindz India. The most common topics and skills that interviewers at Samin Tekmindz India expect are AWS, Java, MySQL, Hibernate and Microservices.
What are the top questions asked in Samin Tekmindz India interview?

Some of the top questions asked at the Samin Tekmindz India interview -

  1. What is the difference between overloading and overriding in ja...read more
  2. What is the @Restcontroller and @Controller annotatio...read more
  3. What is the difference between sleep and join metho...read more
How long is the Samin Tekmindz India interview process?

The duration of Samin Tekmindz India interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.1/5

based on 11 interview experiences

Difficulty level

Easy 14%
Moderate 86%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 34 Interviews
ClaySys Interview Questions
2.9
 • 26 Interviews
Contus Interview Questions
4.2
 • 24 Interviews
Pitney Bowes Interview Questions
3.8
 • 22 Interviews
DynPro Interview Questions
3.8
 • 21 Interviews
View all

Samin Tekmindz India Reviews and Ratings

based on 68 reviews

2.8/5

Rating in categories

3.0

Skill development

2.7

Work-life balance

3.0

Salary

2.3

Job security

2.6

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 68 Reviews and Ratings
Senior Software Engineer
53 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Software Engineer
51 salaries
unlock blur

₹2.7 L/yr - ₹7 L/yr

Technical Lead
32 salaries
unlock blur

₹9 L/yr - ₹17.5 L/yr

Project Lead
14 salaries
unlock blur

₹13 L/yr - ₹24 L/yr

Software Developer
11 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Samin Tekmindz India with

Accel Frontline

4.1
Compare

Apmosys Technologies

3.4
Compare

Pitney Bowes

3.8
Compare

DynPro

3.8
Compare
write
Share an Interview