Upload Button Icon Add office photos

Coriolis Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Coriolis Technologies Interview Questions and Answers

Updated 5 Mar 2025
Popular Designations

10 Interview questions

An Intern was asked 3mo ago
Q. What SQL query can be used to retrieve names with a length of 5 characters?
Ans. 

Use the SQL LENGTH function to filter names with exactly 5 characters from a database table.

  • Use the SQL SELECT statement to retrieve data from a table.

  • Utilize the LENGTH function to check the length of the name column.

  • Example query: SELECT name FROM users WHERE LENGTH(name) = 5;

View all Intern interview questions
An Intern was asked 3mo ago
Q. What are the different types of languages used in SQL?
Ans. 

SQL includes various language types for data manipulation, definition, control, and transaction management.

  • Data Query Language (DQL): Used for querying data. Example: SELECT * FROM table_name;

  • Data Definition Language (DDL): Used for defining database structures. Example: CREATE TABLE table_name (...);

  • Data Manipulation Language (DML): Used for manipulating data. Example: INSERT INTO table_name VALUES (...);

  • Data Con...

View all Intern interview questions
An Intern was asked 3mo ago
Q. What is the difference between pass by reference and pass by value?
Ans. 

Pass by reference means passing the address of a variable, while pass by value means passing a copy of the variable's value.

  • Pass by value creates a copy of the variable's value. Example: int a = 5; function(a); // a remains 5.

  • Pass by reference passes the variable's address. Example: int a = 5; function(&a); // a can be modified inside the function.

  • In pass by value, changes made to the parameter do not affect t...

View all Intern interview questions
An Intern was asked 3mo ago
Q. Write Python code to check if a string is a palindrome.
Ans. 

This code checks if a given string is a palindrome, meaning it reads the same forwards and backwards.

  • A palindrome is a word, phrase, or sequence that reads the same backward as forward. Example: 'radar'.

  • To check for palindromes, we can compare the string to its reverse.

  • We can ignore spaces, punctuation, and capitalization for a more robust check.

  • Example code: `def is_palindrome(s): return s == s[::-1]`.

View all Intern interview questions
An Intern was asked 3mo ago
Q. What is the difference between a deep copy and a shallow copy?
Ans. 

Deep copy creates a new object with copies of nested objects, while shallow copy copies references to nested objects.

  • Shallow copy: Copies the object but not the nested objects. Example: Using `copy()` in Python.

  • Deep copy: Creates a new object and recursively copies all nested objects. Example: Using `deepcopy()` in Python.

  • Modifying a nested object in a shallow copy affects the original object.

  • Modifying a nested ob...

View all Intern interview questions
A Senior Devops Engineer was asked
Q. How do you partition a CentOS Linux machine?
Ans. 

To partition a CentOS Linux machine, you can use tools like fdisk or parted to create, delete, and manage partitions on the disk.

  • Use fdisk command to create, delete, and manage partitions on the disk

  • Use parted command for more advanced partitioning options

  • Make sure to backup important data before partitioning

View all Senior Devops Engineer interview questions
A Senior Devops Engineer was asked
Q. How do you check installed software on an Ubuntu machine?
Ans. 

To check installed softwares in Ubuntu machine, you can use the dpkg command.

  • Use dpkg -l to list all installed packages

  • Use dpkg -l | grep to search for specific packages

  • Use dpkg -l | less to view the list page by page

View all Senior Devops Engineer interview questions
Are these interview questions helpful?
A Senior Devops Engineer was asked
Q. If storage is full, what steps do you take on on-premises servers?
Ans. 

When storage is full on on-premises servers, consider deleting unnecessary files, archiving old data, expanding storage capacity, or optimizing storage usage.

  • Identify and delete unnecessary files or logs to free up space

  • Archive old data that is not frequently accessed

  • Expand storage capacity by adding more disks or upgrading existing ones

  • Optimize storage usage by compressing files or moving them to a different loca...

View all Senior Devops Engineer interview questions
A Senior Devops Engineer was asked
Q. What is LVM in servers?
Ans. 

LVM stands for Logical Volume Manager and is a tool used for managing disk storage in Linux servers.

  • LVM allows for dynamic resizing of logical volumes without downtime.

  • It provides features like snapshots, striping, mirroring, and thin provisioning.

  • LVM is commonly used in server environments to manage storage efficiently.

  • Example: Creating a new logical volume, resizing an existing logical volume.

View all Senior Devops Engineer interview questions
A Senior Devops Engineer was asked
Q. How do you configure a static IP address for an on-premise server?
Ans. 

To keep a static IP for an on-premise server, configure the network settings on the server and the DHCP server.

  • Assign a static IP address to the server within the network range

  • Configure the DHCP server to reserve the static IP address for the server's MAC address

  • Ensure that the server's network settings are set to use the static IP address

  • Update DNS records if necessary to reflect the new static IP address

View all Senior Devops Engineer interview questions

Coriolis Technologies Interview Experiences

6 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2025

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

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(7 Questions)

  • Q1. What SQL query can be used to retrieve names with a length of 5 characters?
  • Ans. 

    Use the SQL LENGTH function to filter names with exactly 5 characters from a database table.

    • Use the SQL SELECT statement to retrieve data from a table.

    • Utilize the LENGTH function to check the length of the name column.

    • Example query: SELECT name FROM users WHERE LENGTH(name) = 5;

  • Answered by AI
  • Q2. Basic searching, sorting algorithms like insertion sort, bubble sort
  • Q3. Write python code to check palindromes
  • Ans. 

    This code checks if a given string is a palindrome, meaning it reads the same forwards and backwards.

    • A palindrome is a word, phrase, or sequence that reads the same backward as forward. Example: 'radar'.

    • To check for palindromes, we can compare the string to its reverse.

    • We can ignore spaces, punctuation, and capitalization for a more robust check.

    • Example code: `def is_palindrome(s): return s == s[::-1]`.

  • Answered by AI
  • Q4. Can you explain a project you worked on?
  • Ans. 

    I developed a mobile app to help users track their daily water intake and stay hydrated.

    • Conducted user research to identify hydration habits and needs.

    • Designed a user-friendly interface with intuitive navigation.

    • Implemented features like reminders and progress tracking.

    • Utilized feedback from beta testers to improve functionality.

    • Collaborated with a team of developers to ensure smooth deployment.

  • Answered by AI
  • Q5. What is the difference between a deep copy and a shallow copy?
  • Ans. 

    Deep copy creates a new object with copies of nested objects, while shallow copy copies references to nested objects.

    • Shallow copy: Copies the object but not the nested objects. Example: Using `copy()` in Python.

    • Deep copy: Creates a new object and recursively copies all nested objects. Example: Using `deepcopy()` in Python.

    • Modifying a nested object in a shallow copy affects the original object.

    • Modifying a nested object ...

  • Answered by AI
  • Q6. What are the different types of languages used in SQL?
  • Ans. 

    SQL includes various language types for data manipulation, definition, control, and transaction management.

    • Data Query Language (DQL): Used for querying data. Example: SELECT * FROM table_name;

    • Data Definition Language (DDL): Used for defining database structures. Example: CREATE TABLE table_name (...);

    • Data Manipulation Language (DML): Used for manipulating data. Example: INSERT INTO table_name VALUES (...);

    • Data Control ...

  • Answered by AI
  • Q7. What is the difference between pass by reference and pass by value?
  • Ans. 

    Pass by reference means passing the address of a variable, while pass by value means passing a copy of the variable's value.

    • Pass by value creates a copy of the variable's value. Example: int a = 5; function(a); // a remains 5.

    • Pass by reference passes the variable's address. Example: int a = 5; function(&a); // a can be modified inside the function.

    • In pass by value, changes made to the parameter do not affect the or...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Linux Admin, server level, bash script
  • Q2. Docker build, kubernetes

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was very good. Made me very comfirtable
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jun 2023. There were 4 interview rounds.

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

Online test with 35 questions Mcq and 8 tasks. These consists of linux, java, python,
Tasks are like
1) create a cronjobs and take back up on every 7 day of month and other 5-6 tasks on cronjobs concept
2) create a process id and killing a PID. Like 3-4 tasks on this concept
3) create a directories a-z one inside the other and each directory cosists of files a. Txt.. Till z. Txt
4) create a directories 1 -20 each should contain a. Txt to z. Txt
Even no. Directory should be 620 odd should be 741 permission like that
5) create a Git repo and pull the repo and
Add file and commit with message
6)
7)

Round 3 - Technical 

(2 Questions)

  • Q1. Completely from your resume and Testing automation...
  • Q2. Testing automation and on-premise issues
Round 4 - Technical 

(5 Questions)

  • Q1. What is LVM?? In servers
  • Ans. 

    LVM stands for Logical Volume Manager and is a tool used for managing disk storage in Linux servers.

    • LVM allows for dynamic resizing of logical volumes without downtime.

    • It provides features like snapshots, striping, mirroring, and thin provisioning.

    • LVM is commonly used in server environments to manage storage efficiently.

    • Example: Creating a new logical volume, resizing an existing logical volume.

  • Answered by AI
  • Q2. If storage is full what to do on on- premises servers
  • Ans. 

    When storage is full on on-premises servers, consider deleting unnecessary files, archiving old data, expanding storage capacity, or optimizing storage usage.

    • Identify and delete unnecessary files or logs to free up space

    • Archive old data that is not frequently accessed

    • Expand storage capacity by adding more disks or upgrading existing ones

    • Optimize storage usage by compressing files or moving them to a different location

  • Answered by AI
  • Q3. How to do partition in centos linux machine
  • Ans. 

    To partition a CentOS Linux machine, you can use tools like fdisk or parted to create, delete, and manage partitions on the disk.

    • Use fdisk command to create, delete, and manage partitions on the disk

    • Use parted command for more advanced partitioning options

    • Make sure to backup important data before partitioning

  • Answered by AI
  • Q4. How to check installed softwares in ubuntu machine
  • Ans. 

    To check installed softwares in Ubuntu machine, you can use the dpkg command.

    • Use dpkg -l to list all installed packages

    • Use dpkg -l | grep to search for specific packages

    • Use dpkg -l | less to view the list page by page

  • Answered by AI
  • Q5. How to keep static ip for onpremise server?
  • Ans. 

    To keep a static IP for an on-premise server, configure the network settings on the server and the DHCP server.

    • Assign a static IP address to the server within the network range

    • Configure the DHCP server to reserve the static IP address for the server's MAC address

    • Ensure that the server's network settings are set to use the static IP address

    • Update DNS records if necessary to reflect the new static IP address

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Coriolis Technologies Senior Devops Engineer interview:
  • Linux Administration
  • Linux System Administration
  • Computers basics
  • Storage
  • Networking
  • Computer Hardware
  • Computer Networking
  • DiskPartitions
Interview preparation tips for other job seekers - Mostly questions will be on basic hardware and storage issues on-premises servers

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jun 2022. There were 5 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 

Written round had 30+mcq which were based on core java, hibernate, sql and springboot. The level of mcq was medium hard, and 2coding questions were of medium level.

Round 3 - Technical 

(1 Question)

  • Q1. Basic core java and springboot interview with some output questions.
Round 4 - Technical 

(1 Question)

  • Q1. Technical interview with coding Be sure to read about multi threading and exeption handling in detail it will help you
Round 5 - HR 

(1 Question)

  • Q1. Basic questions along with some technical questions and they check your understanding of previous projects you have worked on...

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice work environment and really nice teams.
There are not many people in office so you get to know each other very well. (Most people are working from home).
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Maths and basic coding questions

Round 2 - Coding Test 

Project-related questions, C programme, pointer questions, linked list, trees traversal and DS. LCM and GCD.

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on basic programming questions and DSA

Interview Questionnaire 

4 Questions

  • Q1. 1.queue question
  • Q2. 2.basic question from django .addtion of element using django question
  • Q3. 3.DNS management system
  • Q4. 4.about Your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Cool and be prepared for ds very well.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Coriolis Technologies?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. What is Company payroll Process
  • Ans. 

    Company payroll process is the system used to manage employee compensation and benefits.

    • Payroll process includes calculating employee salaries, taxes, and deductions

    • It also involves managing employee benefits such as health insurance and retirement plans

    • Payroll process can be done in-house or outsourced to a third-party provider

    • It is important to ensure compliance with labor laws and regulations

    • Payroll process can be a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My Team members is very good
Are these interview questions helpful?

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java 8, J2EE, Spring, SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - There were four rounds. Technical written, two technical f2f rounds, coding test.

All the best

I applied via Campus Placement and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data srructures

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident revise data structures ,

Coriolis Technologies Interview FAQs

How many rounds are there in Coriolis Technologies interview?
Coriolis Technologies interview process usually has 2-3 rounds. The most common rounds in the Coriolis Technologies interview process are Technical, Resume Shortlist and Aptitude Test.
How to prepare for Coriolis 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 Coriolis Technologies. The most common topics and skills that interviewers at Coriolis Technologies expect are Troubleshooting, Angularjs, Bootstrap, CSS and Development.
What are the top questions asked in Coriolis Technologies interview?

Some of the top questions asked at the Coriolis Technologies interview -

  1. If storage is full what to do on on- premises serv...read more
  2. How to check installed softwares in ubuntu mach...read more
  3. How to keep static ip for onpremise serv...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 6 interview experiences

Difficulty level

Easy 40%
Moderate 60%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.7
 • 5.9k Interviews
EXL Service Interview Questions
3.7
 • 804 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 629 Interviews
UST Interview Questions
3.8
 • 544 Interviews
View all

Coriolis Technologies Reviews and Ratings

based on 39 reviews

4.5/5

Rating in categories

4.1

Skill development

4.5

Work-life balance

3.8

Salary

4.6

Job security

4.4

Company culture

3.7

Promotions

4.3

Work satisfaction

Explore 39 Reviews and Ratings
Member Technical Staff
124 salaries
unlock blur

₹8.3 L/yr - ₹17.2 L/yr

Software Developer
16 salaries
unlock blur

₹4.3 L/yr - ₹13.5 L/yr

Software Engineer
12 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Mts Software Engineer
12 salaries
unlock blur

₹8 L/yr - ₹18 L/yr

Golang Developer
10 salaries
unlock blur

₹8 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Coriolis Technologies with

Cognizant

3.7
Compare

EXL Service

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare
write
Share an Interview