Upload Button Icon Add office photos

Cloud4C

Compare button icon Compare button icon Compare

Filter interviews by

Cloud4C SAP Basis Consultant Interview Questions and Answers

Updated 26 Sep 2024

Cloud4C SAP Basis Consultant Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. How to stop tenant DB in HANA
  • Ans. 

    To stop a tenant DB in HANA, you can use the SAP HANA studio or SQL commands.

    • Use SAP HANA studio to stop the tenant database

    • Alternatively, you can use SQL commands like 'ALTER SYSTEM STOP DATABASE '

    • Make sure to have the necessary permissions to stop the database

Answered by AI
  • Q2. Self introduction
  • Q3. Why you choose BASIS
  • Ans. 

    I chose BASIS because of my interest in managing SAP systems and ensuring their optimal performance.

    • Passion for managing SAP systems

    • Interest in ensuring optimal performance

    • Enjoy troubleshooting and problem-solving

    • Opportunity for career growth and development

  • Answered by AI

    Interview questions from similar companies

    I applied via Naukri.com and was interviewed in May 2021. There was 1 interview round.

    Interview Questionnaire 

    1 Question

    • Q1. Anything can be asked from oops to design pattern level question. Simple to hard. It's kind of rapid fire.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Ready handle a pressure while interview process, be stable, don't confuse

    I appeared for an interview in Sep 2020.

    Interview Questionnaire 

    1 Question

    • Q1. Oops concept, solid principles, filters in MVC, basics of Angular,life cycle hook

    Interview Preparation Tips

    Interview preparation tips for other job seekers - 2 rounds- both are technical.

    I applied via Approached by Company and was interviewed before May 2021. There were 3 interview rounds.

    Round 1 - Aptitude Test 

    Multiple choice questions

    Round 2 - Coding Test 
    Round 3 - Technical 

    (1 Question)

    • Q1. Show the projects that you may have worked on and explain.

    Interview Preparation Tips

    Topics to prepare for Incedo Software Engineer interview:
    • React.Js
    Interview preparation tips for other job seekers - You got to be clear and concise when explaining things. You gotta be confident!

    I appeared for an interview before Oct 2021.

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

    (2 Questions)

    • Q1. What is Nested List with example
    • Ans. 

      A nested list is a list that contains other lists as its elements.

      • Nested lists can be created using square brackets and separating the elements with commas.

      • Elements of a nested list can be accessed using indexing and slicing.

      • Example: my_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

      • Accessing element 5: my_list[1][1]

    • Answered by AI
    • Q2. What is queue , explain with example
    • Ans. 

      A queue is a data structure that follows the First In First Out (FIFO) principle.

      • Elements are added to the back of the queue and removed from the front.

      • Example: A line of people waiting for a movie ticket.

      • Operations: Enqueue (add element to back), Dequeue (remove element from front), Peek (view front element)

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Data Structure should be stong
    Basic python
    Coding skills

    Skills evaluated in this interview

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

    Round 1 - Aptitude Test 

    Round 1 was about 60 mins long. Basic Aptitude questions along with Programming MCQ

    Round 2 - Coding Test 

    Round 2 had 2 coding questions with a time limit of 60mins. Intermediate level problem solving
    knowledge is neccessary.

    Round 3 - Technical 

    (1 Question)

    • Q1. Technical Round 1 was 1hr long. Detailed Insights about my project and a few programming questions in DSA
    Round 4 - Technical 

    (1 Question)

    • Q1. This Technical Round 2 was 1hr long and was mainly focused on problem solving skills and a few basic programming concepts.
    Round 5 - HR 

    (1 Question)

    • Q1. Three Situational questions were asked .

    Interview Preparation Tips

    Topics to prepare for Bounteous x Accolite Software Developer interview:
    • Data Structures
    • Algorithms
    • CPP
    • Problem Solving
    Interview preparation tips for other job seekers - Prepare Well . Perform well with full confidence

    I applied via Campus Placement and was interviewed before Sep 2020. There were 3 interview rounds.

    Interview Questionnaire 

    2 Questions

    • Q1. Python code to find the root of a number
    • Ans. 

      Python code to find the root of a number

      • Use the math module to access the sqrt() function

      • Use the ** operator to raise the number to the power of 1/n

      • Handle negative numbers by converting them to complex numbers

    • Answered by AI
    • Q2. Some standard puzzles

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Brush up python and be thorough with puzzles

    Skills evaluated in this interview

    Interview Questionnaire 

    1 Question

    • Q1. Java multithreading, oops

    I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

    Interview Questionnaire 

    1 Question

    • Q1. I had two rounds. First round was completely based on Core Java concepts. Second round was based on DS algo and SQL queries (group by and having)

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare Core Java concepts and DSA.

    I applied via Campus Placement and was interviewed before Jan 2021. There were 3 interview rounds.

    Interview Questionnaire 

    3 Questions

    • Q1. 1. Write a code to split an array of integers into two subarray where both the array has equal sum.
    • Ans. 

      Code to split an array of integers into two subarrays with equal sum.

      • Iterate through the array and calculate the total sum.

      • Divide the sum by 2 to get the target sum for each subarray.

      • Use dynamic programming to find a subset of the array that adds up to the target sum.

      • Return the two subarrays.

      • Example: [1, 2, 3, 4, 5, 6] -> [1, 2, 3, 6], [4, 5]

      • Example: [1, 2, 3, 4, 5] -> [1, 4, 5], [2, 3]

    • Answered by AI
    • Q2. To write code to build up a binary tree from scratch (implement a BST) and then to write all the methods like all the tree traversal algo, and all other stuffs.
    • Ans. 

      Implementing a binary search tree and its traversal methods.

      • Start by defining a Node class with left and right child pointers.

      • Implement insert() method to add nodes to the tree.

      • Implement inorder(), preorder(), and postorder() traversal methods.

      • Implement search() method to find a node in the tree.

      • Implement delete() method to remove a node from the tree.

      • Consider edge cases like empty tree, duplicate nodes, etc.

    • Answered by AI
    • Q3. Other OOPs concept and questions related to DSA and OS.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Accolite has a difficult hiring bar and hires only the good ones. Focus on DSA concepts and practice as many questions from Leetcode, Interviewbits, GFG. Focus on all the OOPs concept and subject like OS.

    Skills evaluated in this interview

    Cloud4C Interview FAQs

    How many rounds are there in Cloud4C SAP Basis Consultant interview?
    Cloud4C interview process usually has 1 rounds. The most common rounds in the Cloud4C interview process are Technical.

    Tell us how to improve this page.

    Cloud4C SAP Basis Consultant Interview Process

    based on 1 interview

    Interview experience

    2
      
    Poor
    View more

    Interview Questions from Similar Companies

    ITC Infotech Interview Questions
    3.6
     • 336 Interviews
    CitiusTech Interview Questions
    3.4
     • 270 Interviews
    NeoSOFT Interview Questions
    3.7
     • 263 Interviews
    Tiger Analytics Interview Questions
    3.7
     • 222 Interviews
    Episource Interview Questions
    3.9
     • 220 Interviews
    Altimetrik Interview Questions
    3.8
     • 217 Interviews
    Incedo Interview Questions
    3.1
     • 181 Interviews
    Xoriant Interview Questions
    4.1
     • 181 Interviews
    View all
    Cloud4C SAP Basis Consultant Salary
    based on 70 salaries
    ₹3.5 L/yr - ₹11 L/yr
    19% less than the average SAP Basis Consultant Salary in India
    View more details

    Cloud4C SAP Basis Consultant Reviews and Ratings

    based on 5 reviews

    4.0/5

    Rating in categories

    3.7

    Skill development

    2.8

    Work-life balance

    3.4

    Salary

    3.0

    Job security

    3.3

    Company culture

    3.3

    Promotions

    3.4

    Work satisfaction

    Explore 5 Reviews and Ratings
    SAP Hana Consultant
    130 salaries
    unlock blur

    ₹5 L/yr - ₹18 L/yr

    Associate Engineer
    111 salaries
    unlock blur

    ₹2.8 L/yr - ₹6.3 L/yr

    SAP Basis Consultant
    70 salaries
    unlock blur

    ₹3.5 L/yr - ₹11 L/yr

    Principal Engineer
    53 salaries
    unlock blur

    ₹12.5 L/yr - ₹35 L/yr

    Program Manager
    51 salaries
    unlock blur

    ₹8 L/yr - ₹28 L/yr

    Explore more salaries
    Compare Cloud4C with

    ITC Infotech

    3.6
    Compare

    CMS IT Services

    3.1
    Compare

    KocharTech

    3.9
    Compare

    Xoriant

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