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

I applied via Recruitment Consultant and was interviewed in May 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core python, flask, django

Interview Preparation Tips

Interview preparation tips for other job seekers - Initially you will have 1 or 2 rounds of technical discussion and they ask you to leave and say you will have a client discussion . But dont attend the interview with this company. There is a person called Ramakrishna prasad koya (*****) who is a delivery manager. He is one of the useless person you will ever meet. He is the one coordinating with the client. He never picks your call even after u call 100 times. Such an irresponsible manager. Even after giving the interview he dont say your feedback properly. Atlast after calling him from different no's and messaging him please confirm feedback, he gave me.
My suggestion dint go to Tech M if you listen the name Ramakrishna Koya.

I applied via Recruitment Consultant and was interviewed in May 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Core python, flask, Django

Interview Preparation Tips

Interview preparation tips for other job seekers - Initially you will have 1 or 2 rounds of technical discussion and they ask you to leave and say you will have a client discussion . But dont attend the interview with this company. There is a person called Ramakrishna prasad koya (*****) who is a delivery manager. He is one of the useless person you will ever meet. He is the one coordinating with the client. He never picks your call even after u call 100 times. Such an irresponsible manager. Even after giving the interview he dont say your feedback properly. Atlast after calling him from different no's and messaging him please confirm feedback, he gave me.
My suggestion dint go to Tech M if you listen the name Ramakrishna Koya.

I applied via Company Website and was interviewed before Dec 2021. 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 

Numerical, comprehension, verbal, aptitude

Round 3 - Coding Test 

Python code I written and to pass test cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing to give an advice please do hard an be positive and self motivate yourself

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

Interview Questionnaire 

1 Question

  • Q1. How to prepare for interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical round

I applied via Walk-in and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What questions asking in python

Interview Preparation Tips

Interview preparation tips for other job seekers - Please give me interview tips

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, Angularjs, Javascript, MongoDB and Performance Tuning.
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.5k 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
 • 2.9k Interviews
Zoho Interview Questions
4.3
 • 505 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
InsanelyGood Interview Questions
4.1
 • 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

₹0 L/yr - ₹0 L/yr

Software Development Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Cloud Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 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