Upload Button Icon Add office photos

Filter interviews by

Krios info Solution SAP Development Consultant Interview Questions and Answers

Updated 3 May 2019

Krios info Solution SAP Development Consultant Interview Experiences

1 interview found

Interview Questionnaire 

6 Questions

  • Q1. Explained project mentioned in resume with business logic
  • Q2. What problems faced during development
  • Q3. All basic concepts related to SAP ABAP
  • Q4. Advances SAP ABAP thinks working on such as SAP HANA, CDS and AMDP
  • Q5. Why to switch job
  • Q6. Expectations of CTC
  • Ans. 

    The expectations of CTC for a SAP Development Consultant vary based on experience, skills, and industry standards.

    • CTC expectations depend on the level of expertise and years of experience in SAP development.

    • Industry standards and market demand also influence CTC expectations.

    • Additional skills and certifications can lead to higher CTC expectations.

    • Location and cost of living factors may impact CTC expectations.

    • Negotiati...

  • Answered by AI

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What information do you have about the company?
  • Ans. 

    The company is a leading technology firm specializing in software development and IT solutions.

    • Founded in 2005

    • Headquartered in Silicon Valley

    • Offers a wide range of services including web development, mobile app development, and cloud computing

    • Clients include Fortune 500 companies and startups

  • Answered by AI
  • Q2. How can you identify a client?
  • Ans. 

    Clients can be identified through various methods such as networking, referrals, market research, and online presence.

    • Networking events and conferences

    • Referrals from existing clients or business partners

    • Market research to identify potential clients in target industries

    • Online presence through social media, website, and online directories

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First, gather information about the company and its products.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding test is the first round and if it is cleared you will be interviewed

Round 2 - Technical 

(1 Question)

  • Q1. Find if the given year is a leap year or not.
  • Ans. 

    Check if a given year is a leap year or not.

    • A leap year is divisible by 4, but not by 100 unless it is also divisible by 400

    • For example, 2000 is a leap year because it is divisible by 400, while 1900 is not because it is divisible by 100 but not by 400

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Raja Software Labs Software Development Engineer interview:
  • DSA

Skills evaluated in this interview

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

I applied via Referral and was interviewed before May 2022. There were 4 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 - One-on-one 

(1 Question)

  • Q1. Challenges handled
  • Ans. 

    Handled challenges related to market penetration, competition, and product development.

    • Developed and executed strategies to penetrate new markets and increase market share.

    • Analyzed and responded to competitive threats through pricing, product differentiation, and marketing tactics.

    • Led cross-functional teams to develop and launch new products, including market research, product design, and go-to-market plans.

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Same as round 1
Round 4 - HR 

(1 Question)

  • Q1. Pay discussion and general questions

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

Round 1 - Aptitude Test 

Contains intermediate level aptitude and logical thinking

Round 2 - Aptitude Test 

Contain expert level aptitude, logical and problem solving questions. Paragraph writing is also a part of it

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. How do you get to know about the company

Interview Preparation Tips

Topics to prepare for Zifo RnD Solutions Application Development Analyst interview:
  • Aptitude
  • Logical reasoning
  • Communication Skills
Interview preparation tips for other job seekers - Prepare well in the aptitude and logical reasoning

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

Round 1 - HR 

(5 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your strengths and weaknesses?
  • Q3. What is your family background?
  • Q4. Why should we hire you?
  • Q5. What are your salary expectations?
Round 2 - Case Study 
Round 3 - Case Study 
Round 4 - Case Study 

Interview Preparation Tips

Interview preparation tips for other job seekers - Not recommend, try Zomato or Swiggy. Even try Dineout.

I was interviewed in Feb 2017.

Interview Questionnaire 

17 Questions

  • Q1. Print a linked list in zig zag manner. Link : -----/
  • Q2. Design a photo viewer app (Technical architecture) for android device.
  • Ans. 

    A photo viewer app for Android devices.

    • Use RecyclerView to display a grid of photos

    • Implement a caching mechanism to improve performance

    • Support gestures for zooming and swiping between photos

    • Integrate with a cloud storage service for photo storage and retrieval

    • Implement a search feature to allow users to find specific photos

  • Answered by AI
  • Q3. Given a String, write a function, which will return a boolean. The function will tell you whether one permutation of the string is Palindrome or not
  • Q4. Given an array, which consist of natural numbers only. The elements are in random order, tell the first missing natural number in the array. e.g 4,6,3,1,6,8 o.p - 2 1,2,3 O/P - 4
  • Ans. 

    Given an array of natural numbers, find the first missing natural number.

    • Sort the array and iterate through it to find the first missing number.

    • Use a hash set to keep track of the numbers present in the array.

    • The first missing number will be the smallest positive integer not present in the array.

  • Answered by AI
  • Q5. Given an Object 'Ball'. How will you transfer this ball object from one thread to another in Android.
  • Ans. 

    To transfer the Ball object from one thread to another in Android, we can use Handler or AsyncTask.

    • Use Handler to post the Ball object from one thread to another

    • Create a Handler in the receiving thread and use its post() method to receive the Ball object

    • Alternatively, use AsyncTask to perform the transfer in the background thread and update the UI thread with the Ball object

  • Answered by AI
  • Q6. Methods of IPC in android.
  • Ans. 

    IPC (Inter-Process Communication) methods in Android allow communication between different processes.

    • Binder: Android's default IPC mechanism, provides high-performance communication between processes.

    • AIDL (Android Interface Definition Language): Used to define the programming interface for IPC using Binder.

    • Intents: Used for asynchronous communication between components within an application or between different applica...

  • Answered by AI
  • Q7.  Implement LRU cache. (Implement you own HashMap meanwhile) Main focus was around this question only.
  • Q8. If you were asked to make your own HashMap, how will you do it. (As it was used in the first question)
  • Ans. 

    A HashMap is a data structure that stores key-value pairs and provides constant time complexity for basic operations.

    • Implement a hash function to convert keys into array indices

    • Create an array to store the key-value pairs

    • Handle collisions using a technique like chaining or open addressing

    • Implement methods like put(), get(), and remove() to interact with the HashMap

  • Answered by AI
  • Q9. Some definitions and basic android questions. AsyncTask, IntentService, Service, internals of ArrayList, etc.
  • Q10. Weather App. Given a screen. There is a button and full screen image view. When you press button, a image url is hit, and response contains the file and you have to show on Screen that image. The URL is a...
  • Q11. Extended same question for the adapter with multiple images, (Half of the last round was covered in it). How will you go on handling the multiple request, Handling AsyncTask in Threadpool.
  • Q12. You have application which shows list of all contacts, the Name can be duplicated, also it can contain duplicated numbers (0XXXXX, XXXXX etc). How will you go on and do searching in this. Search term can ...
  • Ans. 

    To search for contacts with duplicate names and numbers, create a search function that checks both fields.

    • Create a function that takes a search term as input

    • Iterate through the list of contacts

    • Check if the search term exists in the Name field or Num field

    • Return the contacts that match the search term

  • Answered by AI
  • Q13. Launch Mode of Activity in Android
  • Ans. 

    Launch mode determines how a new instance of an activity is created and added to the task stack.

    • Standard: Creates a new instance of the activity each time it is launched.

    • SingleTop: If an instance of the activity already exists at the top of the stack, it will be reused.

    • SingleTask: If an instance of the activity already exists in the stack, it will be brought to the front and cleared of any activities above it.

    • SingleIns...

  • Answered by AI
  • Q14. How do you do DeepLinking in android.
  • Ans. 

    Deep linking in Android allows linking to specific content within an app, enabling seamless navigation.

    • Deep linking is achieved by defining intent filters in the app's manifest file.

    • The intent filter specifies the data format and scheme for the deep link.

    • Deep links can be triggered from other apps, websites, or even notifications.

    • Handling deep links involves extracting data from the intent and navigating to the appropr

  • Answered by AI
  • Q15. Java cyclicbarrier.
  • Q16. Some Project based questions, What were your challenges, which project you loved most, which one you did not etc......
  • Q17. You have to design screen in which at a time on screen 10 nearest restaurants will be shown in a list. How will you go on design this. (Need to keep UI as un interrupted as possible).
  • Ans. 

    Design a screen to show 10 nearest restaurants in a list while keeping the UI uninterrupted.

    • Use a scrollable list view to display the restaurants

    • Implement a location-based search algorithm to find the nearest restaurants

    • Include a search bar to allow users to search for specific restaurants

    • Display relevant information for each restaurant such as name, rating, and distance

    • Implement filters or sorting options to allow use...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: It was a telephonic round.

Round: Technical Interview
Experience: Director of engineering round

Skills: Android, Java Application Development, Data Strrutures, Algorithm

Skills evaluated in this interview

Krios info Solution Interview FAQs

What are the top questions asked in Krios info Solution SAP Development Consultant interview?

Some of the top questions asked at the Krios info Solution SAP Development Consultant interview -

  1. Expectations of ...read more
  2. Advances SAP ABAP thinks working on such as SAP HANA, CDS and A...read more
  3. All basic concepts related to SAP A...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Salesforce Developer
70 salaries
unlock blur

₹1.8 L/yr - ₹8.6 L/yr

Software Developer
46 salaries
unlock blur

₹1.8 L/yr - ₹8.1 L/yr

Junior Software Developer
44 salaries
unlock blur

₹1 L/yr - ₹3.6 L/yr

Junior Salesforce Developer
35 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

SAP Abap Consultant
32 salaries
unlock blur

₹1.8 L/yr - ₹9.8 L/yr

Explore more salaries
Compare Krios info Solution with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview