Upload Button Icon Add office photos

Filter interviews by

Mintoak Innovations Interview Questions, Process, and Tips

Updated 2 Jan 2025

Top Mintoak Innovations Interview Questions and Answers

View all 9 questions

Mintoak Innovations Interview Experiences

Popular Designations

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(4 Questions)

  • Q1. What is hashmap in java
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and allows fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store key-value pairs, allowing for fast retrieval.

    • Keys in a HashMap must be unique, but values can be duplicated.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("John", 25);

  • Answered by AI
  • Q2. What is constructor
  • Ans. 

    A constructor in Java is a special type of method that is used to initialize objects. It has the same name as the class and no return type.

    • Constructors are called when an object of a class is created.

    • They can be used to initialize instance variables or perform any other setup required for the object.

    • Constructors can be overloaded, meaning a class can have multiple constructors with different parameters.

    • If a class does ...

  • Answered by AI
  • Q3. How to sort a class object having roll no names add to roll no
  • Ans. 

    You can sort a class object by implementing the Comparable interface and overriding the compareTo method.

    • Implement the Comparable interface in the class and override the compareTo method to compare objects based on roll number.

    • Use Collections.sort() method to sort the list of objects based on roll number.

    • Example: class Student implements Comparable<Student> { public int compareTo(Student s) { return this.rollNo -

  • Answered by AI
  • Q4. What is comparator
  • Ans. 

    A Comparator in Java is an interface used to compare objects for sorting purposes.

    • Comparator interface is used to define custom comparison logic for objects.

    • It has a method called compare() which takes two objects as arguments and returns an integer value based on their comparison.

    • It is commonly used with sorting algorithms like Collections.sort() or Arrays.sort().

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Java

Skills evaluated in this interview

Top Mintoak Innovations Java Developer Interview Questions and Answers

Q1. How to sort a class object having roll no names add to roll no
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Functional Interfaces in Java
  • Ans. 

    Functional interfaces in Java are interfaces with a single abstract method, used for lambda expressions and method references.

    • Functional interfaces have only one abstract method, but can have multiple default or static methods.

    • Examples include java.lang.Runnable, java.util.Comparator, and java.util.function.Predicate.

    • Functional interfaces can be used with lambda expressions and method references for concise code.

  • Answered by AI
  • Q2. Spring Boot Annotations, how they work with each other
  • Ans. 

    Spring Boot annotations are used to simplify the development process by providing metadata to the Spring framework.

    • Annotations like @RestController, @RequestMapping, and @Autowired are commonly used in Spring Boot to define controllers, request mappings, and dependency injection.

    • Annotations like @SpringBootApplication are used to bootstrap the Spring application context.

    • Annotations like @ComponentScan and @EnableAutoCo...

  • Answered by AI
  • Q3. Streams in Java
  • Ans. 

    Streams in Java are sequences of elements that support functional-style operations.

    • Streams are used to process collections of objects in a functional way.

    • They allow for concise and readable code by enabling operations like filter, map, reduce, etc.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); Stream stream = names.stream();

Answered by AI
  • Q4. Differences in diff SQL DBs - postgresql vs oracle sql
  • Ans. 

    PostgreSQL and Oracle SQL differ in terms of licensing, features, performance, and cost.

    • PostgreSQL is open-source while Oracle SQL is proprietary.

    • PostgreSQL is known for its extensibility and support for advanced features like JSON data types, while Oracle SQL is known for its robustness and scalability.

    • PostgreSQL is generally considered more cost-effective for small to medium-sized projects, while Oracle SQL is prefer...

  • Answered by AI

    Skills evaluated in this interview

    Top Mintoak Innovations Java Developer Interview Questions and Answers

    Q1. How to sort a class object having roll no names add to roll no
    View answer (1)

    Java Developer Interview Questions asked at other Companies

    Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
    View answer (3)

    Software Developer Interview Questions & Answers

    user image Vaibhav Kumar

    posted on 2 Jan 2025

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

    I applied via Recruitment Consulltant and was interviewed before Jan 2024. There were 2 interview rounds.

    Round 1 - HR 

    (1 Question)

    • Q1. Can you tell me about yourself?
    • Ans. 

      I am a passionate software developer with experience in developing web applications using various technologies.

      • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

      • Proficient in backend development with Node.js and databases like MySQL and MongoDB

      • Familiar with version control systems like Git and project management tools like Jira

    • Answered by AI
    Round 2 - Technical 

    (1 Question)

    • Q1. What is React, and how does closure work in JavaScript?
    • Ans. 

      React is a JavaScript library for building user interfaces. Closure in JavaScript is when a function has access to variables in its outer scope even after the function has finished executing.

      • React is a popular JavaScript library for building user interfaces.

      • It allows developers to create reusable UI components.

      • Closure in JavaScript is when a function retains access to variables from its outer scope even after the funct...

    • Answered by AI

    Software Developer Interview Questions asked at other Companies

    Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
    View answer (38)

    Interview questions from similar companies

    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -

    I applied via Campus Placement

    Round 1 - Aptitude Test 

    It was a MCQ test on CS Fundamentals. We have to answer 50 questions in 40 minutes. Accuracy is must. Company have its own cutoff and it's usually high. So try to gain maximum marks as possible. The results were announced in 1.5 hrs. The selected candidates will be appearing for the coding challenge.

    Round 2 - Coding Test 

    There are 5 questions. 1 easy , 3 medium, 1 hard. You should solve atleast 4 questions to get shortlisted for the interview. Results are announced in 2-3 hours. Take a look at these questions. One of the questions from the coding challenge will be asked in the interview.

    Round 3 - Technical 

    (5 Questions)

    • Q1. Email validation question from coding challenge
    • Q2. Binary Search on rotated arrays
    • Ans. 

      Binary search on rotated arrays involves finding a target value in a sorted array that has been rotated at an unknown pivot point.

      • Identify the pivot point by finding the minimum element in the array.

      • Determine which half of the array the target value falls into based on the pivot point.

      • Perform binary search on the appropriate half of the array to find the target value.

    • Answered by AI
    • Q3. About projects (reason behind using the mentioned database)
    • Q4. Use of package.json file
    • Ans. 

      package.json file is used in Node.js projects to manage dependencies, scripts, and metadata.

      • Contains project metadata like name, version, description, etc.

      • Lists dependencies required for the project to run.

      • Defines scripts for tasks like building, testing, and running the project.

      • Can include configurations for tools like ESLint, Babel, etc.

    • Answered by AI
    • Q5. What are scripts in package.json file
    • Ans. 

      Scripts in package.json file are commands that can be run using npm.

      • Scripts are defined under the 'scripts' key in package.json.

      • Common scripts include 'start', 'test', 'build', etc.

      • Scripts can be run using 'npm run '.

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Explain your approach clearly while solving DSA questions. Revise your understanding on the projects before the interview. Also revise oops, cn, os and some basic understanding of Low level design i.e. designing of classes for music player.

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Easy
    Process Duration
    2-4 weeks
    Result
    Selected Selected

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

    Round 1 - Aptitude Test 

    General basic assessment.

    Round 2 - MCQ 

    (1 Question)

    • Q1. They will give you few PDFs to read and then MCQ from that.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - So the job application process will start from emailing them to the MCQ. Then if selected you'll receive email with next steps which involves Skype chat(no involvement of voice call or video, only chat). Then after the technical setup you need to email them again that you're done with that, after that you'll get another mail with a link to choose a starting date.
    On the starting date you'll again message one person(Yashima Kamra) on Skype, they'll give you 'Zulip'(it's an open source chat system, interface is kind of like Discord but too basic) access. Now you need to message in an assigned group in Zulip. The Zulip part is 'Training' in real but good luck getting any support from the other person. He/she will just give you commands, and if you ask any questions or ask for assistance to understand the new process they'll simply ignore that.
    Then if you're lucky like me one day they'll report that you're ate fault, you haven't reported so they've revoked your Zulip access.

    I have joined there or you can say hoped to work atleast(as it was 4 hours/day job) but that's not possible it seems.

    If you're looking for jobs here I'd suggest to give it a try ofcourse so that people can actually know about this company's rubbish people.
    Interview experience
    5
    Excellent
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Selected Selected

    I applied via Naukri.com and was interviewed in Dec 2024. There were 2 interview rounds.

    Round 1 - Technical 

    (3 Questions)

    • Q1. How to work in Amazon
    • Q2. What the salary
    • Q3. How to work in e-commerce
    Round 2 - Technical 

    (2 Questions)

    • Q1. How to work in Amazon
    • Q2. What the salary

    Interview Preparation Tips

    Interview preparation tips for other job seekers - E-COMMERCE jobs work in Amazon
    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    -
    Round 1 - HR 

    (1 Question)

    • Q1. General discussion
    Round 2 - Demo 

    (1 Question)

    • Q1. Demo in our specialist subject
    Round 3 - One-on-one 

    (2 Questions)

    • Q1. General discussion about ourselves.
    • Q2. About work experience
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I was interviewed in Jan 2025.

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. What was your experience during the face-to-face interview for the department manager position?
    • Ans. 

      The face-to-face interview for the department manager position was challenging but rewarding.

      • The interview panel consisted of senior managers and HR representatives.

      • I was asked about my previous experience in managing teams and handling difficult situations.

      • I had to provide examples of successful projects I had led in the past.

      • There were situational questions to assess my problem-solving skills and leadership abilities...

    • Answered by AI
    • Q2. What is your position preference regarding the preparation of custom-related documents and addressing Bill of Entry queries, as well as completing the checklist for the Bill of Entry?
    • Ans. 

      I prefer to handle the preparation of custom-related documents, addressing Bill of Entry queries, and completing the checklist for the Bill of Entry.

      • I have experience in preparing custom-related documents and addressing Bill of Entry queries.

      • I am detail-oriented and organized, ensuring all necessary information is included in the documents.

      • I am familiar with completing checklists for the Bill of Entry to ensure accurac...

    • Answered by AI
    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    More than 8 weeks
    Result
    Selected Selected
    Round 1 - One-on-one 

    (1 Question)

    • Q1. I have around 9 rounds interview in span of 2 months
    Round 2 - One-on-one 

    (1 Question)

    • Q1. Everyday one round interview
    Round 3 - One-on-one 

    (1 Question)

    • Q1. Same as above .it is too much
    Round 4 - One-on-one 

    (1 Question)

    • Q1. Same as above .it is too much
    Round 5 - One-on-one 

    (1 Question)

    • Q1. Same only .it is too much
    Round 6 - Case Study 

    4 member team interview

    Round 7 - One on one interview 

    (1 Question)

    • Q1. One on one interview
    Round 8 - One on one interview 

    (1 Question)

    • Q1. Reference . through referral I sent my resume
    Round 9 - HR 

    (1 Question)

    • Q1. Salary discussion
    Round 10 - No 

    (1 Question)

    • Q1. It is too much
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Graph theory questions related
    • Q2. Programming,data structure and algo
    Round 2 - One-on-one 

    (2 Questions)

    • Q1. Intro about your self
    • Q2. Mostly focused on CSE fundamentals

    Mintoak Innovations Interview FAQs

    How many rounds are there in Mintoak Innovations interview?
    Mintoak Innovations interview process usually has 1-2 rounds. The most common rounds in the Mintoak Innovations interview process are Technical and HR.
    How to prepare for Mintoak Innovations 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 Mintoak Innovations . The most common topics and skills that interviewers at Mintoak Innovations expect are Java, Spring Boot, Appium, Automation Testing and MySQL.
    What are the top questions asked in Mintoak Innovations interview?

    Some of the top questions asked at the Mintoak Innovations interview -

    1. How to sort a class object having roll no names add to roll...read more
    2. What is React, and how does closure work in JavaScri...read more
    3. Spring Boot Annotations, how they work with each ot...read more

    Tell us how to improve this page.

    Mintoak Innovations Interview Process

    based on 3 interviews

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    Paytm Interview Questions
    3.3
     • 777 Interviews
    PhonePe Interview Questions
    4.0
     • 307 Interviews
    Razorpay Interview Questions
    3.6
     • 149 Interviews
    Pine Labs Interview Questions
    3.4
     • 109 Interviews
    Deltax Interview Questions
    2.7
     • 85 Interviews
    Freecharge Interview Questions
    4.0
     • 53 Interviews
    Mobikwik Interview Questions
    4.1
     • 47 Interviews
    BillDesk Interview Questions
    3.2
     • 14 Interviews
    View all

    Mintoak Innovations Reviews and Ratings

    based on 5 reviews

    4.1/5

    Rating in categories

    3.9

    Skill development

    4.1

    Work-life balance

    4.6

    Salary

    3.9

    Job security

    4.2

    Company culture

    4.8

    Promotions

    4.2

    Work satisfaction

    Explore 5 Reviews and Ratings
    Senior Software Engineer
    19 salaries
    unlock blur

    ₹10 L/yr - ₹30 L/yr

    Software Engineer
    11 salaries
    unlock blur

    ₹10 L/yr - ₹18 L/yr

    Marketing Manager
    10 salaries
    unlock blur

    ₹14 L/yr - ₹16.1 L/yr

    Principal Engineer
    9 salaries
    unlock blur

    ₹27 L/yr - ₹30 L/yr

    Quality Analyst
    6 salaries
    unlock blur

    ₹4.8 L/yr - ₹6 L/yr

    Explore more salaries
    Compare Mintoak Innovations with

    Mswipe Technologies

    3.1
    Compare

    Pine Labs

    3.4
    Compare

    Paytm

    3.3
    Compare

    PhonePe

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