Upload Button Icon Add office photos

Samin Tekmindz India

Compare button icon Compare button icon Compare

Filter interviews by

Samin Tekmindz India Interview Questions, Process, and Tips for Experienced

Updated 28 Sep 2024

Top Samin Tekmindz India Interview Questions and Answers for Experienced

View all 18 questions

Samin Tekmindz India Interview Experiences for Experienced

Popular Designations

5 interviews found

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.

Executive Accountant Interview Questions asked at other Companies

Q1. What is P2P cycle , 3 way match , and what will you do if Approvals are missing in case of Non PO Invoices.
View answer (4)
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?
  • Q5. Do you have any questions?
Round 2 - Technical 

(19 Questions)

  • Q1. 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.

  • Answered by AI
  • 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?
  • Ans. 

    Overloading is when multiple methods have the same name but different parameters, while overriding is when a subclass provides a specific implementation for a method in its superclass.

    • Overloading involves multiple methods with the same name but different parameters.

    • Overriding involves a subclass providing a specific implementation for a method in its superclass.

    • Overloading is determined at compile time based on the met...

  • Answered by AI
  • Q7. 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.

  • Answered by AI
  • Q8. How do you handle exceptions?
  • Ans. 

    I handle exceptions by using try-catch blocks to catch and handle errors gracefully.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Log the exception details for debugging purposes

    • Throw custom exceptions when necessary

    • Use finally block to clean up resources

  • Answered by AI
  • Q9. What is the @Restcontroller and @Controller annotations.
  • Ans. 

    Annotations used in Spring framework for defining RESTful web services (@RestController) and MVC controllers (@Controller).

    • Annotations in Spring framework for defining RESTful web services (@RestController) and MVC controllers (@Controller)

    • @RestController is used for RESTful web services, @Controller is used for MVC controllers

    • @RestController combines @Controller and @ResponseBody annotations

    • Example: @RestController pu...

  • Answered by AI
  • Q10. What is the Spring MVC flow?
  • Ans. 

    Spring MVC flow is the sequence of steps followed in processing a web request in a Spring MVC application.

    • Client sends a request to the DispatcherServlet.

    • DispatcherServlet sends the request to the appropriate Controller.

    • Controller processes the request, interacts with the Model and returns a ModelAndView object.

    • DispatcherServlet selects the appropriate ViewResolver to render the view.

    • ViewResolver resolves the view and

  • Answered by AI
  • 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?
  • Q13. What is the 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 like spe...

  • Answered by AI
  • Q14. What is the thread life cycle?
  • Ans. 

    Thread life cycle refers to the various stages a thread goes through from creation to termination.

    • Thread creation

    • Thread start

    • Thread running

    • Thread waiting or blocked

    • Thread termination

  • Answered by AI
  • Q15. 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 on fin...

  • Answered by AI
  • Q16. Why Strings immutable in java?
  • Ans. 

    Strings are immutable in Java to ensure thread safety, security, and optimization.

    • Immutable strings are thread-safe as they cannot be modified concurrently by multiple threads.

    • Immutable strings prevent security vulnerabilities like injection attacks.

    • Immutable strings allow for optimization by caching and reusing string literals.

  • Answered by AI
  • 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 list = new ArrayList<>(); Vector vector = new Vector<>();

Answered by AI
  • Q18. What is the 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.

  • Answered by AI
  • 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

    Top Samin Tekmindz India Software Engineer Interview Questions and Answers

    Q1. What is the difference between overloading and overriding in java?
    View answer (1)

    Software Engineer Interview Questions asked at other Companies

    Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
    View answer (203)
    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

    Senior Manager Interview Questions asked at other Companies

    Q1. 1. What you understand the requirement of shuttering material at project site?
    View answer (19)
    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

    Senior Associate Interview Questions asked at other Companies

    Q1. On an average, how many invoices can you process in a day?
    View answer (10)

    Samin Tekmindz India interview questions for popular designations

     Senior Associate

     (1)

     Software Engineer

     (1)

     Software Developer

     (1)

     Lead Consultant

     (1)

     Executive Accountant

     (1)

     Senior Manager

     (1)

     Trainee

     (1)

    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.

    Lead Consultant Interview Questions asked at other Companies

    Q1. Pdc emulator and errors how it can be fixed, how to work on VMware disk consolidation error, types for migration which I was involved and issue seen example cross over migration and aws SMS connector, azure sso
    View answer (1)

    Interview questions from similar companies

    I applied via Campus Placement and was interviewed before Jul 2021. There were 4 interview rounds.

    Round 1 - Aptitude Test 

    Aptitude test on CS subjects like C programming, DBMS, CN, and OS.

    Round 2 - Coding Test 

    There were 2 input-output based questions of easy to moderate level

    Round 3 - Group Discussion 

    Every candidate was given an individual topic and was asked to speak on it

    Round 4 - HR 

    (1 Question)

    • Q1. Some typical HR questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be prepared with basic CS subjects you will be able to clear all rounds with ease.

    I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

    I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

    Interview Questionnaire 

    1 Question

    • Q1. Java questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare basic questions

    I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

    Round 1 - Aptitude Test 

    Aptitude round consists Logical reasoning, General Aptitude, Grammar related questions etc. All are moderate level questions.

    Round 2 - Technical 

    (3 Questions)

    • Q1. Explain OOPs w.r.t Java
    • Ans. 

      OOPs is a programming paradigm that uses objects to represent real-world entities. Java is an OOPs language.

      • OOPs stands for Object-Oriented Programming System

      • Java is a class-based OOPs language

      • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOPs

      • Objects have state and behavior

      • Java supports interfaces, which allow for multiple inheritance

      • Example: A car can be represented as an object wit...

    • Answered by AI
    • Q2. Explain about the projects that you have worked on
    • Q3. Explain how Java solves machine dependency of code execution
    • Ans. 

      Java solves machine dependency by using bytecode and virtual machine.

      • Java code is compiled into bytecode which is platform-independent

      • The bytecode is executed by the Java Virtual Machine (JVM) which is platform-specific

      • JVM translates bytecode into machine code for the specific platform

      • This allows Java code to run on any platform with a JVM installed

      • Example: A Java program compiled on Windows can run on Linux or Mac as

    • Answered by AI
    Round 3 - HR 

    (2 Questions)

    • Q1. Why should we hire you?
    • Q2. Tell me about yourself.

    Interview Preparation Tips

    Topics to prepare for Infosys System Engineer interview:
    • Java
    Interview preparation tips for other job seekers - Keep it simple, Prepare basics of 1st preferred Programming Language.

    Skills evaluated in this interview

    I applied via Company Website and was interviewed before Jul 2021. There were 3 interview rounds.

    Round 1 - Aptitude Test 

    Aptitude, reasoning, English, cloud sections

    Round 2 - Coding Test 

    2 questions in which , one has to complete within an 50 minutes

    Round 3 - Communication assessment 

    (2 Questions)

    • Q1. Tell me about t Yourself
    • Q2. What are the previous experiences

    Interview Preparation Tips

    Topics to prepare for Accenture Associate Software Engineer interview:
    • Java
    • SQL
    • Agile Methodology
    • SDLC
    Interview preparation tips for other job seekers - Be confident
    Keep it just and short
    Explain more about your experiences

    Samin Tekmindz India Interview FAQs

    How many rounds are there in Samin Tekmindz India interview for experienced candidates?
    Samin Tekmindz India interview process for experienced candidates usually has 2 rounds. The most common rounds in the Samin Tekmindz India interview process for experienced candidates are One-on-one Round, HR and Resume Shortlist.
    How to prepare for Samin Tekmindz India interview for experienced candidates?
    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 Cloud.
    What are the top questions asked in Samin Tekmindz India interview for experienced candidates?

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

    1. What is the difference between overloading and overriding in ja...read more
    2. What is the difference between sleep and join metho...read more
    3. What is the difference between ArrayList and Vect...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.

    Samin Tekmindz India Interview Process for Experienced

    based on 4 interviews

    Interview experience

    4.3
      
    Good
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.4k Interviews
    Accenture Interview Questions
    3.8
     • 8.1k Interviews
    Infosys Interview Questions
    3.6
     • 7.5k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Cognizant Interview Questions
    3.7
     • 5.6k Interviews
    Capgemini Interview Questions
    3.7
     • 4.8k Interviews
    Tech Mahindra Interview Questions
    3.5
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.8k Interviews
    LTIMindtree Interview Questions
    3.8
     • 2.9k Interviews
    IBM Interview Questions
    4.0
     • 2.3k Interviews
    View all

    Samin Tekmindz India Reviews and Ratings

    based on 65 reviews

    2.8/5

    Rating in categories

    2.8

    Skill development

    2.7

    Work-life balance

    2.9

    Salary

    2.3

    Job security

    2.6

    Company culture

    2.4

    Promotions

    2.5

    Work satisfaction

    Explore 65 Reviews and Ratings
    Senior Software Engineer
    55 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Software Engineer
    53 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Technical Lead
    33 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Project Lead
    14 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Software Developer
    12 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Explore more salaries
    Compare Samin Tekmindz India with

    TCS

    3.7
    Compare

    Infosys

    3.6
    Compare

    Wipro

    3.7
    Compare

    HCLTech

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