Upload Button Icon Add office photos

Filter interviews by

Corestack Interview Questions, Process, and Tips

Updated 6 May 2023

Top Corestack Interview Questions and Answers

View all 6 questions

Corestack Interview Experiences

Popular Designations

5 interviews found

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

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Nov 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 - Aptitude Test 

Normal Math Quants, Verbal and Logical ability questions. This round actually comprises of both Aptitude and Coding

Round 3 - Technical 

(5 Questions)

  • Q1. Questions about cloud, What do you understand by cloud ?, What's the importance of it?
  • Q2. Python coding question - Write a code for Fibonacci series.
  • Ans. 

    Code for Fibonacci series in Python.

    • Use a loop to iterate through the series

    • Start with 0 and 1 as the first two numbers

    • Add the previous two numbers to get the next number

    • Repeat until desired number of terms is reached

  • Answered by AI
  • Q3. Python conceptual questions
  • Q4. What is an CIDR block? why is it used ?what is the range of CIDR block?
  • Ans. 

    CIDR block is a method of allocating IP addresses and routing Internet Protocol packets.

    • CIDR stands for Classless Inter-Domain Routing.

    • It is used to allocate IP addresses and route Internet Protocol packets.

    • CIDR block is a combination of an IP address and its associated network mask.

    • CIDR notation is used to represent the CIDR block, for example, 192.168.0.0/16.

    • The range of CIDR block varies depending on the network mas

  • Answered by AI
  • Q5. Introduce yourself in a few lines.

Interview Preparation Tips

Interview preparation tips for other job seekers - - Be straight to the point
- Don't Fumble around
- Be thorough with your concepts.

Skills evaluated in this interview

Junior Software Engineer Interview Questions asked at other Companies

Q1. If there are 10 ball 2 red, 5 blue ,3 orange and one ball is picked randomly what is probability that the ball picked is red?
View answer (2)

Team Lead Interview Questions & Answers

user image Anonymous

posted on 4 Apr 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. On design patterns and how to Apply them
Round 3 - Technical 

(1 Question)

  • Q1. On current project design
Round 4 - HR 

(1 Question)

  • Q1. Why you want to join us

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared on what is put up in resume and explain them well

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)
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 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 - Coding Test 

Python coding and aptitude, moderate

Round 3 - Group Discussion 

Technology based topics, went on for 20 mins

Round 4 - Technical 

(2 Questions)

  • Q1. All python based questions , in depth concepts and asked for code for questions
  • Q2. Questions based on methods, constructors, oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Didnt get an offer, but the interviewer was friendly

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. How to create a class in Python? Explain Inheritance.
  • Ans. 

    Creating a class in Python involves defining attributes and methods. Inheritance allows a class to inherit attributes and methods from a parent class.

    • To create a class, use the 'class' keyword followed by the class name and a colon

    • Define attributes using the '__init__' method

    • Define methods within the class using the 'def' keyword

    • Inheritance is achieved by defining a child class that inherits from a parent class using t...

  • Answered by AI
  • Q2. How is memory management done in Python?
  • Ans. 

    Python uses automatic memory management through garbage collection.

    • Python uses reference counting to keep track of objects in memory.

    • When an object's reference count reaches zero, it is deleted by the garbage collector.

    • Python also uses a cyclic garbage collector to detect and delete circular references.

    • Memory can be managed manually using the ctypes module.

    • Python's memory management is efficient but can lead to perform

  • Answered by AI
  • Q3. What is PEP ? Tell me more about PEP8.
  • Ans. 

    PEP stands for Python Enhancement Proposal. PEP8 is a style guide for Python code.

    • PEP is a process for proposing and discussing new features and changes to Python.

    • PEP8 is a style guide for Python code, covering topics such as naming conventions, indentation, and whitespace.

    • PEP8 is not mandatory, but following it can make code more readable and consistent.

    • Examples of PEP8 guidelines include using four spaces for indenta...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Willing to shift to Chennai Location?
  • Ans. 

    Yes, I am willing to shift to Chennai location.

    • I am open to relocation and excited about new opportunities.

    • I have researched about Chennai and its culture and feel comfortable with it.

    • I have family/friends in Chennai or nearby areas which makes it easier for me to relocate.

    • I am willing to adapt to the new environment and make the most of the experience.

  • Answered by AI
  • Q2. Why Corestack? Explain Corestack Business.
  • Ans. 

    Corestack is a cloud automation and orchestration platform that helps enterprises manage their cloud infrastructure.

    • Corestack provides a unified dashboard for managing multiple cloud platforms.

    • It offers automation and orchestration capabilities to simplify cloud management.

    • Corestack also provides governance and compliance features to ensure security and regulatory compliance.

    • Some of Corestack's customers include Wipro,

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Corestack Python Developer interview:
  • Python Developer

Skills evaluated in this interview

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)

Corestack interview questions for popular designations

 Python Developer

 (3)

 Junior Software Engineer

 (1)

 Team Lead

 (1)

I applied via Naukri.com and was interviewed in Oct 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1.Python based questions (OOPs, Datastructure)?
  • Q2. 2.Project based questions?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through your projects and have your hardest problem and the method to solve in mind .Be honest with your answer practice yourself with Leet code and Hacker rank .

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)

Interview questions from similar companies

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Company profile
  • Q2. What is travel and tourism
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is a dmc?
  • Q2. Disadvantages faced by a dmc
Round 3 - One-on-one 

(2 Questions)

  • Q1. Criteria based questions
  • Q2. Situation handling questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Jodhpur

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction yourself in details covering each points
  • Ans. 

    Experienced cluster manager with a proven track record in team leadership and strategic planning.

    • Over 5 years of experience in managing multiple teams and projects simultaneously

    • Strong leadership skills with the ability to motivate and inspire team members

    • Expertise in strategic planning and execution to achieve organizational goals

    • Excellent communication and interpersonal skills for effective team collaboration

    • Proven t...

  • Answered by AI
  • Q2. Location can be for new hotels for max revenue
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Coding Test 

Core Java, Spring boot, Hibernate, MySQL

Round 2 - One-on-one 

(2 Questions)

  • Q1. Technical Questions
  • Q2. Logic Problems
Round 3 - One-on-one 

(2 Questions)

  • Q1. Logic Problems solving (face to face interview)
  • Q2. Personality check

Interview Preparation Tips

Interview preparation tips for other job seekers - The candidate who are strong in tech and get the opportunity!
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant

Round 1 - One-on-one 

(4 Questions)

  • Q1. Talk about your work experience. Detailed questions about projects that I worked on.
  • Q2. Why are you interested in switching.
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic field.

    • Interested in leveraging my skills and experience in a new environment

    • Excited about the potential to work on innovative products

    • Looking for opportunities to expand my knowledge and expertise

  • Answered by AI
  • Q3. Do you use any food delivery apps frequently? What would you improve in Swiggy?
  • Ans. 

    Yes, I frequently use food delivery apps like Swiggy.

    • I use Swiggy at least a few times a week for ordering food.

    • I appreciate the wide variety of restaurants and cuisines available on Swiggy.

    • Improvement suggestion: Enhance the user interface for a smoother ordering experience.

    • Improvement suggestion: Implement a more accurate delivery time estimation system.

    • Improvement suggestion: Offer more personalized recommendations

  • Answered by AI
  • Q4. What is northstar metric, what would be northstar metric for Swiggy
  • Ans. 

    Northstar metric is the key metric that drives the core value of a product. For Swiggy, the northstar metric could be Daily Active Users (DAU) or Orders per User.

    • Northstar metric is the single metric that best captures the core value that your product delivers to customers.

    • For Swiggy, the northstar metric could be Daily Active Users (DAU) as it represents the number of unique users who engage with the platform on a dai...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain what you worked on, how did you grow the adoption of the feature.
  • Ans. 

    I worked on improving the adoption of a new feature by conducting user research, implementing user feedback, and creating targeted marketing campaigns.

    • Conducted user research to understand user needs and preferences

    • Implemented user feedback to make necessary improvements to the feature

    • Created targeted marketing campaigns to promote the feature to the right audience

  • Answered by AI
  • Q2. Design product to manage risks during an event. Sub-question- How would this change if the target market is tier 3 cities in India

Interview Preparation Tips

Topics to prepare for Keka HR Payroll Software Product Manager interview:
  • Product growth
  • Hr tech
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was good , 2 questions are there to code.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Cs fundamental, Projects, coding.
  • Q2. A simple coding question of string using map
Round 3 - Technical 

(2 Questions)

  • Q1. What is React router. what does it do.
  • Ans. 

    React Router is a popular routing library for React applications.

    • React Router is used for handling navigation in React applications.

    • It allows defining multiple routes in the application and rendering different components based on the URL.

    • React Router provides components like BrowserRouter, Route, Switch, and Link for routing.

    • Example: will render the About component when the URL

  • Answered by AI
  • Q2. Questions based on react basics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patience you will do it easily.

Skills evaluated in this interview

Corestack Interview FAQs

How many rounds are there in Corestack interview?
Corestack interview process usually has 3-4 rounds. The most common rounds in the Corestack interview process are Resume Shortlist, Technical and HR.
How to prepare for Corestack 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 Corestack. The most common topics and skills that interviewers at Corestack expect are AWS, MongoDB, Performance Tuning, Python and Shell Scripting.
What are the top questions asked in Corestack interview?

Some of the top questions asked at the Corestack interview -

  1. What is an CIDR block? why is it used ?what is the range of CIDR blo...read more
  2. How to create a class in Python? Explain Inheritan...read more
  3. Python coding question - Write a code for Fibonacci seri...read more

Tell us how to improve this page.

Corestack Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 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
Zoho Interview Questions
4.3
 • 513 Interviews
Freshworks Interview Questions
3.5
 • 154 Interviews
InsanelyGood Interview Questions
4.0
 • 19 Interviews
View all

Corestack Reviews and Ratings

based on 21 reviews

3.1/5

Rating in categories

3.1

Skill development

2.8

Work-life balance

3.2

Salary

2.1

Job security

2.8

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 21 Reviews and Ratings
Python Developer
12 salaries
unlock blur

₹6.8 L/yr - ₹13 L/yr

Software Development Engineer
10 salaries
unlock blur

₹10 L/yr - ₹14 L/yr

Software Developer
7 salaries
unlock blur

₹7.2 L/yr - ₹15.1 L/yr

Developer
5 salaries
unlock blur

₹4.5 L/yr - ₹7.2 L/yr

Cloud Engineer
5 salaries
unlock blur

₹10.6 L/yr - ₹14.4 L/yr

Explore more salaries
Compare Corestack with

Freshworks

3.5
Compare

Zoho

4.3
Compare

LTIMindtree

3.8
Compare

TCS

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