Upload Button Icon Add office photos

Filter interviews by

Space-O Technologies Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. All employees having same salary in the smae department sql and pysprk
  • Q2. How to create pipeline in databricks
  • Ans. 

    To create a pipeline in Databricks, you can use Databricks Jobs or Apache Airflow for orchestration.

    • Use Databricks Jobs to create a pipeline by scheduling notebooks or Spark jobs.

    • Utilize Apache Airflow for more complex pipeline orchestration with dependencies and monitoring.

    • Leverage Databricks Delta for managing data pipelines with ACID transactions and versioning.

  • Answered by AI
  • Q3. Palindrome, 2nd char in every word make is to upper case, sql rank and dense rank releated questions , given 2 tables country and city we need to calculate total population in each continent by joining the...
  • Q4. String manuplation questions inpython

Interview Preparation Tips

Interview preparation tips for other job seekers - PRepare well on pyspark
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 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What is your work Experience
  • Ans. 

    I have 5 years of experience working as a mechanical engineer in the automotive industry.

    • 5 years of experience in mechanical engineering

    • Specialized in automotive industry

    • Worked on designing and testing vehicle components

    • Experience with CAD software for modeling and simulations

  • Answered by AI
  • Q2. Why am i looking for job change
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Looking for new challenges to enhance skills and knowledge

    • Seeking better career growth opportunities

    • Interested in exploring different work environments

    • Want to broaden professional network

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

(4 Questions)

  • Q1. What area i have covered testing
  • Ans. 

    I have covered testing in areas such as software development, quality assurance, and system integration.

    • Software testing methodologies such as unit testing, integration testing, and regression testing

    • Quality assurance processes to ensure software meets requirements and standards

    • System integration testing to verify that different components work together seamlessly

  • Answered by AI
  • Q2. What type of testing i have experience for
  • Ans. 

    I have experience with various types of testing including unit testing, integration testing, system testing, and regression testing.

    • Unit testing: Testing individual components or functions of the software in isolation.

    • Integration testing: Testing how different components work together.

    • System testing: Testing the entire system as a whole.

    • Regression testing: Testing to ensure that new code changes do not adversely affect

  • Answered by AI
  • Q3. What is functional & Non functional Testing
  • Ans. 

    Functional testing ensures that the software functions as intended, while non-functional testing focuses on performance, usability, and security.

    • Functional testing checks if the software meets the specified requirements.

    • Non-functional testing evaluates aspects like performance, scalability, reliability, and security.

    • Examples of functional testing include unit testing, integration testing, and system testing.

    • Examples of...

  • Answered by AI
  • Q4. Give positive & Negative Example for a scenario in testing
  • Ans. 

    Positive & Negative testing scenario examples

    • Positive example: Testing a login form with valid credentials should allow the user to access the system

    • Negative example: Testing a login form with invalid credentials should display an error message

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

(2 Questions)

  • Q1. What will you do if you face challenge in job
  • Ans. 

    I will approach the challenge methodically, seek help if needed, and work towards finding a solution.

    • Assess the challenge and break it down into smaller tasks

    • Research and gather information to understand the problem better

    • Consult with colleagues or supervisors for advice or guidance

    • Experiment with different solutions and adapt as needed

    • Stay persistent and focused on finding a resolution

  • Answered by AI
  • Q2. What process you will follow for a critical Issue you find
  • Ans. 

    I will follow a systematic approach to identify, analyze, prioritize, and resolve the critical issue.

    • Identify the critical issue and gather all relevant information

    • Analyze the root cause of the issue and its impact on the system

    • Prioritize the critical issue based on severity and potential impact

    • Develop a plan of action to resolve the issue efficiently

    • Implement the solution and monitor its effectiveness

    • Document the enti

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Volansys Technologies Engineer interview:
  • Functional Testing
  • Agile Testing
Interview preparation tips for other job seekers - Remember every details of your CV. Keep answer process oriented.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Swift Medium-Level Question
  • Q2. DSA Question - LCP
Round 2 - Technical 

(2 Questions)

  • Q1. Asking Question Related about CRM, etc.
  • Q2. Related about chat design APP

Interview Preparation Tips

Interview preparation tips for other job seekers - The First Round was good, The Interviewer was good ask questions about iOS-related stuff DSA.
The second Round was not good. IDK my luck is bad or the Interviewer was a little bit arrogant. So yeah after 2 questions my mood was like not giving proper answers to questions. I want to just close this meeting ASAP. If someone doesn't know about this technology at least give him/her a chance to work on that maybe he will be fruitful in that time.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Reverse string in java
  • Ans. 

    Reverse a string in Java using StringBuilder or iterative approach.

    • Use StringBuilder to reverse the string: StringBuilder sb = new StringBuilder(str); sb.reverse().toString();

    • Iterative approach: Convert the string to char array, swap characters from start and end indexes until middle is reached.

  • Answered by AI
  • Q2. Write the xpath for MakeMyTrip datepicker
  • Ans. 

    The xpath for MakeMyTrip datepicker can be written using unique attributes of the datepicker element.

    • Use unique attributes like class, id, or data-testid to locate the datepicker element

    • Consider the structure of the datepicker and its parent elements when writing the xpath

    • Use indexes or sibling relationships if necessary to pinpoint the datepicker element

  • Answered by AI
  • Q3. SQL query for order all the employees in ascending order
  • Ans. 

    Use SQL query with ORDER BY clause to order employees in ascending order.

    • Use SELECT statement to retrieve employee data

    • Add ORDER BY clause with the column you want to order by

    • Specify ASC keyword for ascending order

    • Example: SELECT * FROM employees ORDER BY employee_id ASC;

  • Answered by AI
  • Q4. Difference between smoke and sanity testing
  • Ans. 

    Smoke testing is a subset of regression testing, focusing on basic functionality, while sanity testing is a subset of acceptance testing, focusing on specific areas.

    • Smoke testing is performed to check if the critical functionalities of the application are working fine after changes.

    • Sanity testing is performed to check if the specific areas of the application are working fine after changes.

    • Smoke testing is a shallow and...

  • Answered by AI
  • Q5. Right positive or negative coupon code based on minimum amount and maximum amount
  • Ans. 

    Generate a coupon code based on minimum and maximum amount

    • Determine the range of amounts for the coupon code

    • Generate a random code within that range

    • Assign positive or negative based on the criteria

  • Answered by AI
  • Q6. Basic git commands

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Give me your introduction?
  • Ans. 

    Experienced Email Marketing Executive with a proven track record of driving engagement and conversions through targeted campaigns.

    • Over 5 years of experience in creating and executing email marketing strategies

    • Proficient in email automation tools such as Mailchimp and HubSpot

    • Strong analytical skills to track and optimize campaign performance

    • Successfully increased open rates by 20% through A/B testing

    • Excellent communicat

  • Answered by AI
  • Q2. What are the strategies involved in email marketing?
  • Ans. 

    Email marketing strategies involve segmentation, personalization, automation, and analytics.

    • Segmentation: Divide email list based on demographics, behavior, etc.

    • Personalization: Customize emails with recipient's name, preferences, etc.

    • Automation: Set up automated email campaigns for timely and relevant communication.

    • Analytics: Track open rates, click-through rates, conversions, etc. to measure success.

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

I applied via campus placement at CV Raman Polytechnic, Bhubaneswar and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

The aptitude round was easy consisting of three sections

Round 2 - Aptitude Test 

The second aptitude test was conducted by the HR of the company.

Round 3 - One-on-one 

(3 Questions)

  • Q1. Behaviour based questions
  • Q2. Situation based questions
  • Q3. Aptitude based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep practicing aptitude
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain the entire process of SMT
  • Ans. 

    SMT (Surface Mount Technology) is a process used in electronics manufacturing to mount electronic components directly onto the surface of a printed circuit board (PCB).

    • Components are placed onto the PCB using pick-and-place machines.

    • Solder paste is applied to the pads on the PCB.

    • The PCB is then heated in a reflow oven to melt the solder and create a permanent connection.

    • Inspection is done to ensure all components are p...

  • Answered by AI
  • Q2. Explain the line efficiency increasing methods.
  • Ans. 

    Line efficiency can be increased through methods such as optimizing processes, reducing downtime, improving maintenance practices, and implementing automation.

    • Optimizing processes by identifying bottlenecks and implementing improvements

    • Reducing downtime by scheduling maintenance during off-peak hours

    • Improving maintenance practices to prevent breakdowns and delays

    • Implementing automation to streamline operations and redu

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple map question basically it was frequency based sorting

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain about oops
  • Ans. 

    Object-oriented programming paradigm where data and behavior are encapsulated within objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: ability for a class to inherit properties and behavior from another class

    • Polymorphism: ability for objects of different classes to respond to the same method call

  • Answered by AI
  • Q2. Tell me about the threads in Operating system
  • Ans. 

    Threads in operating system are lightweight processes that share the same memory space and resources.

    • Threads allow for concurrent execution within a single process

    • Threads share the same memory space, allowing for efficient communication and data sharing

    • Threads can be created and managed by the operating system or by the application itself

    • Examples of threading models include user-level threads and kernel-level threads

  • Answered by AI

Skills evaluated in this interview

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 Aug 2024. There were 4 interview rounds.

Round 1 - Group Discussion 

Round 1 group discussion

Round 2 - Aptitude Test 

Round 2 aptitude test

Round 3 - Coding Test 

Pls SQL basing theory questions and 2 programs factorial and exceptional handling

Round 4 - Technical 

(1 Question)

  • Q1. Basic technical questions expecting little higher
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell us about yourself?
  • Ans. 

    I am a seasoned executive with over 15 years of experience in leading teams and driving business growth.

    • Started my career in marketing and gradually moved up to executive roles

    • Led cross-functional teams to successfully launch new products

    • Implemented strategic initiatives to increase revenue and market share

    • Strong track record of building and maintaining relationships with key stakeholders

  • Answered by AI
  • Q2. Why did you choose Digital Marketing as your career?
  • Ans. 

    I chose Digital Marketing as my career because of its dynamic nature, creativity, and the opportunity to reach a global audience.

    • Passion for creativity and innovation in marketing strategies

    • Interest in leveraging technology to reach target audiences

    • Excitement for analyzing data and optimizing campaigns for better results

    • Opportunity to work with diverse clients and industries

    • Ability to make a measurable impact on busine

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Flexsin Technologies Executive interview:
  • On-page Optimization
  • SEO
  • Communication Skills
  • Effective Communication Skills
  • SEO Analysis
Interview preparation tips for other job seekers - Give the interview confidently.

Space-O Technologies Interview FAQs

How to prepare for Space-O Technologies 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 Space-O Technologies. The most common topics and skills that interviewers at Space-O Technologies expect are Project Management, Consulting, PDF, Javascript and MySQL.

Tell us how to improve this page.

Interview Questions from Similar Companies

Affine Interview Questions
3.5
 • 48 Interviews
Techugo Interview Questions
4.1
 • 4 Interviews
View all

Space-O Technologies Reviews and Ratings

based on 73 reviews

3.9/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.1

Salary

3.8

Job security

3.9

Company culture

3.9

Promotions

3.9

Work satisfaction

Explore 73 Reviews and Ratings
Head of Social Media Marketing | Space-O

Ahmedabad

7-12 Yrs

Not Disclosed

AI Engineer

Ahmedabad

3-5 Yrs

Not Disclosed

Growth Marketing Manager | Space-O Technologies

Ahmedabad

7-12 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
21 salaries
unlock blur

₹4.2 L/yr - ₹13 L/yr

Senior IOS Developer
17 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Software Engineer
14 salaries
unlock blur

₹3 L/yr - ₹6.4 L/yr

Business Analyst
14 salaries
unlock blur

₹2.2 L/yr - ₹5.6 L/yr

IOS Developer
12 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Explore more salaries
Compare Space-O Technologies with

RapidValue Solutions

4.1
Compare

Hidden Brains InfoTech

3.8
Compare

SPARX IT Solutions

3.7
Compare

Sphinx Solution

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