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
3.6

based on 55 Reviews

Filter interviews by

Grasko Solutions Interview Questions, Process, and Tips

Updated 8 Aug 2024

Top Grasko Solutions Interview Questions and Answers

View all 7 questions

Grasko Solutions Interview Experiences

Popular Designations

10 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Jul 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. What is Mmeomization?
  • Ans. 

    Memoization is a technique used in programming to optimize performance by storing the results of expensive function calls and returning the cached result when the same inputs occur again.

    • Memoization helps reduce redundant calculations by storing the results of function calls in a cache

    • It is commonly used in dynamic programming and recursive algorithms to improve performance

    • Example: Fibonacci sequence calculation can be...

  • Answered by AI
  • Q2. What is Lazy loading?
  • Ans. 

    Lazy loading is a technique used in web development to defer loading of non-essential resources until they are needed.

    • Lazy loading helps improve page load times by only loading resources when they are required.

    • It is commonly used for images, videos, and other media files on websites.

    • Lazy loading can be implemented using JavaScript libraries like Intersection Observer or by using native browser features like loading='la

  • Answered by AI
  • Q3. What is Callback hell?
  • Ans. 

    Callback hell is a situation where multiple nested callbacks make the code difficult to read and maintain.

    • Occurs when multiple asynchronous operations are nested within each other

    • Can lead to unreadable and unmaintainable code

    • Can be avoided by using promises or async/await

  • Answered by AI
  • Q4. What is prop drilling?
  • Ans. 

    Prop drilling is the process of passing down props through multiple levels of components in React.

    • Prop drilling can lead to complex and hard-to-maintain code.

    • It can be avoided by using Context API or Redux for state management.

    • Example: Passing props from a parent component to a deeply nested child component through intermediate components.

  • Answered by AI
  • Q5. What is Dependency injection?
  • Ans. 

    Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Dependency injection helps in making components more modular and easier to test.

    • It promotes loose coupling between components.

    • There are three types of dependency injection - constructor injection, setter injection, and interface injection.

  • Answered by AI

Skills evaluated in this interview

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'ARR' of size 'N'. Write a solution to check if it could become non-decreasing by modifying at most 1 element. We define an array as non-decreasing, if ARR[i] <= ARR[i + 1] ho... read more
View answer (6)

Trainee Interview Questions & Answers

user image Anonymous

posted on 8 Aug 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round in online

Round 2 - Coding Test 

2nd round is techical round through Google meet. Some aptitude questions, coding questions, basic technical questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Some aptitude questions
  • Q2. Two coding questions and basic technical questions

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Can't reveal the interview questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Can't reveal the interview questions
Round 3 - HR 

(1 Question)

  • Q1. Can't reveal the interview questions

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)
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 Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java objects related
  • Q2. Oops related concepts
Round 2 - Case Study 

Scenario handling, design and implementation

Round 3 - HR 

(2 Questions)

  • Q1. Package discussion
  • Q2. Wfo policy discussed

Java Full Stack Developer Interview Questions asked at other Companies

Q1. Coding question - 1. Create a immutable class of orders. What happens when two objects are created out of it. 2.Using the immutable orders create a set of orders and how will you sort these out. 3.Given a List of list of string of integers ... read more
View answer (1)

Grasko Solutions interview questions for popular designations

 Senior Software Engineer

 (2)

 Software Developer

 (2)

 Front end Developer

 (1)

 Java Developer

 (1)

 Java Full Stack Developer

 (1)

 Junior Engineer - Quality Assurance

 (1)

 Software Engineer

 (1)

 Trainee

 (1)

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

I applied via Job Fair and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

50 questions on aptitude maths test

Round 2 - Technical 

(5 Questions)

  • Q1. Technical questions on SQL
  • Q2. JOIN table and basic questions on SQL
  • Q3. Java Basic questions
  • Q4. About project on college
  • Q5. Web application questions

Junior Engineer - Quality Assurance Interview Questions asked at other Companies

Q1. How do you automate filtering and validate it's been filtered as desired?
View answer (1)

I was interviewed in Jun 2022.

Round 1 - Aptitude Test 

Mostly on Quantitative and Logical reasoning

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about your self Oops Concepts Basic Programming like Print Fibonacci, Even num,etc
Round 3 - HR 

(1 Question)

  • Q1. Self intro, Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before you attend the interview

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Sep 2022. There were 4 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 - Aptitude Test 

40 aptitude questions basic

Round 3 - Technical 

(3 Questions)

  • Q1. Technical interview on oops concepts and .net / sql
  • Q2. Tell me about Quick sort
  • Ans. 

    Quick sort is a popular sorting algorithm that uses a divide-and-conquer approach to sort elements in an array.

    • Quick sort picks a 'pivot' element from the array and partitions the other elements into two sub-arrays according to whether they are less than or greater than the pivot.

    • It then recursively sorts the sub-arrays.

    • The pivot selection can greatly affect the efficiency of the algorithm. Commonly used methods includ...

  • Answered by AI
  • Q3. What is Join in SQL
  • Ans. 

    Join in SQL is used to combine rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables based on a related column

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Just basic introduction

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

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:
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 - 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

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 experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Oct 2022.

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 

Logical Apptitude verbal reasoning

Round 3 - Technical 

(1 Question)

  • Q1. Logical coding on c
Round 4 - HR 

(1 Question)

  • Q1. When we can join and company features

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

Grasko Solutions Interview FAQs

How many rounds are there in Grasko Solutions interview?
Grasko Solutions interview process usually has 2-3 rounds. The most common rounds in the Grasko Solutions interview process are Technical, Aptitude Test and HR.
How to prepare for Grasko Solutions 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 CSS, ASP.Net, Bootstrap, C# and CSS3.
What are the top questions asked in Grasko Solutions interview?

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

  1. What is Mmeomizati...read more
  2. What is Lazy loadi...read more
  3. What is Callback he...read more
How long is the Grasko Solutions interview process?

The duration of Grasko Solutions interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Grasko Solutions Interview Process

based on 13 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
XL Health Interview Questions
4.2
 • 18 Interviews
View all

Grasko Solutions Reviews and Ratings

based on 55 reviews

3.6/5

Rating in categories

3.1

Skill development

3.2

Work-life balance

4.0

Salary

4.0

Job security

3.0

Company culture

3.8

Promotions

3.1

Work satisfaction

Explore 55 Reviews and Ratings
Software Engineer
100 salaries
unlock blur

₹5.4 L/yr - ₹17.5 L/yr

Software Developer
53 salaries
unlock blur

₹4 L/yr - ₹16.3 L/yr

QA Engineer
51 salaries
unlock blur

₹4.8 L/yr - ₹15.2 L/yr

Senior Software Engineer
31 salaries
unlock blur

₹9.3 L/yr - ₹26 L/yr

Technical Writer
18 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Explore more salaries
Compare Grasko Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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