Upload Button Icon Add office photos
Engaged Employer

i

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

SAP Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Clear (1)

SAP Data Cloud (IT) Interview Questions and Answers

Updated 23 Jan 2017

SAP Data Cloud (IT) Interview Experiences

1 interview found

I appeared for an interview before Jan 2016.

Interview Questionnaire 

13 Questions

  • Q1. Heap Implementation in Java and C
  • Ans. 

    Heap implementation is a data structure used to represent a priority queue.

    • Heap is a complete binary tree where each node is greater than or equal to its children (max heap) or less than or equal to its children (min heap).

    • In Java, heap can be implemented using PriorityQueue class or manually using arrays.

    • In C, heap can be implemented using arrays and functions like heapify, buildHeap, and heapSort.

    • Heap is used in sort...

  • Answered by AI
  • Q2. DBMS internal table implementation
  • Q3. Comparing different databases such as mongodb, postgre etc
  • Ans. 

    Different databases have their own strengths and weaknesses.

    • MongoDB is a NoSQL database that is great for handling unstructured data.

    • PostgreSQL is a relational database that is known for its stability and ACID compliance.

    • MySQL is a popular open-source database that is great for web applications.

    • Oracle is a powerful database that is often used for enterprise-level applications.

    • SQL Server is a Microsoft database that is

  • Answered by AI
  • Q4. Implementation of CLOB, BLOB
  • Ans. 

    CLOB and BLOB are data types used to store large amounts of text and binary data respectively.

    • CLOB stands for Character Large Object and is used to store large amounts of text data.

    • BLOB stands for Binary Large Object and is used to store large amounts of binary data.

    • CLOB and BLOB are commonly used in databases to store files, images, and other large data types.

    • They are implemented using SQL commands such as CREATE TABL...

  • Answered by AI
  • Q5. Machine learning Concepts
  • Q6. General DSA questions, main focus on heap.
  • Q7. Questions on my projects
  • Q8. Tell us about yourself
  • Ans. 

    I am a data scientist with experience in machine learning and data analysis.

    • I have a degree in computer science and a master's in data science

    • I have worked on projects involving natural language processing and computer vision

    • I am proficient in programming languages such as Python and R

    • I have experience working with big data technologies such as Hadoop and Spark

  • Answered by AI
  • Q9. Craziest thing you have done
  • Ans. 

    I once went bungee jumping off a bridge in New Zealand.

    • Decided to go bungee jumping on a whim

    • Jumped off a bridge that was over 100 meters high

    • Felt an adrenaline rush like never before

    • Was scared but exhilarated at the same time

  • Answered by AI
  • Q10. Negative points about your internship
  • Ans. 

    Lack of guidance and unclear expectations

    • Received minimal guidance from supervisor

    • Unclear expectations for project deliverables

    • Limited opportunities for professional development

    • Lack of communication within team

  • Answered by AI
  • Q11. Strengths and Weaknesses
  • Q12. Where do you see yourself in 10 years?
  • Ans. 

    In 10 years, I see myself as a senior data cloud architect, leading a team of experts in developing innovative solutions.

    • Leading a team of experts in developing innovative solutions

    • Senior data cloud architect

    • Continuously learning and adapting to new technologies

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q13. A lot of Questions on projects of internship (properly grilled)

Interview Preparation Tips

Round: Test
Experience: The level of test was really good and if u don't maintain speed , u won't even come to know when the timer of each question will finish off
Tips: 1) Maintain speed + accuracy
2) work on Machine learning concepts
3There was a timer associated with every question, so make sure you take care of it
Duration: 1 hour 30 minutes
Total Questions: 13

Round: Technical Interview
Tips: 1) Just keep calm and ask for clarifications
2) keep the discussion interesting
3) Try to answer questions based on ur experience of internship and use industry terms (plus points)

Round: Technical + HR Interview
Tips: 1)Keep calm and don't get too emotional because next question may be technical.
2) Make sure you reflect a good image in front of HR.
3) Try to draw your personal experiences from your life and specially internship

College Name: BITS Pilani

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Dec 2021. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - I would like to wrok in the this company and to entire world

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - just basic questions from my cv

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)
Contribute & help others!
anonymous
You can choose to be anonymous

SAP Interview FAQs

What are the top questions asked in SAP Data Cloud (IT) interview?

Some of the top questions asked at the SAP Data Cloud (IT) interview -

  1. Comparing different databases such as mongodb, postgre ...read more
  2. Heap Implementation in Java an...read more
  3. Implementation of CLOB, B...read more

Recently Viewed

REVIEWS

Praj Industries

No Reviews

REVIEWS

Pfizer Healthcare india pvt lit

No Reviews

REVIEWS

Cyient

No Reviews

SALARIES

Shift Risk Insurance Brokers

No Salaries

SALARIES

Snap-on Business Solutions

No Salaries

REVIEWS

Sona Comstar

No Reviews

LIST OF COMPANIES

Snap-on Business Solutions

Overview

LIST OF COMPANIES

Shift Risk Insurance Brokers

Overview

COMPANY BENEFITS

Snap-on Business Solutions

No Benefits

REVIEWS

Shift Risk Insurance Brokers

No Reviews

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 852 Interviews
Google Interview Questions
4.4
 • 830 Interviews
View all
Software Developer
1k salaries
unlock blur

₹8.5 L/yr - ₹32 L/yr

Developer
891 salaries
unlock blur

₹10 L/yr - ₹34 L/yr

Developer Associate
826 salaries
unlock blur

₹6.7 L/yr - ₹23 L/yr

Senior Developer
506 salaries
unlock blur

₹13.1 L/yr - ₹47 L/yr

Business Process Consultant
421 salaries
unlock blur

₹10 L/yr - ₹40 L/yr

Explore more salaries
Compare SAP with

Oracle

3.7
Compare

SAS

4.4
Compare

Zoho

4.3
Compare

IBM

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent