Upload Button Icon Add office photos

Filter interviews by

Kokan Mercantile Co-operative Bank Interview Questions and Answers

Updated 7 Apr 2024

Kokan Mercantile Co-operative Bank Interview Experiences

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Capital market question

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(3 Questions)

  • Q1. Tell something about your self
  • Ans. 

    I am a dedicated and detail-oriented Assistant System Analyst with strong problem-solving skills.

    • I have a Bachelor's degree in Computer Science and have completed several certifications in system analysis.

    • I have experience in analyzing and troubleshooting complex system issues.

    • I am proficient in programming languages like Java and Python.

    • I have excellent communication skills and can effectively collaborate with cross-f...

  • Answered by AI
  • Q2. Basic of sql,plsql, banking basic like neft rtgs,ifsc code
  • Q3. Different betn delwte and truncate and drop Store procedure in plsql(optional) Describe with syntex dml,dcl,tcl Triggers in plsql(optional)
  • Ans. 

    The question asks about the differences between delete, truncate, and drop in SQL, as well as the syntax of DML, DCL, and TCL statements.

    • DELETE is a DML statement used to remove specific rows from a table.

    • TRUNCATE is a DDL statement used to remove all rows from a table.

    • DROP is a DDL statement used to remove an entire table from the database.

    • DML (Data Manipulation Language) statements are used to manipulate data in the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For fresher keep resume short and fill only what you can answer Basic is also ok
You anyway have to learn over here so u will get knowledge transfer(k.t) and lears some things
Sql basic
Plsql if possible
Java basics
Ping
Telnet
Ftp
1 Basic banking informations should be added in resume and go through topics like what is NEFT, RTGS, IFSC CODE,
2 sql what is different between delete and truncate
Update,delete,truncate,rollback, commit
3 plsql what is store procedures, triggers
And other basics

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Please tell me my self and my work experience
  • Q2. Good skill and job experience and experience
  • Q3. Field experience
  • Q4. Sales executive
  • Q5. Direct marketing

Interview Preparation Tips

Topics to prepare for Smollan Group Sales Executive interview:
  • Direct Sales
  • B2C Marketing
  • direct marketing
  • Field Work
  • Good skiil
  • Product Development
  • Networking
  • Good relationship
Interview preparation tips for other job seekers - My work experience and working skills
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 Nov 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. It was one-on-one round with the CTO. They judged me on my technical knowledge as well as understanding of tech-era.
  • Q2. I was asked question related to the languages and tech-stacks I mentioned in my resume and also question related to OOPs concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on what you speak. If you don't know the answer to a question, just say 'no' directly.
Round 1 - Coding Test 

Basic Aptitude + Coding + Essay Writing

Round 2 - Technical 

(3 Questions)

  • Q1. Asked Basic Coding questions
  • Q2. Reverse the input string - Removing numerics
  • Ans. 

    Reverse input string and remove numerics

    • Use string manipulation functions to remove numerics

    • Reverse the resulting string using a loop or built-in function

    • Return the reversed string

  • Answered by AI
  • Q3. Print the 100th place digit of given input
  • Ans. 

    To print the 100th place digit of given input

    • Extract the input as a string

    • Check if the input is at least 100 digits long

    • Print the 100th digit from the left

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a Low code company, So they don't look much for coding. You can crack easily

Skills evaluated in this interview

I was interviewed in Mar 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Only Java allowed

  • Q1. Sort 0 1

    You 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 an...

  • Ans. 

    Keep two index variables and traverse from the end.

  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Basic intro and coding questions

  • Q1. Valid Perfect Square

    You have been given an integer ‘N’. You are supposed to find if the given integer ‘N’ is a perfect square or not. A perfect square is an integer that is the square of an integer.

    Inpu...
  • Ans. 

    Two nested for loops and check if sum equal to given number

  • Answered Anonymously
  • Q2. Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge sor...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

More difficult than the previous round

  • Q1. Bottom View Of Binary Tree

    Given a binary tree, print its bottom view from left to right. Assume, the left and the right child make a 45-degree angle with the parent.

    A binary tree is a tree in which eac...

  • Ans. 

    Do a level order traversal and update a hashmap based on horizontal distances from the root.

  • Answered Anonymously
Round 4 - Face to Face 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

There were no DSA questions. My interviews were based on android app development. The interviewer presented scenarios and asked how will you solve them. No particular correct answer was expected just the best approach as per me.

  • Q1. Puzzle Question

    It was an android specific question on how to implement multiple recycler views on a magnified screen.

  • Ans. 

    Tip 1 : Have a basic understanding of recycler view
    Tip 2 : Recycler with multiple view types
     

  • Answered Anonymously
  • Q2. Puzzle Question

    Implement various activities with a cart activity in an e-commerce app.

  • Ans. 

    Tip 1 : Basic flow and lifecycle of activities and fragments.
    Tip 2 : Knowledge about launch modes and view models.
     

  • Answered Anonymously
Round 5 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR asked questions about why Mobikwik, what's your goal, how are you a good fit, etc.

Interview Preparation Tips

Eligibility criteriaCGPA - 7 & above, Active backlogs - NoneMobiKwik interview preparation:Topics to prepare for the interview - Basic DSA, Arrays, String, Trees, Problem SolvingTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Prepare advanced array questions
Tip 2 : Trees basic to medium questions
Tip 3 : Optimize solutions

Application resume tips for other job seekers

Tip 1 : Internship experience
Tip 2 : Personal Projects (remember proper details)

Final outcome of the interviewSelected

Skills evaluated in this interview

Senior Analyst - Data Science Interview Questions & Answers

Merilytics user image Shubham Prakash

posted on 10 Mar 2022

I applied via Naukri.com and was interviewed in Feb 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

2 rounds of 15 min each
1st was probability and statistics
2nd was data science

Round 3 - Assignment 

A problem statement was given to build a predictive model to help a CFO of an IT company to predict the time taken by an issue to resolve and classify the issue to high and low priority. Give some insights on the dataset to reduce the time to resolve the issue

Round 4 - Technical 

(4 Questions)

  • Q1. What is onehotencoding?
  • Q2. What do you mean by cross validation?
  • Q3. Explain Random Forest Classifier.
  • Q4. What are API and restful API?
Round 5 - Case Study 

Estimate the market size for a babysitter company across India? How will you proceed to expand the company across India?

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical rounds were easy to crack. Case study are of medium difficulty and can be cracked easily with a little bit of preperation.

Skills evaluated in this interview

I applied via Approached by company and was interviewed in Dec 2021. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions. 1 was basic level. 2 was of medium level.

Round 2 - One-on-one 

(2 Questions)

  • Q1. An ambiguous problem statement was given. Asking relevant questions revealed the problem to be largest island in a binary matrix. Was asked to code on an ide. And reduce space complexity to O(1).
  • Q2. Maximum sum path from root to leaf in an N-ary tree. Was asked to design an appropriate data structure. Then code the solution in O(n) time and O(1) space.
Round 3 - One-on-one 

(3 Questions)

  • Q1. Through discuss of projects. Methods used.
  • Q2. First missing positive number in an array of integer in O(n) time O(1) space.
  • Ans. 

    Find first missing positive number in an array in O(n) time and O(1) space.

    • Traverse the array and mark the presence of each positive integer by changing the sign of the corresponding index.

    • Traverse the array again and return the index of the first positive integer.

    • If all integers are present, return the length of the array + 1.

    • Example: [3, 4, -1, 1] => mark 3rd and 4th index as negative => return 2.

    • Example: [1, 2, 0] =...

  • Answered by AI
  • Q3. Given an integer, print the relevant column name in an excel sheet. Ex: 1- A , 2-B.......... 26-Z , 27-AA, 28-AB........ Was asked code on an ide and test cases were given.
  • Ans. 

    Given an integer, print the relevant column name in an excel sheet.

    • Create a string array of alphabets from A to Z

    • Use modulo operator to get remainder and divide by 26 to get quotient

    • Append the corresponding alphabet to the result string

    • Reverse the result string

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on DSA and past experience.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Just a simple and short interview i have given... First question was... Tell me something about yourself ?
  • Q2. Tell us something about your experience?
  • Q3. Can you join immediately ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be fluent in English language and your regional language... Pro tip and advice for candidates who are willing to work in IndianMoney.. There will be certification from company... 1st is you have to make minimum 25 downloads of thier app... 2nd is you have to introduce your family in front of them, 3rd is you have to complete 3 hrs of talktime ( you have to make calls through thier app to your references and give them demo of thier app and you have to complete 3 hrs talk time ) 4th is you have to sale their app's subscription to your three references and 5th is you have to do an assessment which is very easy... They will help you about the last one... The most hard thing is to sale thier subscription to our references.. they are hiring in bulk and everyone talk about money.... Lots of money... They will give you 1000 rs on per task completion.. means who will complete the task first will get 1000 rs by trainer.... Basically it is a sales profile... You have to generate sales for their application..

Kokan Mercantile Co-operative Bank Interview FAQs

How many rounds are there in Kokan Mercantile Co-operative Bank interview?
Kokan Mercantile Co-operative Bank interview process usually has 1 rounds. The most common rounds in the Kokan Mercantile Co-operative Bank interview process are One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

ffreedom app Interview Questions
3.6
 • 62 Interviews
Merilytics Interview Questions
3.0
 • 48 Interviews
Mobikwik Interview Questions
4.1
 • 45 Interviews
Hathway Interview Questions
3.5
 • 42 Interviews
Aabasoft Interview Questions
4.3
 • 34 Interviews
Smollan Group Interview Questions
4.2
 • 33 Interviews
View all

Kokan Mercantile Co-operative Bank Reviews and Ratings

based on 2 reviews

3.2/5

Rating in categories

3.2

Skill development

3.2

Work-life balance

2.4

Salary

3.2

Job security

3.2

Company culture

2.4

Promotions

3.2

Work satisfaction

Explore 2 Reviews and Ratings
Assistant Branch Manager
4 salaries
unlock blur

₹3.2 L/yr - ₹5.9 L/yr

Clerk
4 salaries
unlock blur

₹1.5 L/yr - ₹3.5 L/yr

Manager
3 salaries
unlock blur

₹4.8 L/yr - ₹7.8 L/yr

Branch Manager
3 salaries
unlock blur

₹3.3 L/yr - ₹3.3 L/yr

Accounts Associate
3 salaries
unlock blur

₹5.4 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Kokan Mercantile Co-operative Bank with

AXA Business Services

3.9
Compare

Hathway

3.5
Compare

ffreedom app

3.6
Compare

Smollan Group

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