Upload Button Icon Add office photos

Filter interviews by

Qubole Interview Questions and Answers

Updated 19 Nov 2020

Qubole Interview Experiences

2 interviews found

I applied via Company Website and was interviewed before Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Irrelevant now. Qubole was fantastic to work but it is recently acquired by Idera. Just go to glassdoor and see the reviews of idera. I have nothing else to say.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join this company now at any cost.
After acquisition, things are going downhill and one should not be surprised to see Qubole as a product vanishing from the market in next few months.

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Our employees have rated us 4 for Work-Life Balance on AmbitionBox

Interview Questions & Answers

user image Anonymous

posted on 21 May 2015

Interview Preparation Tips

Round: Test
Experience: Input:
Was csv files of fb users data.Questions for above Input:
1. Parse the data and build a graph.
2. Check if two users are friends.
3. Check if two users have a friend in common.
4. Find total mutual friends for a pair of users.
5. Find potential friends based on mutual friend count.
6. How will you do this for large datasets ?OO code was required which had a good design and was well commented.
Total Questions: 6

College Name: NA

Jobs at Qubole

View all

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Round 1: Online objective test.
There were questions from Operating Systems, C, Algorithms, Data Structures.

Round 2: Online and subjective (choose language C++ or JAVA). This round had 15 questions.
Data structures, C++ questions, Fibonacci optimisation, algorithms (DFS/BFS).

Round: Technical Interview
Experience: In the first round of interview they asked me questions about :1) My project (asked no. of classes and mention their responsibilities).
2) ACID properties of database and indexing in a database.

There were also questions related to OOPS concepts including polymorphism, composition, aggregation, inheritance, Abstract classes, interface; difference between usage of abstract class and interface, can abstract class be instantiated, how to access child class methods having reference of base class.
There was another question on run time and compile time binding and under which category do we classify method overloading and also questions on code for deleting the duplicate nodes in a sorted link list and printing root to leaf paths in a binary search tree.

Round: Technical Interview
Experience: This was the second round of the interview. They asked me the following questions,There is a tree (not binary) and all non-leaf nodes are RED in colour. Some leaf nodes are white in colour. If a node has all white coloured children then its colour can be changed into white. So we have to convert maximum number of nodes into white colour – write program for the same.
Code for checking whether a given binary tree balanced or not.
What are virtual functions, what is their role?
Questions related to virtual functions.

You are given the details of each transaction of each item i.e. item_name, quantity, price. So at the end of the day, you want top 50 items that have been sold. There are two cases:
In the first case you have fixed number of items.
In the second case very large number of items – so you need to decide what data structure to be used for this.

Round: Technical Interview
Experience: In the third round of the interview they asked questions like :
1) Types of tree traversals (breadth first and depth first (pre, post, in)
2) Determining width of binary tree i.e. using breadth wise traversal
3) Why files are preferred over databases?

College Name: IIT KANPUR

Interview Questionnaire 

11 Questions

  • Q1. Asked about my project? Also asked me questions about ACID properties of database and indexing in a database
  • Q2. There were also questions related to OOPS concepts including polymorphism, composition, aggregation, inheritance, Abstract classes, interface; difference between usage of abstract class and interface, can ...
  • Q3. There was another question on run time and compile time binding and under which category do we classify method overloading
  • Q4. Code for deleting the duplicate nodes in a sorted link list?
  • Ans. 

    Code to delete duplicate nodes in a sorted linked list

    • Traverse the linked list and compare adjacent nodes

    • If nodes are equal, delete one of them

    • Repeat until all duplicates are removed

  • Answered by AI
  • Q5. Printing root to leaf paths in a binary search tree
  • Ans. 

    Printing all root to leaf paths in a binary search tree

    • Traverse the tree recursively and keep track of the current path

    • When a leaf node is reached, add the current path to the list of paths

    • Print all the paths in the list

    • Use an array of strings to store the paths

  • Answered by AI
  • Q6. Given an Array of Integers, Find two elements in the array whose sum is closest to zero?
  • Ans. 

    Find two integers in an array whose sum is closest to zero.

    • Sort the array in ascending order.

    • Initialize two pointers at the beginning and end of the array.

    • Move the pointers towards each other until the sum is closest to zero.

  • Answered by AI
  • Q7. What are virtual functions, what is their role? Questions related to virtual functions?
  • Q8. You are given the details of each transaction of each item i.e. item_name, quantity, price. So at the end of the day, you want top 50 items that have been sold. There are two cases: - In the first case you...
  • Q9. How do you quickly count the number of set bits in a 32-bit integer in linear time (with respect to the number of set bits)?
  • Ans. 

    Count set bits in a 32-bit integer in linear time

    • Use bit manipulation to count set bits

    • Divide the integer into 16-bit chunks and count set bits in each chunk

    • Use lookup tables to count set bits in each 8-bit chunk

    • Use parallel processing to count set bits in multiple integers simultaneously

  • Answered by AI
  • Q10. Determining width of binary tree i.e. using breadth wise traversal
  • Ans. 

    To determine the width of a binary tree using breadth-wise traversal, we need to count the number of nodes at each level.

    • Perform a breadth-first traversal of the binary tree

    • Count the number of nodes at each level

    • Keep track of the maximum number of nodes seen at any level

    • Return the maximum number of nodes seen

  • Answered by AI
  • Q11. Why files are preferred over databases?
  • Ans. 

    Files are preferred over databases for certain types of data and applications.

    • Files are faster for small amounts of data.

    • Files are easier to manage and backup.

    • Files are more flexible for certain types of data, such as images or videos.

    • Databases are better for complex data relationships and queries.

    • Databases are more secure and scalable for large amounts of data.

    • The choice between files and databases depends on the spec

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were questions from Operating Systems, C, Algorithms, Data Structures

Round: Test
Experience: This round had 15 questions.Data structures, C++ questions, algorithms (DFS/BFS)

Skills: java, OOP, Algorithm
College Name: IIT KANPUR

Skills evaluated in this interview

I applied via Referral

Interview Questionnaire 

6 Questions

  • Q1. Your contribution in your projects?
  • Ans. 

    I have contributed to my projects by developing and implementing new features, fixing bugs, and improving overall performance.

    • Developed and implemented new features

    • Fixed bugs and issues

    • Improved overall performance

    • Collaborated with team members to ensure project success

    • Provided technical support and troubleshooting assistance

  • Answered by AI
  • Q2. How you resolve problems within team?
  • Ans. 

    I encourage open communication and collaboration to identify and solve problems within the team.

    • Encourage open communication and active listening

    • Identify the root cause of the problem

    • Brainstorm solutions as a team

    • Assign tasks and follow up on progress

    • Evaluate the effectiveness of the solution

    • Provide constructive feedback

    • Celebrate successes and learn from failures

  • Answered by AI
  • Q3. What are your expectations from the company?
  • Ans. 

    I expect a company that values innovation, growth opportunities, and work-life balance.

    • Opportunities for professional development and growth

    • A culture that encourages innovation and creativity

    • A healthy work-life balance

    • Clear communication and transparency

    • Competitive compensation and benefits

    • Collaborative and supportive team environment

  • Answered by AI
  • Q4. Do you have any plans of higher studies?
  • Ans. 

    Yes, I am planning to pursue a Master's degree in Computer Science.

    • I am interested in specializing in Artificial Intelligence.

    • I have already researched and shortlisted a few universities.

    • I plan to apply for the next academic year.

    • I believe higher studies will help me gain a deeper understanding of the field and advance my career.

  • Answered by AI
  • Q5. How flexible you are in professional life?
  • Ans. 

    I am very flexible in my professional life and can adapt to changing situations easily.

    • I am open to learning new technologies and skills

    • I can work in different environments and with different teams

    • I am willing to take on new challenges and responsibilities

    • I can adjust my work schedule to meet project deadlines

    • I am comfortable with remote work and flexible work arrangements

  • Answered by AI
  • Q6. Tell me about your self?
  • Ans. 

    I am a software engineer with experience in developing web applications and a passion for problem-solving.

    • Experienced in developing web applications using languages such as Java, Python, and JavaScript

    • Proficient in using frameworks such as Spring, Django, and React

    • Strong problem-solving skills and ability to work in a team environment

    • Passionate about learning new technologies and keeping up with industry trends

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: 55 questions in 60 minutes of which 45 were technical and 10 were aptitude questions and there was no negative marking. The technical questions covered RDBMS, UNIX, C, C++, Java, Operating systems, Data structures and Algorithms. The questions were simple and the basics of each of the mentioned subjects were mainly asked.
Duration: 60 minutes
Total Questions: 55

Round: Test
Experience: Again mainly questions on the subjects covered in round 1 but bit more in deep questions required short but detailed answers.
Tips: Learn to write pretty good Unix Scripts and Know the Basics of Operating System & OOP
Duration: 40 minutes
Total Questions: 10

Round: Technical Interview
Experience: Questions mainly on UNIX & RDBMS. Interviewer will ask you to write UNIX scripts and SQL/JAVA-SQL queries/programs for some use cases.
Tips: Know how JOINS, INTERSECTION, UNION & Aggregation works in SQL.

Round: Technical Interview
Experience: Questions on Programming, Data Structure and algorithms.
You will be asked to write pseudo-program for some of the use cases.
Tips: Choose your programming language cleverly. ;)

Round: Other Interview
Experience: Round 5 is an interview with Technical Manager.
Questions are asked based on the content of your resume like projects, hobbies and traits.
Few puzzle questions are asked which usually can be answered with logical analysis.
Tips: Be prepared for questions on the answer you give for the previous question(s).

Round: HR Interview
Experience: Again question will be asked on the basis of your resume. Questions may also asked on your previous interview experience if you have any.
Tips: Clear your doubts before leaving the room.

General Tips: Be confident, be straight forward, do not try to bluff with answers and try to be creative with answers. Prepare well both technical and aptitude.
Skills: Algorithms And Data Structures, Operating Systems, Unix, SQL, Java Programming, Object-Oriented Programming (OOP), C Programming
College Name: JSS Mahavidyapeetha Sri Jayachamarajendra College Of Engineering, Mysore
Motivation: Work Environment of Informatica.

I applied via Campus Placement and was interviewed before Jul 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude test on CS subjects like C programming, DBMS, CN, and OS.

Round 2 - Coding Test 

There were 2 input-output based questions of easy to moderate level

Round 3 - Group Discussion 

Every candidate was given an individual topic and was asked to speak on it

Round 4 - HR 

(1 Question)

  • Q1. Some typical HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basic CS subjects you will be able to clear all rounds with ease.

I applied via Company Website and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude, reasoning, English, cloud sections

Round 2 - Coding Test 

2 questions in which , one has to complete within an 50 minutes

Round 3 - Communication assessment 

(2 Questions)

  • Q1. Tell me about t Yourself
  • Q2. What are the previous experiences

Interview Preparation Tips

Topics to prepare for Accenture Associate Software Engineer interview:
  • Java
  • SQL
  • Agile Methodology
  • SDLC
Interview preparation tips for other job seekers - Be confident
Keep it just and short
Explain more about your experiences

Interview Questionnaire 

6 Questions

  • Q1. I was asked why Consulting,
  • Q2. About the Company,
  • Q3. What is the Current Exchange rate
  • Ans. 

    The current exchange rate varies depending on the currency pair and market conditions.

    • Exchange rates are constantly fluctuating based on supply and demand

    • Factors such as political events, economic data, and central bank decisions can impact exchange rates

    • For example, as of August 2021, the exchange rate for USD to EUR is approximately 0.85

  • Answered by AI
  • Q4. Taking cue from an earlier answer I was asked basics of Corporate Hedging
  • Q5. What is your view on the indian rupee vs dollar in the long run
  • Ans. 

    The Indian rupee is expected to depreciate against the dollar in the long run.

    • The Indian economy is heavily dependent on imports, which puts pressure on the rupee.

    • The US economy is expected to grow faster than India's, which will strengthen the dollar.

    • Political and economic instability in India can also weaken the rupee.

    • However, global events such as trade wars and geopolitical tensions can also impact the exchange rat...

  • Answered by AI
  • Q6. A problem was given and I had to give the solution- the problem was “A company has corporate cellphone connection for its employees. How would you ensure that you achieve the same at the least cost?”
  • Ans. 

    Negotiate with service providers for bulk discounts and limit data usage to essential business needs.

    • Negotiate with service providers for bulk discounts

    • Limit data usage to essential business needs

    • Consider implementing a BYOD (Bring Your Own Device) policy

    • Use mobile device management software to monitor and control usage

    • Encourage employees to use Wi-Fi instead of cellular data when possible

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: I was able to explain Why Consulting and also showed a keen interest in Government Consulting which Wipro was heavily into.

General Tips: A non-fish-market GD goes a long way in helping your chances
Skills: case analysis, group discussion
College Name: NA

Interview Questionnaire 

12 Questions

  • Q1. What is the major attributes that a consultant should possess?
  • Ans. 

    A consultant should possess strong analytical skills, effective communication, adaptability, and industry expertise.

    • Strong analytical skills to identify problems, analyze data, and provide effective solutions.

    • Effective communication to clearly convey ideas, build relationships, and present recommendations.

    • Adaptability to work in diverse environments, handle unexpected challenges, and adjust strategies accordingly.

    • Indus...

  • Answered by AI
  • Q2. What are your positives as a consultant?
  • Q3. Why consulting?
  • Q4. Why not finance, marketing and HR (individually)?
  • Ans. 

    Consultant role requires a broader skill set and the ability to provide holistic solutions.

    • Consultants need to have a deep understanding of various business functions and how they interact.

    • They are expected to provide comprehensive solutions that address multiple aspects of a problem.

    • Finance, marketing, and HR are important components of a business, but a consultant needs to go beyond individual functions.

    • For example, ...

  • Answered by AI
  • Q5. What is your major drawback that you faced working as a consultant in your previous organization?
  • Ans. 

    My major drawback as a consultant in my previous organization was my lack of experience in a specific industry.

    • Lack of industry-specific knowledge

    • Difficulty in understanding the unique challenges faced by clients

    • Limited network and connections in the industry

    • Less credibility due to lack of experience

    • Need for extensive research and learning before providing effective solutions

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

    The company is a leading consulting firm specializing in providing strategic advice and solutions to businesses.

    • The company has been in operation for over 10 years.

    • They have a team of experienced consultants with expertise in various industries.

    • They offer services such as market research, financial analysis, and business strategy development.

    • Some of their notable clients include Fortune 500 companies and startups.

    • They ...

  • Answered by AI
  • Q7. Why do you want to join this company?
  • Q8. What are the key factors that need to be in place while creating a client solution?
  • Ans. 

    Key factors for creating a client solution

    • Understanding client's needs and goals

    • Identifying potential challenges and limitations

    • Developing a customized solution

    • Ensuring scalability and flexibility

    • Providing ongoing support and maintenance

    • Collaborating with the client throughout the process

  • Answered by AI
  • Q9. A small business scenario, and asked me the approach to problem solving (the problem was similar to the ones I used to handle during my work ex)
  • Q10. General work ex, my domain, knowledge, background, experience of interacting with clients
  • Q11. The service I was working on and my learnings on the same
  • Q12. Also the interviewer asked me-What is one thing that u can ask me which will convince u that wipro is the company for you

Interview Preparation Tips

Round: HR Interview
Experience: They also asked me questions related to my Work Experience-

Round: Group Discussion
Experience: Group Discussion: Topic was “Impact of small business on Indian Economy”.We generally discussed the small industries and entrepreneurial attitude but the panel also expected us to discuss the mom and pop stores as well

General Tips: My prior work experience was a major boost. A comprehensive knowledge of what I was doing before helped me present myself in a strong position.2. Display interest in the company. Knowing in detail about wipro’s consulting line of work helped me a lot.3. Positive body language, confidence adds.4. Display love for the profile/field you were applying to.5. Justify all that you have done in life till now. The business case study which he asked me was similar to what I used to face during my work ex. A practical & logical approach with explanations established my consulting experience.
Skills: Economics, case Analysis
College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. Why consulting?
  • Ans. 

    Consulting offers diverse challenges, continuous learning, and the opportunity to make a significant impact.

    • Consulting provides exposure to various industries and business problems.

    • It offers the chance to work with talented professionals and learn from their expertise.

    • Consultants have the opportunity to solve complex problems and make a tangible difference.

    • The work is dynamic and ever-changing, ensuring continuous lear...

  • Answered by AI
  • Q2. How can you add value to our organisation
  • Q3. Specifically why Wipro out of all the consulting firms. They were very keen on why wipro thing
  • Q4. What do you know about the Wipro group as a whole?
  • Ans. 

    Wipro is an Indian multinational corporation that provides information technology, consulting and business process services.

    • Founded in 1945 by M.H. Hasham Premji

    • Headquartered in Bangalore, India

    • Employs over 190,000 people worldwide

    • Provides services in various industries including healthcare, finance, retail, and more

    • Has a strong focus on sustainability and social responsibility

    • Acquired Appirio, a cloud services company

  • Answered by AI
  • Q5. Lengthy discussion on Work experience
  • Q6. Lengthy discussion on Summer internship project
  • Q7. The whole interview was based on operations and supply chain concepts
  • Q8. What theoretical concepts did you used to execute your project?

Interview Preparation Tips

Round: HR Interview
Experience: Convinced them very well that the role they are offering is very much in line with my previous work ex and summer internship.

General Tips: Try to hard sell yourself as much as you can. Try to steer the interview yourself and you need to talk a lot. They wanted numbers as in revenues, competitors and recent events about the company.
Skills: case analysis, Economics
College Name: NA
Contribute & help others!
anonymous
You can choose to be anonymous

Qubole Interview FAQs

How to prepare for Qubole 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 Qubole. The most common topics and skills that interviewers at Qubole expect are Big Data, Python, Java, Machine Learning and Hadoop.

Recently Viewed

COMPANY BENEFITS

Arms

No Benefits

SALARIES

Arms

REVIEWS

Axiphyl

No Reviews

REVIEWS

FIMER

No Reviews

JOBS

CoinDCX

No Jobs

SALARIES

Arms

SALARIES

XpressBees

SALARIES

BlackBuck

SALARIES

FIMER

REVIEWS

Wynk

No Reviews

Tell us how to improve this page.

HCLTech

An opportunity to work for Fortune 500 companies

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Teradata Interview Questions
3.9
 • 51 Interviews
Informatica Interview Questions
3.5
 • 27 Interviews
Cloudera Interview Questions
4.2
 • 14 Interviews
Databricks Interview Questions
2.7
 • 12 Interviews
Snowflake Interview Questions
3.9
 • 9 Interviews
Hortonworks Interview Questions
2.3
 • 1 Interview
View all

Qubole Reviews and Ratings

based on 7 reviews

4.5/5

Rating in categories

4.1

Skill development

4.8

Work-life balance

4.5

Salary

3.6

Job security

4.9

Company culture

4.1

Promotions

4.9

Work satisfaction

Explore 7 Reviews and Ratings
Product Architect - Testmo

Kolkata,

Mumbai

+5

4-9 Yrs

Not Disclosed

Partner Marketing Specialist

Remote

3-8 Yrs

Not Disclosed

Lead Product Manager - Ranorex

Remote

7-12 Yrs

Not Disclosed

Explore more jobs
Member Technical Staff
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Digital Marketing Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Growth and Marketing Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Regional Sales Director
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Qubole with

Cloudera

4.2
Compare

Hortonworks

2.3
Compare

MapR Technologies

3.6
Compare

Snowflake

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