Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Sri Mookambika Infosolutions Team. If you also belong to the team, you can get access from here

Sri Mookambika Infosolutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sri Mookambika Infosolutions Java Developer Interview Questions and Answers

Updated 30 Sep 2024

Sri Mookambika Infosolutions Java Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Work,time ,average in based question

Round 2 - Coding Test 

It based programming question

Interview questions from similar companies

I appeared for an interview before Mar 2021.

Round 1 - Coding Test 

Round duration - 30 minutes
Round difficulty - Medium

This was a MCQ round. 30 ques in 30 mins consisting of difficult quantitative aptitude questions were to be solved.

Round 2 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

In this test round, 2 coding questions were given. Either write the code or pseudo code

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard without threatening each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not threaten each other.

    • Generate all valid configurations and print them out.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions on DSA.

  • Q1. 

    Reverse Words in a String: Problem Statement

    You are given a string of length N. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...

  • Ans. 

    Reverse words in a string while handling leading, trailing, and multiple spaces.

    • Split the input string by spaces to get individual words

    • Reverse the order of the words

    • Join the reversed words with a single space in between

  • Answered by AI
  • Q2. 

    Circular Linked List Detection

    You are provided with the head of a linked list containing integers. Your task is to determine if the linked list is circular.

    Note:
    • A linked list is considered circula...
  • Ans. 

    Detect if a given linked list is circular by checking if it forms a closed loop.

    • Traverse the linked list using two pointers, one moving at double the speed of the other.

    • If the two pointers meet at any point, the linked list is circular.

    • If the faster pointer reaches the end of the list (NULL), the linked list is not circular.

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round with typical behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMAQ Software interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. Total 3 rounds are there.
  • Q2. 1 . Apps and tech..m choose the best
  • Q3. 2. Technical. Asking basic questions (oops, multithreading, basic JDBC) and 1 program (array or collection)
  • Q4. 3. Basic questions about you. And some technical questions. Its pure for check communication
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Aptitude Test 

C,c++,java ,SQL, javascript and python

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of Polymorphism
  • Ans. 

    Polymorphism in programming refers to the ability of a single function or method to operate on different data types.

    • There are two main types of polymorphism: compile-time (static) polymorphism and run-time (dynamic) polymorphism.

    • Compile-time polymorphism is achieved through function overloading and operator overloading.

    • Run-time polymorphism is achieved through inheritance and virtual functions.

    • Example of compile-time p...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is use of ng-content ?.
  • Ans. 

    ng-content is used in Angular to project content into a component's template.

    • ng-content is used to pass content into a component from the outside.

    • It allows for dynamic content insertion within a component's template.

    • ng-content is often used in combination with ng-template and ng-container.

    • It is commonly used for creating reusable components with varying content.

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in May 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 - Technical 

(3 Questions)

  • Q1. 2 Technical rounds with HR round that's good
  • Q2. Basic tech questions first 2nd round go little bit inside of code linked list
  • Q3. Django total process
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion, previous companies discussion
  • Q2. Tell me about your company and roles responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - No need to worry big some time they need particular tech
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

One Hard question on print LIS type and One medium-Hard Question on Variable window sliding

Round 2 - Technical 

(1 Question)

  • Q1. Interview asking 2 coding questions, such as Histogram max Area, Median of 2 sorted array

Interview Preparation Tips

Topics to prepare for ClearTax Software Developer interview:
  • Stack
  • Binary Search
  • Dynamic Programming
Interview preparation tips for other job seekers - The company asks too much, prefers circuital and hires less number of applicants out of 60 only 2 got the offer.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Round 1: DSA round asked Two DSA question in which one is Leetcode medium and another is leetcode Hard. I answer both of them but not selected in the further HR round.

Round 2: HR round

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Fundamental of javaScript
  • Q2. Fundamentals of React
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • React allows developers to create reusable UI components.

    • It uses a virtual DOM for efficient rendering.

    • React uses JSX, a syntax extension that allows mixing HTML with JavaScript.

    • State and props are used to manage data and pass information between components.

  • Answered by AI
Round 2 - Coding Test 

App was given to create

Skills evaluated in this interview

Sri Mookambika Infosolutions Interview FAQs

How many rounds are there in Sri Mookambika Infosolutions Java Developer interview?
Sri Mookambika Infosolutions interview process usually has 2 rounds. The most common rounds in the Sri Mookambika Infosolutions interview process are Aptitude Test and Coding Test.
How to prepare for Sri Mookambika Infosolutions Java Developer 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 Sri Mookambika Infosolutions. The most common topics and skills that interviewers at Sri Mookambika Infosolutions expect are AWS, Agile, Java, Microservices and MongoDB.

Tell us how to improve this page.

Sri Mookambika Infosolutions Java Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 101 Interviews
Softenger Interview Questions
4.1
 • 52 Interviews
DataMetica Interview Questions
3.5
 • 44 Interviews
ClearTax Interview Questions
3.4
 • 39 Interviews
Damco Solutions Interview Questions
3.9
 • 38 Interviews
View all

Sri Mookambika Infosolutions Java Developer Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

2.9

Skill development

2.1

Work-life balance

3.5

Salary

2.4

Job security

2.5

Company culture

3.5

Promotions

2.5

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
42 salaries
unlock blur

₹3.1 L/yr - ₹13.7 L/yr

Senior Software Engineer
41 salaries
unlock blur

₹5.5 L/yr - ₹16 L/yr

Associate Technical Leader
38 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Technical Lead
20 salaries
unlock blur

₹8.5 L/yr - ₹25.8 L/yr

Software Developer
12 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Explore more salaries
Compare Sri Mookambika Infosolutions with

Tekwissen

4.8
Compare

Softenger

4.1
Compare

XcelServ Solutions

4.5
Compare

Damco Solutions

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