Upload Button Icon Add office photos
Engaged Employer

i

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

Grasko Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Grasko Solutions Software Developer Interview Questions and Answers

Updated 1 Apr 2024

Grasko Solutions Software Developer Interview Experiences

2 interviews found

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

Multiple choice questions

Round 2 - Technical 

(1 Question)

  • Q1. C# basics, SQL query

Software Developer Interview Questions & Answers

user image VIPIN JAIRAJ

posted on 18 Oct 2023

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

I applied via Naukri.com and was interviewed before Oct 2022. There were 4 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 

Not very hard. Easy aptitude questions to check thinking process and approach towards problem. Problem solving skills is checked.

Round 3 - Technical 

(1 Question)

  • Q1. Asked technical questions: OOPS Concept, Reflection, Threading etc
Round 4 - Coding Test 

Very simple codes: String Manipulation, 2nd smallest from an Array, Reverse a string etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Please have a thorough knowledge of OOPS Concept and practice coding in Leetcode.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Validate Binary Tree Nodes Problem You are provided with 'N' bina ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

C,c++ questions and two coding questions. basic mcq

Round 2 - Technical 

(3 Questions)

  • Q1. Treeset, hashset difference
  • Ans. 

    TreeSet and HashSet are both implementations of the Set interface in Java, but they have some key differences.

    • TreeSet is a sorted set that maintains elements in ascending order, while HashSet does not guarantee any specific order.

    • TreeSet uses a Red-Black tree data structure for storage, which allows for efficient retrieval of elements in sorted order.

    • HashSet uses a hash table for storage, which provides constant-time p...

  • Answered by AI
  • Q2. Oops concept, dbms, programming questions
  • Q3. Set and treeset and hashset

Interview Preparation Tips

Topics to prepare for ResMed Software Developer interview:
  • DBMS
  • OOPS
Interview preparation tips for other job seekers - none

Skills evaluated in this interview

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

(2 Questions)

  • Q1. 1. Basic query questions was asked including concepts such as row number logic, update, delete etc. 2. What is materialized view in snowflake?
  • Q2. 1. What is database and schema in sql? 2. What is integration runtime in Azure Data Factory?
  • Ans. 

    1. Database is a collection of organized data, schema defines the structure of the database. 2. Integration Runtime in Azure Data Factory is a compute infrastructure used to move data.

    • Database is a collection of tables, indexes, views, and other objects that store and organize data.

    • Schema defines the structure of the database, including tables, columns, relationships, and constraints.

    • Integration Runtime in Azure Data F...

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Apr 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Dotnet, angular , azure

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go for Interview
Less pay
Rotational shift
Too much policies
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Explain workflow of hospital
  • Q2. What method can be used to send multiple facility data to a single application?
  • Ans. 

    Use APIs, message queues, or data aggregation techniques to send multiple facility data to a single application.

    • APIs: RESTful APIs can be used to send data from multiple facilities to a central application.

    • Message Queues: Tools like RabbitMQ or Kafka can handle data streams from various sources.

    • Data Aggregation: Use ETL (Extract, Transform, Load) processes to consolidate data from different facilities.

    • Webhooks: Facilit...

  • Answered by AI

Interview Questionnaire 

2 Questions

  • Q1. Core python
  • Q2. OOPS concept

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    The task is to check whether a given string is a palindrome or not, considering only alphabets and numbers and ignoring symbols and whitespaces.

    • Convert the string to lowercase and remove all symbols and whitespaces.

    • Reverse the modified string and compare it with the original string.

    • If they are equal, then the string is a palindrome.

    • If not, then the string is not a palindrome.

  • Answered by AI
  • Q2. 

    Square Root (Integral) Problem Statement

    Given a number N, calculate its square root and output the integer part only.

    Example:

    Input:
    18
    Output:
    4
    Explanation:

    The square root of 18 is approximate...

  • Ans. 

    The task is to find the integral part of the square root of a given number.

    • Use the built-in square root function to find the square root of the number.

    • Convert the result to an integer by rounding down or using the floor function.

    • Print the integer part of the square root as the output.

  • Answered by AI
  • Q3. 

    Min Steps to One Using Dynamic Programming

    Given a positive integer N, your task is to determine the minimum number of steps required to reduce N to 1.

    Allowed Operations:

    1) Subtract 1 from it: n = n -...
  • Ans. 

    The task is to find the minimum number of steps required to reduce a positive integer to 1 using three given operations.

    • Use dynamic programming to solve the problem efficiently.

    • Create an array to store the minimum steps required for each number from 1 to N.

    • Iterate from 2 to N and calculate the minimum steps for each number based on the three operations.

    • Return the minimum steps for N.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

They started Fundamentals of OOP- Inheritance, Polymorphism

  • 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]
    Out...
  • Ans. 

    The maximum sum of any contiguous subarray in an array is found using Kadane's algorithm in O(N) time.

    • Initialize two variables, maxSum and currentSum, both set to the first element of the array.

    • Iterate through the array from the second element.

    • For each element, update currentSum by adding the element to it.

    • If currentSum becomes negative, reset it to 0.

    • If currentSum is greater than maxSum, update maxSum.

    • After iterating ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Medium

Some people had two HR interviews but I only had one and interview went up till 11:30 pm and you get only 5-10 minutes to prepare for HR on Zoom

Interview Preparation Tips

Eligibility criteria7 cgpaMasterCard interview preparation:Topics to prepare for the interview - DBMS, Data Structures and Algorithms , OOP, Maths puzzles, Aptitude , CN, OSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Solve atleast 200 problems
Tip 2 : Focus on all data structures 
Tip 3 : Build some good projects

Application resume tips for other job seekers

Tip 1 : Keep it precise and concise.
Tip 2 : Build your resume yourself according your skills

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Basic to intermediate questions on data structures and django.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview process easy.

I applied via Naukri.com and was interviewed in Feb 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About the project, Spring concepts, core Java, JUnits etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, know what you are speaking, clear your mind before the interview and get your thoughts together.

Grasko Solutions Interview FAQs

How many rounds are there in Grasko Solutions Software Developer interview?
Grasko Solutions interview process usually has 3 rounds. The most common rounds in the Grasko Solutions interview process are Aptitude Test, Technical and Coding Test.
How to prepare for Grasko Solutions Software 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 Grasko Solutions. The most common topics and skills that interviewers at Grasko Solutions expect are .Net and C#.
What are the top questions asked in Grasko Solutions Software Developer interview?

Some of the top questions asked at the Grasko Solutions Software Developer interview -

  1. Asked technical questions: OOPS Concept, Reflection, Threading ...read more
  2. C# basics, SQL qu...read more

Tell us how to improve this page.

Grasko Solutions Software Developer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

XL Health Interview Questions
4.1
 • 19 Interviews
ResMed Interview Questions
3.7
 • 16 Interviews
Reventics Interview Questions
4.1
 • 16 Interviews
GENWORKS Health Interview Questions
3.2
 • 15 Interviews
View all
Grasko Solutions Software Developer Salary
based on 55 salaries
₹4 L/yr - ₹17.2 L/yr
15% more than the average Software Developer Salary in India
View more details

Grasko Solutions Software Developer Reviews and Ratings

based on 5 reviews

2.4/5

Rating in categories

2.4

Skill development

2.3

Work-life balance

3.2

Salary

3.1

Job security

2.3

Company culture

3.0

Promotions

2.0

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
99 salaries
unlock blur

₹5.4 L/yr - ₹18 L/yr

Software Developer
55 salaries
unlock blur

₹4 L/yr - ₹17.2 L/yr

QA Engineer
51 salaries
unlock blur

₹5.2 L/yr - ₹15.9 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹9.8 L/yr - ₹26 L/yr

Technical Writer
17 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Explore more salaries
Compare Grasko Solutions with

XL Health

4.1
Compare

Suburban Diagnostics

3.9
Compare

Sir Ganga Ram Hospital

4.0
Compare

Boston Scientific

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