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 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
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 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
    View answer (4)

    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?
    Round 2 - Technical 

    (1 Question)

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

    Software Developer Interview Questions asked at other Companies

    Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
    View answer (39)

    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
    • Q3. About projects (reason behind using the mentioned database)
    • Q4. Use of package.json file
    • Q5. What are scripts in package.json file

    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.
    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
    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
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.

    Round 1 - Technical 

    (3 Questions)

    • Q1. SQL question ( window functions) dense_rank
    • Q2. SQL question(window function) aggregation, there were 5 tables and you had to do some joins
    • Q3. Some question on spark optimisations

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare for sql(advanced), and spark and some coding
    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (5 Questions)

    • Q1. Salary why not time being paid ?
    • Q2. Without any evidence how blaming staff ??
    • Q3. Company always carried out theft staff ?
    • Q4. No one professional staff in office and overall company ??
    • Q5. Why directors board unseen to thefts??

    Interview Preparation Tips

    Interview preparation tips for other job seekers - No body goes to the join these lack group
    Hr team non capable and non educated people

    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 in last 1 year

    Interview experience

    4
      
    Good

    Interview Questions from Similar Companies

    Paytm Interview Questions
    3.3
     • 752 Interviews
    PhonePe Interview Questions
    4.0
     • 297 Interviews
    Razorpay Interview Questions
    3.6
     • 151 Interviews
    Pine Labs Interview Questions
    3.5
     • 106 Interviews
    Exl India Interview Questions
    3.5
     • 99 Interviews
    Freecharge Interview Questions
    4.0
     • 51 Interviews
    Mobikwik Interview Questions
    4.0
     • 44 Interviews
    BillDesk Interview Questions
    3.2
     • 13 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.7

    Salary

    3.9

    Job security

    4.2

    Company culture

    4.8

    Promotions

    4.2

    Work satisfaction

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

    ₹10 L/yr - ₹29.2 L/yr

    Software Engineer
    10 salaries
    unlock blur

    ₹10 L/yr - ₹15 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

    Staff Engineer
    5 salaries
    unlock blur

    ₹10 L/yr - ₹14 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