Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Celestial Technologies Team. If you also belong to the team, you can get access from here

Celestial Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Celestial Technologies Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between Deferred revenue and unbilled revenue.
  • Q2. Scenario-based question related to revenue recognition.
  • Q3. Discussion over past experience
Round 2 - Aptitude Test 

More about leadership talk, behavioral analysis, and scenario-based questions.

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Project Experience and end to end architecture
  • Ans. 

    I have experience working on projects with end-to-end architecture, including design, development, testing, and deployment.

    • Designed and implemented scalable AWS architectures using services like EC2, S3, Lambda, API Gateway, etc.

    • Developed applications using AWS SDKs and integrated with other AWS services.

    • Performed testing and debugging of applications on AWS infrastructure.

    • Deployed applications on AWS using CI/CD pipel...

  • Answered by AI
  • Q2. PySpark Coding question to Extract Transform & Load
  • Q3. Cost Optimization on Snowflake
  • Ans. 

    Cost optimization on Snowflake involves utilizing features like virtual warehouses, auto-suspend, and resource monitoring.

    • Utilize virtual warehouses efficiently based on workload requirements

    • Enable auto-suspend to automatically pause warehouses when not in use

    • Monitor resource usage and adjust configurations accordingly

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. Project end to end
  • Q2. How to connect to a share point database
  • Ans. 

    To connect to a SharePoint database, you can use SharePoint's REST API or Microsoft Graph API.

    • Use SharePoint's REST API to interact with SharePoint data through standard HTTP requests.

    • Authenticate using OAuth tokens to access SharePoint resources securely.

    • Utilize Microsoft Graph API for a unified endpoint to access data across Microsoft services.

    • Ensure proper permissions are set up for the application accessing the Sha

  • Answered by AI
  • Q3. Normalization & de normalization
  • Q4. Questions on SQL Joins
  • Q5. Question to find the 2nd highest salary using window function
  • Ans. 

    Use window function to find 2nd highest salary in SQL

    • Use the ROW_NUMBER() function to assign a unique row number to each row based on the salary in descending order

    • Filter the results where the row number is 2 to get the 2nd highest salary

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Why are you looking for a job change
  • Q2. How was the experience at previous company
  • Q3. Expected CTC at Scatterpie
  • Ans. 

    Expected CTC at Scatterpie

    • Research industry standards for AWS Developer roles at Scatterpie

    • Consider your experience, skills, and qualifications

    • Factor in location, company size, and benefits package

    • Negotiate based on market trends and personal value

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It had 2 technical rounds, 30 min each and 1 HR round. Given it is a startup they have budget constraints and do not communicate well.

Skills evaluated in this interview

Director- Reseach Interview Questions & Answers

Market Xcel Data Matrix user image Radha Garg

posted on 28 Feb 2025

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - HR 

(2 Questions)

I have already added the questions.

  • Q1. Can you provide a description of your previous work experience?
  • Q2. What were the reasons for leaving your previous job?
Round 2 - One-on-one 

(1 Question)

  • Q1. What are your salary expectations?
Round 3 - Assignment 

Crafting a proposal for a potential client.

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

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

Round 1 - Aptitude Test 

It is a test of total 150+ questions in which we have some java pseudocodes ,python ,aptitude reasoning questions as well and english questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Short inteoduction and project discussion.
  • Q2. Check the given sentence is palindrome or not by taking input by user.
  • Q3. Final,Finally,finalize keywords
Round 3 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Q2. Soft skills and other basic questions

Interview Preparation Tips

Topics to prepare for Modak Analytics Software Development Engineer interview:
  • Java core
  • MySQL
  • Project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Assignment 

Market Research Questions

Round 2 - Technical 

(1 Question)

  • Q1. What is market research
  • Ans. 

    Market research is the process of gathering, analyzing, and interpreting information about a market, including customers, competitors, and industry trends.

    • Involves collecting data on customer preferences, buying habits, and market trends

    • Helps businesses make informed decisions about product development, pricing, and marketing strategies

    • Includes techniques such as surveys, focus groups, and data analysis

    • Examples: conduc...

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

(1 Question)

  • Q1. Why do you want to join our company?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Mar 2024.

Round 1 - HR 

(2 Questions)

  • Q1. About skills and experience
  • Q2. About knowledge
Round 2 - Assignment 

Submitted a case study

Round 3 - One-on-one 

(1 Question)

  • Q1. With senior and global management

Interview Preparation Tips

Interview preparation tips for other job seekers - Do a background research on the role. Prepare well. Be honest.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is coalesce
  • Ans. 

    Coalesce is a function used to return the first non-null value in a list of expressions.

    • Coalesce function is commonly used in SQL to handle null values.

    • It takes multiple arguments and returns the first non-null value.

    • Example: COALESCE(column1, column2, 'default') will return the value of column1 if not null, else column2, and if both are null, it will return 'default'.

  • Answered by AI
  • Q2. What is repartition
  • Ans. 

    Repartition is the process of redistributing data across partitions in a distributed system.

    • Repartitioning helps in balancing the workload and improving performance in distributed computing environments.

    • It involves moving data between partitions based on certain criteria such as key values or hash functions.

    • Repartitioning can be done in Spark using operations like repartition() or coalesce().

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Non repeatable character
  • Ans. 

    A non repeatable character is a character that appears only once in a given string.

    • Iterate through the string and count the frequency of each character

    • Identify the characters that have a frequency of 1

    • Return the first non repeatable character found

  • Answered by AI
  • Q2. Sort list without sort method
  • Ans. 

    Sort list without using sort method

    • Create a custom sorting function using loops

    • Compare each element with every other element to determine the correct order

    • Swap elements based on the comparison results

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Past Experience and Work profile
  • Q2. Future plan and work strategy in Axis My India.
  • Ans. 

    My future plan in Axis My India is to implement data-driven strategies for accurate predictions and expand our reach in untapped regions.

    • Implement data-driven strategies to improve accuracy of predictions

    • Expand reach in untapped regions through targeted marketing campaigns

    • Enhance customer engagement through personalized communication

    • Invest in research and development for innovative solutions

    • Collaborate with local partn

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

(2 Questions)

  • Q1. Past Experience And Work profile in previous organization
  • Q2. Basic question from your work experience
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What are your strengths
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Assignment 

Report writing- you have to present a market research overview on any of industry you can visit on their website for same

Round 2 - HR 

(2 Questions)

  • Q1. Analyse market trends
  • Ans. 

    Market trends can be analyzed by examining consumer behavior, industry reports, and economic indicators.

    • Examine consumer behavior through surveys and focus groups

    • Review industry reports and forecasts for insights

    • Monitor economic indicators such as GDP growth and inflation rates

    • Look for emerging technologies or innovations that could impact the market

    • Consider geopolitical events or regulatory changes that may influence

  • Answered by AI
  • Q2. Guest estimate for any industry
  • Ans. 

    Guest estimate for any industry refers to the practice of predicting the number of guests or customers a business may expect to receive within a certain period of time.

    • Consider historical data and trends to make an educated guess

    • Take into account external factors such as seasonality, holidays, and economic conditions

    • Utilize forecasting models or software to help with the estimation process

  • Answered by AI

Tell us how to improve this page.

Interview Questions from Similar Companies

Jasper Colin Interview Questions
4.2
 • 23 Interviews
GfK MODE Interview Questions
3.3
 • 22 Interviews
Modak Analytics Interview Questions
4.1
 • 22 Interviews
AXIS MY INDIA Interview Questions
3.8
 • 16 Interviews
Decision Point Interview Questions
4.1
 • 13 Interviews
View all
Compare Celestial Technologies with

AXIS MY INDIA

3.8
Compare

Jasper Colin

4.2
Compare

GfK MODE

3.3
Compare

Edward Food Research and Analysis Centre

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