Upload Button Icon Add office photos

Filter interviews by

Coriolis Technologies Interview Questions and Answers

Updated 5 Mar 2025

Coriolis Technologies Interview Experiences

Popular Designations

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

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
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

Member Technical Staff Engineer Interview Questions asked at other Companies

Q1. Find maximum element in array
View answer (1)
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

    Senior Devops Engineer Interview Questions asked at other Companies

    Q1. What are Terraform life cycles ? and how do we use them ?
    View answer (3)
    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).

    Member Technical Staff Interview Questions asked at other Companies

    Q1. Next Smallest Palindrome Problem Statement Find the next smallest palindrome strictly greater than a given number 'N' represented as a string 'S'. Explanation: You are given a number in string format, and your task is to determine the small... read more
    View answer (1)

    Coriolis Technologies interview questions for popular designations

     Python Developer

     (1)

     Member Technical Staff

     (1)

     Member Technical Staff Engineer

     (1)

     Software Developer

     (1)

     Senior Devops Engineer

     (1)

     Intern

     (1)

    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

    Software Developer Interview Questions asked at other Companies

    Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
    View answer (43)

    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.

    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 appeared for an interview before Nov 2016.

    Interview Questionnaire 

    1 Question

    • Q1. Tell about yourself.
    • Ans. 

      I am a dedicated and experienced consultant with a strong background in problem-solving and client management.

      • Over 5 years of experience in consulting roles

      • Skilled in analyzing data and providing strategic recommendations

      • Excellent communication and interpersonal skills

      • Proven track record of successfully managing client relationships

      • Strong ability to work in fast-paced environments and meet deadlines

    • Answered by AI

    Interview Preparation Tips

    Round: Resume Shortlist
    Experience: I wasn't thinking of joining there, Came along with a friend, so thought of giving it a try, Got my resume shortlisted and was asked to attend the second round.
    Tips: Be bold. Want something?, ask them, You wont be disappointed. Try to be more energetic when you talk, make the interviewer smile, you'll get through !!!

    Round: Test
    Experience: You'll get connected to someone in USA, through a phone call, That person will interview you.
    Tips: Try to be yourself, feel free, he/she is also a person like you , talk freely, but listen to what they're asking, response is yours , don't worry about your answer. Make them smile or try to make them think that it'd be fun to work with you.
    Duration: 1 hour
    Total Questions: 50

    Round: HR Interview
    Experience: Friendly people, They'll ask you something familiar, "tell about yourself". I told them about me , my passion and all those stuffs, Again left the place looking them smile.
    Tips: When this question is asked, many will tell something different like what they want to be, Just tell them whatever you feel at that moment . Feel Nervous, just let them know, They ain't gonna think bad!!!.

    Skills: Communication And Confidence

    I appeared for an interview in Sep 2016.

    Interview Questionnaire 

    4 Questions

    • Q1. Tell me about the Summer Project
    • Ans. 

      Developed a web application for tracking student attendance and performance

      • Used React.js for front-end development

      • Implemented RESTful APIs using Node.js and Express for back-end

      • Utilized MongoDB for database storage

      • Integrated authentication and authorization features for secure access

    • Answered by AI
    • Q2. Questions on Sql Dbms Java C
    • Q3. Basic Programming Question
    • Q4. Questions on hobbies and CV related

    Interview Preparation Tips

    Round: Technical Interview
    Experience: Use diagrams to describe your project and the interviewer should fully understand your project
    Tips: Be Clear and say things which you know

    Round: HR Interview
    Experience: She asked me about everything related to my hobbies.
    Tips: Don't lie about your Interests and Hobbies in CV. Know everything there is to know about the hobbies which you have specified.

    Skills: C Programming, Java Programming, SQL, Basic Knowledge Of DBMS, Problem Solving Abilties
    College Name: BP Poddar Institute OF Management & Technology

    I appeared for an interview before Jun 2016.

    Interview Questionnaire 

    3 Questions

    • Q1. Tell me about yourself ?
    • Ans. 

      I am a highly motivated and detail-oriented analyst with a strong background in data analysis and problem-solving.

      • I have a Bachelor's degree in Economics with a focus on statistical analysis

      • I have experience using various data analysis tools such as Excel, SQL, and Tableau

      • I have successfully completed several projects that involved analyzing large datasets to identify trends and make recommendations

      • I am a quick learner

    • Answered by AI
    • Q2. What do you know about the company?
    • Ans. 

      The company is a leading financial services firm specializing in investment banking and asset management.

      • Founded in 1869 by Marcus Goldman

      • Headquartered in New York City

      • Offers a wide range of financial services including mergers and acquisitions, underwriting, and wealth management

      • Known for its prestigious client base and high-profile deals

    • Answered by AI
    • Q3. When are you getting married?
    • Ans. 

      I am not currently planning to get married.

      • I am currently focused on my career and personal growth.

      • Marriage is not a priority for me at the moment.

      • I believe in taking the time to find the right partner before committing to marriage.

    • Answered by AI

    Interview Preparation Tips

    Round: Test
    Experience: PART ONE: Verbal Ability, uses of articles (a, an, the) and a RC. PART TWO: logical reasoning, standard IQ type Questions, was simple. PART THREE: An essay, one out of two, one choice was nuclear deal and the other was education system in India.


    Round: Technical Interview
    Experience: Some regular puzzles, easy one .Discussion on internship work

    College Name: IIT Kanpur

    I appeared for an interview before Jun 2016.

    Interview Preparation Tips

    Round: Video interview
    Experience: Tell about why to join cognizant

    Skills: Communication Networks, Communication

    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.

    Coriolis Technologies Interview Process

    based on 6 interviews

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.5k Interviews
    Infosys Interview Questions
    3.6
     • 7.6k Interviews
    Wipro Interview Questions
    3.7
     • 5.6k Interviews
    Cognizant 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
    Mphasis Interview Questions
    3.4
     • 797 Interviews
    View all

    Coriolis Technologies Reviews and Ratings

    based on 37 reviews

    4.5/5

    Rating in categories

    4.1

    Skill development

    4.5

    Work-life balance

    3.8

    Salary

    4.5

    Job security

    4.4

    Company culture

    3.8

    Promotions

    4.2

    Work satisfaction

    Explore 37 Reviews and Ratings
    Member Technical Staff
    118 salaries
    unlock blur

    ₹6 L/yr - ₹21.4 L/yr

    Software Developer
    17 salaries
    unlock blur

    ₹4.3 L/yr - ₹15 L/yr

    Software Engineer
    11 salaries
    unlock blur

    ₹6 L/yr - ₹12 L/yr

    Java Developer
    9 salaries
    unlock blur

    ₹3.6 L/yr - ₹4.9 L/yr

    Golang Developer
    9 salaries
    unlock blur

    ₹8 L/yr - ₹9.5 L/yr

    Explore more salaries
    Compare Coriolis Technologies with

    Cognizant

    3.7
    Compare

    Sutherland Global Services

    3.6
    Compare

    Optum Global Solutions

    4.0
    Compare

    Hexaware Technologies

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