Upload Button Icon Add office photos

Filter interviews by

GreenClouds Software Developer Interview Questions, Process, and Tips

Updated 16 Sep 2021

GreenClouds Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Coding Round consists of 3 questions and time given to solve those questions was 6 hours. It give a 24 hour window in that we can give our test anytime. The questions are basically from arrays, Mathematical , Dynamic Programming

  • Q1. Nearest Multiple of 10

    You have been given an integer 'N'. Find the nearest multiple of 10 to the given integer 'N'.

    Note:
    If there are multiple answers, find the smallest one. For exampl...
  • Ans. Nearest two multiples

    Every integer has two candidates for the nearest multiple of 10. One is less than or equal to the given number and the other is greater than it.

    For example, if the given integer is N = 56, we have 50 and 60 as the candidates for the nearest multiple of 10. So, we will choose the nearest multiple by the following method:

     

    • We will calculate the value of N % 10. Say this value as X (i.e. X = N % 1...
  • Answered by CodingNinjas
  • Q2. Beautiful String

    Ninja has been given a binary string ‘STR’ containing either ‘0’ or ‘1’. A binary string is called beautiful if it contains alternating 0s and 1s.

    For Example:‘0101’, ‘1010’, ‘101’, ‘010...

  • Ans. Find All Possible Beautiful Strings

    We observe that for any length of the given string ‘STR’, there are only two possible beautiful strings ie: one starting with ‘1’ and the other starting with ‘0’.

     

    For example for ‘N’ = 4 , “1010” and “0101” are the only two possible beautiful strings.

    Now, we just need to count the different values at the same index in a possible beautiful string and given ’STR’.

     

    For example...

  • Answered by CodingNinjas
Round 2 - Video Call 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Easy

First of all interviewer asked very famous question of Interview i.e.
"Tell me about yourself"
I have given proper answer of this question including my achievements , internships and education.
The interviewer was very friendly . He kept motivating me till end of interview. He took me to the right approach in many questions.

  • Q1.  Alternate Print

    You have two strings “A” and “B”. Your task is to print these two strings in an alternative fashion according to indices i.e. first character of “A”, the first character of “B”, the second...

  • Ans. Recursive Approach

    The idea here is to use recursion and append characters one by one from A and B using a variable turn. If turn equals 0 then append character from A and if turn equals 1 then append character from B to answer. If we have appended all characters from one string, then append the remaining characters of the other string to answer.

     

    Steps : 

     

    1. Declare an empty string to store the alternative p...
  • Answered by CodingNinjas
  • Q2. OS Questions

    Have you worked on Linux OS?
    Tell me some commands in Linux. Which commands are used to create a file and write in it?
    If we want to print top 10 lines from a file which command will we use? ...

  • Ans. 

    Tip 1 : I generally prefer last minute notes from geeks for geek for quick revision . It covers most of the topics.
    Tip 2 : Refer generally asked questions in interviews for particular subject.
    Tip 3 : Make notes for the main subject topics for last revision.

  • Answered by CodingNinjas
  • Q3. OOPS Questions

    What is Inheritance and types of Inheritance. along with example of inheritance.
    What are access specifier in OOPS?
    What is default access specifier of class?
    What is the difference between clas...

  • Ans. 

    Tip 1 : Go through the main features of OOPS Encapsulation , Inheritance etc
    Tip 2 : Practice examples of each feature
    Tip 3 : Read E Balaguruswamy for better understanding of OOPs

  • Answered by CodingNinjas
Round 3 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

This was Technical + HR both round. I were asked technical as well as HR related Questions
Again the interviewer was very friendly . He treated me very well and help me out in many questions.
I got a great experience from this interview. Overall It was a good learning for me.

  • Q1. Puzzle

    If we toss 1 coin three times one by one then what will the probability of getting heads all the time.
     

  • Ans. 

    Tip 1 : Do practice these some generally asked Mathematics concepts
    Tip 2 : Keep revising things.

  • Answered by CodingNinjas
  • Q2. Kth largest element in the unsorted array

    You are given an array consisting of 'N' distinct positive integers and a number 'K'. Your task is to find the kth largest element in the array.

    E...
  • Ans. Brute Force
    • The most obvious brute force approach would be to sort the array in descending order and return the ‘K’th element from the beginning of the array.
    • Sort the array in descending order, for sorting most of the languages have their inbuilt sort methods which are usually very fast.
    • After sorting, return the element arr['K'-1](i.e. element at index ‘K’-1, considering 0-based indexing).
    Space Complexity: O(1)Explanati...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in UsaEligibility criteriaabove 60%GreenClouds interview preparation:Topics to prepare for the interview - Object Oriented Programming, Data structure and Algorithms, Database management, System, Operating System, Data Communication and networks , Machine learning or any new technologyTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Solve and answer the questions with a calm mind.
Tip 2 : You should know each and every word of your Resume.
Tip 3 : Have confidence in yourself 
Tip 4 : Prepare yourself for the question "Tell me about yourself"

Application resume tips for other job seekers

Tip 1 : Follow chronological resume format
Tip 2 : Include only the most relevant information and put the most important information first
Tip 3 : Description of your project should be short and sweet.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Software Developer Interview Questions & Answers

Optum user image Preeti Charishma

posted on 26 Nov 2024

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

Aptitude, core concepts and a code

Round 2 - HR 

(2 Questions)

  • Q1. What is the one thing you learnt from college club?
  • Ans. 

    I learned the importance of teamwork and collaboration from my college club.

    • Developed strong communication skills by working with diverse group of individuals

    • Learned how to delegate tasks effectively to achieve common goals

    • Gained experience in problem-solving and conflict resolution through group projects

  • Answered by AI
  • Q2. What is the one thing you want to expereince?
  • Ans. 

    I want to experience living in a different country and immersing myself in a new culture.

    • Traveling to a foreign country and learning about their customs and traditions

    • Trying new foods and experiencing different ways of life

    • Making friends with locals and exploring the local attractions

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Difference between relational and non relational dbms
  • Ans. 

    Relational DBMS stores data in tables with predefined relationships, while non-relational DBMS stores data in flexible, schema-less formats.

    • Relational DBMS uses structured query language (SQL) for querying data

    • Non-relational DBMS can store data in various formats like key-value pairs, document-based, graph databases

    • Relational DBMS ensures data integrity through normalization and constraints

    • Non-relational DBMS offers be...

  • Answered by AI
  • Q2. Difference betweeen class,abstract class,interface in python
  • Ans. 

    Class is a blueprint for creating objects, abstract class cannot be instantiated and can have abstract methods, interface is a contract for classes to implement certain methods.

    • Class is a blueprint for creating objects with attributes and methods.

    • Abstract class cannot be instantiated and can have abstract methods that must be implemented by subclasses.

    • Interface is a contract for classes to implement certain methods, bu

  • Answered by AI
  • Q3. Project related questions were asked

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic DSA from the hacker rank website

Round 2 - Technical 

(1 Question)

  • Q1. Basic to medium questions on javascript, nodejs, MySQL joints, html5 tags
Round 3 - Technical 

(1 Question)

  • Q1. Real life problems, Use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Full stack developer role. Be strong at real time implementations and use cases
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Technology advantage or not

Round 2 - Aptitude Test 

All aptitude topics,logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,2 coding questions
  • Q2. Palindrome,even number
Round 4 - HR 

(2 Questions)

  • Q1. What do you know
  • Q2. Do you have any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Similar to tcs,infosys pattern
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency Injection?
  • Ans. 

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

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. How to handle exception in java
  • Ans. 

    In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Use multiple catch blocks to handle different types of exceptions

    • Use finally block to execute code regardless of whether an exception is thrown or not

    • Throw custom exceptions using throw keyword

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In Java8, different between flatmap and map
  • Ans. 

    map transforms each element in a stream, while flatMap transforms each element into multiple elements

    • map applies a function to each element in a stream and returns a new stream of the results

    • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

    • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.split(

  • Answered by AI
  • Q2. How to handle the ConcureentModificationException
  • Ans. 

    ConcurrentModificationException occurs when a collection is modified while iterating over it.

    • Use Iterator to iterate over the collection instead of foreach loop.

    • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

    • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Difference between linked list and array list
  • Ans. 

    Linked list is a data structure where elements are stored in nodes with pointers to the next node. Array list is a dynamic array that can grow or shrink in size.

    • Linked list allows for efficient insertion and deletion of elements anywhere in the list.

    • Array list provides fast access to elements using index, but slower insertion and deletion compared to linked list.

    • Example: Linked list - 1 -> 2 -> 3 -> 4 -> 5, Array list

  • Answered by AI
  • Q2. Difference between @controller and @ Rest controller
  • Ans. 

    The @Controller annotation is used for traditional MVC controllers, while @RestController is used for RESTful web services.

    • The @Controller annotation is used to define a class as a Spring MVC controller, which can handle HTTP requests and return a view.

    • The @RestController annotation is used to define a class as a controller for RESTful web services, which can handle HTTP requests and return data in JSON or XML format.

    • T...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is OOPS ?
  • Ans. 

    OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.

    • OOPS focuses on creating objects that contain data and methods to manipulate that data.

    • It allows for encapsulation, inheritance, and polymorphism.

    • Examples of OOPS languages include Java, C++, and Python.

  • Answered by AI
  • Q2. What is Dependency Injection
  • Ans. 

    Dependency Injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by mocking dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Example: Constructor injection, Setter injection

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Which Architechture does you project build by?
  • Q2. What is Normalization in sql?
  • Ans. 

    Normalization in SQL is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a table into smaller tables and defining relationships between them.

    • It helps in reducing data redundancy by storing data in a structured manner.

    • There are different normal forms like 1NF, 2NF, 3NF, and BCNF that define the level of normalization.

    • Example: If we have a t...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell about your self ?
  • Q2. Whom do you provide your first month salary ?

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Basic core java, reasoning,english

Round 2 - Coding Test 

Dsa question of arrays

Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Stacks and queues
  • Q3. Time complexity

Interview Preparation Tips

Topics to prepare for Nagarro Software Developer interview:
  • java
  • dsa
  • arrays
  • stacks
  • queue
  • dbms
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Linkedlist questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Depth Os and C
  • Q2. Multi threading and semaphores
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics of angular, ts,js
Round 2 - One-on-one 

(1 Question)

  • Q1. Programming questions
Round 3 - HR 

(1 Question)

  • Q1. Family backgroud

Tell us how to improve this page.

GreenClouds Software Developer Salary
based on 4 salaries
₹5 L/yr - ₹6 L/yr
30% less than the average Software Developer Salary in India
View more details

GreenClouds Software Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

2.0

Skill development

1.0

Work-Life balance

1.0

Salary & Benefits

3.0

Job Security

3.0

Company culture

1.0

Promotions/Appraisal

1.0

Work Satisfaction

Explore 1 Review and Rating
Software Developer
4 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Explore more salaries
Compare GreenClouds with

Teleperformance

3.9
Compare

FIS

3.9
Compare

Nagarro

4.0
Compare

Optum

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview