Upload Button Icon Add office photos

Filter interviews by

cloudEQ Full Stack Developer Interview Questions and Answers

Updated 11 Jan 2025

cloudEQ Full Stack Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic question on js used from interviewbit

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. Explain fibonnaci series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • The series starts with 0 and 1, and each subsequent number is the sum of the previous two numbers.

    • The formula for nth term of Fibonacci series is Fn = Fn-1 + Fn-2

    • The series goes like this: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, 233, 377, 610, 987, 1597, 2584, 4181, 6765, 10946, 17711, 28657, 46368, 75025, 121393, 196...

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website

Interview Questionnaire 

2 Questions

  • Q1. What are the advantages of soft ware engineering?
  • Ans. 

    Software engineering offers numerous advantages in terms of efficiency, scalability, and maintainability.

    • Efficiency: Software engineering practices help in optimizing code and improving performance.

    • Scalability: Proper software engineering enables the development of scalable systems that can handle increasing workloads.

    • Maintainability: Well-structured software is easier to maintain, debug, and enhance over time.

    • Reusabil...

  • Answered by AI
  • Q2. Which course u prefer to join in software company?

Interview Preparation Tips

Interview preparation tips for other job seekers - tenision free and well displain

Interview Preparation Tips

Round: Test
Experience: It was great and quite easy as most of the questions were on logical reasoning and basic grammer
Tips: dont waste ur time on single question be as quick as u can
Duration: 80 minutes
Total Questions: 170

Round: Technical Interview
Experience: Basic question from all the subjects ie. OS data structure and major question were on final year project
Tips: be prepare to answer anything asked about ur project

Round: HR Interview
Experience: the most easiest round of all. few basic situation will be placed and they will chec

College Name: RAMRAO ADIK INSTITUTE OF TECHNOLOGY

Interview Questionnaire 

7 Questions

  • Q1. Given a string. Write a program to form a string with first character of all words
  • Ans. 

    Program to form a string with first character of all words in a given string.

    • Split the string into an array of words

    • Iterate through the array and extract the first character of each word

    • Join the extracted characters to form the final string

  • Answered by AI
  • Q2. Given a number n, find the number just greater than n using same digits as that of n
  • Ans. 

    Given a number n, find the number just greater than n using same digits as that of n

    • Convert the number to a string and sort the digits in ascending order

    • Starting from the rightmost digit, find the first digit that is smaller than the digit to its right

    • Swap this digit with the smallest digit to its right that is greater than it

    • Sort the digits to the right of the swapped digit in ascending order

    • Concatenate the digits to

  • Answered by AI
  • Q3. Given two numbers represented by two linked lists, write a function that returns sum list. The sum list is linked list representation of addition of two input numbers
  • Ans. 

    Function to add two numbers represented by linked lists and return the sum list.

    • Traverse both linked lists and add corresponding nodes, keeping track of carry

    • Create a new linked list to store the sum

    • Handle cases where linked lists are of different lengths

    • Handle cases where the sum has an extra digit due to carry

    • Return the sum linked list

  • Answered by AI
  • Q4. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player ...
  • Ans. 

    The player who picks the last coin loses the game.

    • The game starts with n coins.

    • Each player can pick 1 to 5 coins in one turn.

    • The player who picks the last coin loses the game.

    • Determine if the given n coins will result in a win or loss for the starting player.

  • Answered by AI
  • Q5. Given a sorted array of 0’s and 1’s. Find out the no. of 0’s in it. Write recursive, iterative versions of the code and check for all test cases
  • Ans. 

    Count the number of 0's in a sorted array of 0's and 1's.

    • Iterative solution: Traverse the array and count the number of 0's.

    • Recursive solution: Divide the array into two halves and recursively count the number of 0's in each half.

    • Binary search can also be used to find the first occurrence of 0 and then count the number of 0's after that index.

  • Answered by AI
  • Q6. Recursive code to reverse a linked list(Handle all corner cases: when list has no nodes or contains a single node)
  • Ans. 

    Reverse a linked list using recursion, handling all corner cases

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null or the list contains only one node, return the head

    • Recursively call the function with the next node as input and set its next pointer to the current node

    • Set the current node's next pointer to null and return the new head

  • Answered by AI
  • Q7. Write a function to check whether a binary tree is a sub-tree of another binary tree (Check for all corner cases)
  • Ans. 

    Write a function to check whether a binary tree is a sub-tree of another binary tree (Check for all corner cases)

    • Create a function that traverses both trees and compares them

    • Check if the root of the second tree matches any node in the first tree

    • Handle cases where one or both trees are empty

    • Handle cases where the trees have different structures

  • Answered by AI

Interview Preparation Tips

General Tips: my interview experience with Amazon for internship. Hope it helps.I got internship offer from them.
Skills: Algorithm, data structure
College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a Junior Software Developer with a passion for coding and problem-solving.

    • I have a Bachelor's degree in Computer Science.

    • I have experience in programming languages such as Java, C++, and Python.

    • I have worked on various projects during my studies, including developing a web application for a local business.

    • I am familiar with software development methodologies like Agile and Scrum.

    • I am a quick learner and enjoy stay...

  • Answered by AI
  • Q2. Why do u want to join TCS
  • Q3. What languages do you know
  • Q4. What are the certifications you have
  • Q5. Final year project details

Interview Preparation Tips

Round: Technical Interview
Experience: It was a very good experience.The questions were good

Skills:
College Name: Vidyalankar Institute Of Technology
Motivation: TCS is one of the best IT firms that undertakes many projects for contributing to the society and I wish to join TCS so that I can be a part of this team and contribute my bit to developement

Interview Questionnaire 

6 Questions

  • Q1. Where do u stay?
  • Q2. How many members are in your family?
  • Q3. Which programming languages you know?
  • Q4. What is difference between java and C?
  • Ans. 

    Java is an object-oriented language while C is a procedural language.

    • Java is platform-independent while C is platform-dependent.

    • Java has automatic garbage collection while C requires manual memory management.

    • Java has built-in support for multithreading while C requires external libraries.

    • Java has a larger standard library compared to C.

    • Java is more secure than C due to its strong type checking and exception handling.

    • C ...

  • Answered by AI
  • Q5. What projects you did?
  • Ans. 

    I have worked on various projects including a web application for a retail company and a mobile app for a fitness tracking system.

    • Developed a web application for a retail company to manage inventory and sales.

    • Created a mobile app for a fitness tracking system that allows users to track their workouts and set goals.

    • Contributed to a team project for a social media platform, implementing features like user authentication

  • Answered by AI
  • Q6. Tell me about your final year project

Interview Preparation Tips

Round: Technical Interview
Experience: Good.
Tips: Be confidance

General Tips: Be confidance
Skills: Java Programming, C Programming, Basics Of Computer Science
College Name: Vidyalankar Institute Of Technology

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. On a range of 10, how much would you rate yourself
  • Q2. Speak about yourself
  • Q3. Speak about your projects
  • Q4. Why TCS
  • Ans. 

    TCS is a leading global IT services company with a strong reputation and diverse opportunities for growth.

    • TCS has a strong reputation in the IT industry

    • TCS offers diverse opportunities for growth and learning

    • TCS has a global presence and works with top clients

    • TCS provides a supportive and collaborative work environment

    • TCS values innovation and encourages employees to think creatively

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Tips: Study your resume thoroughly.
Read about the company before handed.

General Tips: Stay Confident.
Skills: Confidence, Ability To Convince
College Name: Vidyalankar Institute Of Technology

Interview Questionnaire 

2 Questions

  • Q1. Explain about your project
  • Q2. Explain AM, PM & FM
  • Ans. 

    AM, PM, and FM are abbreviations used in timekeeping and radio broadcasting.

    • AM stands for Ante Meridiem and refers to the time from midnight to noon.

    • PM stands for Post Meridiem and refers to the time from noon to midnight.

    • FM stands for Frequency Modulation and is a method used in radio broadcasting to transmit audio signals.

    • AM and PM are used to differentiate between morning and afternoon/evening time.

    • FM is used to dif...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Was nice to be with a interviewer who calmed me down when i was nervous.
Tips: Stay calm and stick to your preparations.

Skill Tips: Prepare C language well.
Skills: Object Oriented Programming (OOP) Basics
College Name: Vidyalankar Institute Of Technology
Motivation: Mr Ratan Tata

Interview Questionnaire 

6 Questions

  • Q1. Tell me about yourself
  • Q2. Favorite subject?
  • Ans. 

    Computer Science

    • Algorithms and data structures

    • Software development methodologies

    • Programming languages

  • Answered by AI
  • Q3. Why IT company even though you are from other background?
  • Q4. What is CMOS?
  • Ans. 

    CMOS stands for Complementary Metal-Oxide-Semiconductor. It is a type of technology used in electronic devices.

    • CMOS is a type of semiconductor technology used in microprocessors, memory chips, and other electronic devices.

    • It uses both p-type and n-type metal-oxide-semiconductor field-effect transistors (MOSFETs) to reduce power consumption and increase speed.

    • CMOS is commonly used in digital circuits, such as in compute...

  • Answered by AI
  • Q5. What are delays? How to avoid delays?
  • Ans. 

    Delays are interruptions or setbacks in a process. They can be avoided by proper planning and communication.

    • Identify potential delays and plan for them

    • Communicate effectively with team members and stakeholders

    • Use project management tools to track progress and identify issues

    • Address issues promptly to prevent further delays

    • Continuously evaluate and improve processes to minimize delays

  • Answered by AI
  • Q6. Any idea about current affairs in IT industry?

Interview Preparation Tips

Round: HR Interview
Experience: Good experience. HR person was kind and they make sure that you are comfortable while talking.
Tips: do not be nervous. If you are nervous then take your time.

Round: Technical Interview
Experience: Good when asked questions about core field but couldn't answer IT related questiones.
Tips: Do not bluff. Tell that you dont know if you don't know

Skills: Confidence
College Name: Vidyalankar Institute Of Technology
Funny Moments: I said that I will do anything to keep my family away from financial crisis. Then after few seconds I mentioned anything in the sense "Legally". Interviewee laughed.

cloudEQ Interview FAQs

How many rounds are there in cloudEQ Full Stack Developer interview?
cloudEQ interview process usually has 1 rounds. The most common rounds in the cloudEQ interview process are Technical.
How to prepare for cloudEQ Full Stack 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 cloudEQ. The most common topics and skills that interviewers at cloudEQ expect are Python, MySQL, Agile, C# and Coding.

Tell us how to improve this page.

cloudEQ Full Stack Developer Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more
Devops Engineer
50 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Software Engineer
22 salaries
unlock blur

₹4 L/yr - ₹7.2 L/yr

Project Manager
11 salaries
unlock blur

₹7 L/yr - ₹17 L/yr

Cloud Security Engineer
7 salaries
unlock blur

₹4.5 L/yr - ₹6 L/yr

Cloud Operations Manager
6 salaries
unlock blur

₹18.7 L/yr - ₹24 L/yr

Explore more salaries
Compare cloudEQ with

TCS

3.7
Compare

Accenture

3.8
Compare

Cognizant

3.7
Compare

Infosys

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