Upload Button Icon Add office photos

Filter interviews by

Icore Software Systems Interview Questions and Answers

Updated 25 Aug 2024

Icore Software Systems Interview Experiences

Popular Designations

4 interviews found

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 Jul 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a Software Manual and Automation Test Engineer with 5 years of experience in testing web and mobile applications.

    • Experienced in manual testing of web and mobile applications

    • Proficient in automation testing using tools like Selenium and Appium

    • Strong knowledge of testing methodologies and strategies

    • Skilled in writing test cases and test scripts

    • Familiar with Agile development practices

  • Answered by AI
  • Q2. Main goal of your life
  • Ans. 

    My main goal in life is to continuously learn and grow, both personally and professionally.

    • Constantly seeking new opportunities for self-improvement

    • Setting and achieving goals to progress in my career

    • Striving to make a positive impact on those around me

    • Maintaining a healthy work-life balance

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. OOPS concept explain
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve a problem

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation

    • Classes are blueprints for creating objects, while objects are instances of classes

    • Inheritance allows a class to inherit proper...

  • Answered by AI
  • Q2. Blackbox testing
  • Q3. Whitebox testing
  • Q4. Sanity and smoke testing
Round 3 - Coding Test 

Give one website to test the login and password

Software Manual and Automation Test Engineer Interview Questions asked at other Companies

Q1. OOPS concept explain
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java basic opps concepts
  • Q2. SQL join queries, inner,left, outer joins

Backend Developer Interview Questions asked at other Companies

Q1. Print a Binary Tree in Vertical OrderGiven a binary tree, return the vertical order traversal of the values of the nodes of the given tree. For each node at position (X, Y), (X-1, Y-1) will be its left child position while (X+1, Y-1) will b... read more
View answer (3)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java basic oops concepts
  • Q2. My sql questions based on queries

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java oops concepts
  • Q2. SQL joins left join,inner join.

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)

Icore Software Systems interview questions for popular designations

 Backend Developer

 (1)

 Java Developer

 (1)

 Software Developer

 (1)

 Software Manual and Automation Test Engineer

 (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Data Analysis and Automation Testing.

Round 2 - Group Discussion 

Team work and communication

Round 3 - One-on-one 

(3 Questions)

  • Q1. Work culture and promotion!!?
  • Q2. Better Income and study!?
  • Q3. Work freedom!??
Round 4 - HR 

(2 Questions)

  • Q1. Face to face communication?
  • Q2. Discussion?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always you keep attention to the job seekers
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1 hr interview divided into 4 sections - Intro - Backend - .NET & OOPS Concepts (Was given a code to analyze) - SQL - Write a sql query & some sql questions on joins etc. - Frontend - Angular related quest...
Round 2 - Technical 

(1 Question)

  • Q1. Bit low level Design Patterns Questions, SQL Questions, Angular Questions Checking your confidence while answering
Round 3 - Technical 

(1 Question)

  • Q1. This was Manegerial Round, asked about projects worked upon and some questions over the projects
Round 4 - HR 

(1 Question)

  • Q1. For this round I was being called to their base location. Salary Discussion

Interview Preparation Tips

Topics to prepare for Bosch Global Software Technologies Consultant interview:
  • .NET
  • SQL
  • Angular
  • Azure
Interview preparation tips for other job seekers - Interview went quiet well. Prepare for sql queries & brush up knowledge. SOLID principles/Design Patterns
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(9 Questions)

  • Q1. Introduction, roles and responsibilities
  • Q2. Deep copy shallow copy
  • Q3. Method Overloading overriding
  • Q4. Constuctor and its types
  • Ans. 

    Constructors are special methods in a class used to initialize objects. There are default, parameterized, copy, and static constructors.

    • Constructors have the same name as the class and do not have a return type.

    • Default constructors are automatically created by the compiler if no constructor is defined.

    • Parameterized constructors accept parameters to initialize object properties.

    • Copy constructors create a new object as a...

  • Answered by AI
  • Q5. Varags (variable length arguments)
  • Q6. Find element find elements return types of it if no elements found
  • Ans. 

    findElements method in Selenium returns a list of WebElements or an empty list if no elements are found.

    • findElements method returns a list of WebElements

    • If no elements are found, it returns an empty list

    • Return type is List

Answered by AI
  • Q7. Webdriver what is it
  • Ans. 

    Webdriver is a tool used for automating web application testing.

    • Webdriver is a popular automation tool used for testing web applications.

    • It allows testers to automate interactions with a web browser.

    • Webdriver supports multiple programming languages such as Java, Python, and C#.

    • It can simulate user interactions like clicking buttons, entering text, and navigating through pages.

    • Webdriver is commonly used in QA automation...

  • Answered by AI
  • Q8. Find duplicate numbers and its count from given list explain logic
  • Ans. 

    Logic to find duplicate numbers and their count in a given list.

    • Iterate through the list and store each number in a hashmap with its count

    • If a number is already in the hashmap, increment its count

    • After iterating, check the hashmap for numbers with count greater than 1 to find duplicates

  • Answered by AI
  • Q9. Factorial using recursion
  • Ans. 

    Factorial using recursion is a mathematical function that calculates the product of all positive integers up to a given number.

    • Define a function that takes an integer parameter n

    • Base case: if n is 0, return 1

    • Recursive case: return n multiplied by the factorial of n-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = 5 * 4 * 3 * factorial(2) = 5 * 4 * 3 * 2 * factorial(1) = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - For me Mostly 90% they asked java related questions.
    Introduction, roles responsibilities.
    Deep copy shallow copy
    Method Overloading overriding
    Constuctor
    Varags
    Find element & find elements difference and return types(if elements present and if not)
    2 coding questions
    1 repeatetive numbers/duplicates and its count from the given list eg output 4,2(4 is number and found 2 times)
    2 factorial of a number using recursion.

    I don't want to fil this form all that's why including all questions asked in the feedback.

    This was my first round and no response till now.
    Interview taken on 10 Oct.

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (6 Questions)

    • Q1. Tell me about youtself?
    • Q2. What do you know about TDS?
    • Q3. Situation AP based journal entries
    • Q4. What is GST on reverse charge?
    • Q5. What are the documents required to initiate a foreign remittance?
    • Q6. More situational based AP journal entries.

    SAP Basis Consultant (Migration/Conversion) Interview Questions & Answers

    SAP user image Anonymous

    posted on 10 Oct 2024

    Interview experience
    4
    Good
    Difficulty level
    Hard
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

    Round 1 - Technical 

    (21 Questions)

    • Q1. What are SAP tools to migrate SAP systems from on-premise to cloud?
    • Ans. 

      SAP tools for migrating SAP systems from on-premise to cloud include SAP Advanced Data Migration, SAP Cloud Platform Migration Service, and SAP Transformation Navigator.

      • SAP Advanced Data Migration: tool for migrating data from on-premise systems to cloud

      • SAP Cloud Platform Migration Service: helps in migrating applications and workloads to the cloud

      • SAP Transformation Navigator: tool for planning and executing system mig

    • Answered by AI
    • Q2. When you use export/import method form migration, what files will be created during export?
    • Ans. 

      During export using export/import method for migration, files like data files, control files, and log files will be created.

      • Data files containing the actual data being exported

      • Control files containing information about the export process

      • Log files recording the activities and errors during the export

      • Examples: .dmp, .ctl, .log files

    • Answered by AI
    • Q3. How does parallel export/import work ?
    • Ans. 

      Parallel export/import allows multiple processes to export/import data simultaneously for faster migration/conversion.

      • Parallel export/import splits the data into multiple parts and processes them concurrently.

      • It helps in reducing the overall time taken for data migration/conversion.

      • Parallel export/import requires careful planning to avoid conflicts and ensure data consistency.

      • Examples include using SAP tools like R3loa...

    • Answered by AI
    • Q4. If you are using DMO to migrate a SAP system with sql DB on windows to HANA DB on linux, how the SUM will run? As there is a different SUM for windows and linux, will it use 2 different SUM in this case?
    • Ans. 

      SUM will use a single SUM tool for the migration from SQL DB on Windows to HANA DB on Linux.

      • SUM tool is platform-independent and can be used for migrations between different operating systems.

      • The SUM tool will handle the conversion process seamlessly without the need for separate tools for Windows and Linux.

      • The migration process will involve steps to convert the database from SQL to HANA while also transitioning the op

    • Answered by AI
    • Q5. Can EHP 5 run on oracle 19C ?
    • Ans. 

      No, EHP 5 cannot run on Oracle 19C.

      • EHP 5 is not certified to run on Oracle 19C.

      • Compatibility issues may arise if trying to run EHP 5 on Oracle 19C.

      • It is recommended to check SAP's official compatibility matrix for supported configurations.

    • Answered by AI
    • Q6. What are technical differences in SPDD and SPAU?
    • Ans. 

      SPDD is for modifying dictionary objects, SPAU is for modifying repository objects.

      • SPDD is used for modifying dictionary objects like tables, views, and data elements.

      • SPAU is used for modifying repository objects like programs, function modules, and screens.

      • SPDD changes are transportable across systems, SPAU changes are not transportable.

      • SPDD changes are typically related to data dictionary objects, SPAU changes are re...

    • Answered by AI
    • Q7. Can we skip SPDD in preprocessing? If yes, what will happen? If no, what stops us from skipping it?
    • Ans. 

      Skipping SPDD in preprocessing is not recommended as it can lead to inconsistencies in the system.

      • No, SPDD should not be skipped in preprocessing as it is a crucial step in handling modifications to the ABAP Dictionary objects during an upgrade or migration.

      • Skipping SPDD can result in inconsistencies between the data dictionary and the ABAP programs, leading to runtime errors and system issues.

      • SPDD is responsible for a...

    • Answered by AI
    • Q8. Why is SPDD need to be performed before execution phase and SPAU after execution?
    • Ans. 

      SPDD is performed before execution phase to adjust dictionary objects, while SPAU is performed after execution to adjust repository objects.

      • SPDD is performed before execution phase to adjust dictionary objects to the new release of SAP system.

      • SPAU is performed after execution to adjust repository objects like programs, function modules, screens, etc.

      • SPDD helps in adjusting the data dictionary objects to the new release...

    • Answered by AI
    • Q9. Can we perform SPAU before execution?
    • Ans. 

      Yes, SPAU can be performed before execution.

      • SPAU can be performed to adjust modifications before executing a system upgrade or migration.

      • It allows for resolving any inconsistencies in custom objects before the actual upgrade.

      • Performing SPAU beforehand can help streamline the upgrade process and reduce downtime.

      • It is recommended to review and adjust modifications using SPAU prior to the upgrade to ensure a smooth transi

    • Answered by AI
    • Q10. Which process of SWPM will be used for export/import?
    • Ans. 

      The export/import process in SWPM is performed using the R3load tool.

      • R3load tool is used for exporting and importing data during system migrations/conversions.

      • Export/import process involves extracting data from source system and loading it into target system.

      • R3load tool is part of Software Provisioning Manager (SWPM) toolset.

      • Export/import process is crucial for transferring SAP system data between systems.

    • Answered by AI
    • Q11. What processes will be used for shipping the files in case of parallel export/import?
    • Ans. 

      Files can be shipped in parallel export/import using tools like Rsync, SCP, FTP, or cloud storage services.

      • Use tools like Rsync for efficient file transfer

      • SCP (Secure Copy Protocol) can be used for secure file transfer

      • FTP (File Transfer Protocol) is another option for transferring files

      • Utilize cloud storage services like AWS S3 or Google Cloud Storage for large file transfers

    • Answered by AI
    • Q12. Can we restore backup of HANA 1.0 on HANA 2.0 ?
    • Ans. 

      No, backup of HANA 1.0 cannot be restored on HANA 2.0 due to compatibility issues.

      • Backup of HANA 1.0 is not compatible with HANA 2.0 due to differences in architecture and features.

      • Data structures and formats may have changed between the two versions, leading to potential data corruption if restored.

      • It is recommended to perform a system copy or migration instead of trying to restore a backup from HANA 1.0 to HANA 2.0.

    • Answered by AI
    • Q13. Why do we need shadow instance?
    • Ans. 

      Shadow instances are used for testing and validation purposes before making changes to the production system.

      • Shadow instances allow for testing system changes without impacting the production environment.

      • They are used to validate migration or conversion processes before applying them to the live system.

      • Helps in identifying any potential issues or errors that may arise during the actual migration/conversion.

      • Provides a s...

    • Answered by AI
    • Q14. How is shadow instance created and where is it created? How much extra space it will require and what tables will it be stored in?
    • Ans. 

      Shadow instance is created for system copy or migration, requires extra space, stored in database tables.

      • Shadow instance is created using software tools like SAP SWPM (Software Provisioning Manager) during system copy or migration.

      • It is created on the same server as the original instance, but with a different SID (System ID).

      • Extra space required for shadow instance depends on the size of the original instance and the d...

    • Answered by AI
    • Q15. In case of oracle, it creates an additional tablespace during upgrade. How does it work in SAP HANA and Sybase?
    • Ans. 

      SAP HANA and Sybase do not create additional tablespaces during upgrade like Oracle.

      • SAP HANA and Sybase do not follow the same approach as Oracle in creating additional tablespaces during upgrade.

      • In SAP HANA, data is stored in memory and does not require separate tablespaces like Oracle.

      • Sybase also does not create additional tablespaces during upgrade, as it follows a different database structure.

      • Both SAP HANA and Syba...

    • Answered by AI
    • Q16. Is it possible to upgrade without creating Shadow instance?
    • Ans. 

      Yes, it is possible to upgrade without creating a Shadow instance.

      • Upgrade can be performed directly on the existing instance without the need for a Shadow instance.

      • This approach may save time and resources by avoiding the creation of a separate instance for the upgrade process.

      • However, it is important to carefully plan and execute the upgrade to minimize risks and ensure a successful outcome.

    • Answered by AI
    • Q17. What is HANA Topology?
    • Ans. 

      HANA Topology refers to the layout and configuration of SAP HANA systems and components.

      • HANA Topology includes the distribution of HANA instances across multiple hosts.

      • It also involves the configuration of high availability and disaster recovery setups.

      • Different HANA Topologies include single host, multi-host, scale-out, and distributed systems.

      • Topology decisions impact performance, scalability, and availability of the

    • Answered by AI
    • Q18. How to setup SSO for SAP and HANA ?
    • Ans. 

      Setting up SSO for SAP and HANA involves configuring trust between systems and enabling authentication mechanisms.

      • Configure trust between SAP and HANA systems

      • Enable SAML (Security Assertion Markup Language) for authentication

      • Implement Single Sign-On (SSO) using SAML tokens

      • Use SAP Cloud Identity or other identity providers for SSO setup

    • Answered by AI
    • Q19. As I do not have experience in OS/DB migration, any conceptual knowledge of heterogeneous migration ?
    • Q20. Conceptual knowledge of SAP S/4HANA conversion?
    • Ans. 

      SAP S/4HANA conversion involves migrating from SAP ERP to the next-generation S/4HANA platform.

      • Understanding the differences between SAP ERP and S/4HANA

      • Assessing system landscape and data readiness for conversion

      • Executing the migration process with minimal downtime

      • Validating and testing the converted system for functionality and performance

      • Training end-users on the new S/4HANA system

    • Answered by AI
    • Q21. Basics of SAP BTP.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Prepare with core knowledge. Anything that you read is not going to help, you need to have the hands-on knowledge.

    Skills evaluated in this interview

    Interview experience
    2
    Poor
    Difficulty level
    Easy
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

    Round 1 - Technical 

    (2 Questions)

    • Q1. What are joins in SQL?
    • Ans. 

      Joins in SQL are used to combine rows from two or more tables based on a related column between them.

      • Joins are used to retrieve data from multiple tables based on a related column between them

      • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

      • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

    • Answered by AI
    • Q2. Coding questions in Python
    Round 2 - One-on-one 

    (2 Questions)

    • Q1. E plain project experience and talk of any one project in detail
    • Ans. 

      I have extensive project experience in operations management, including leading a team to improve efficiency and productivity.

      • Led a team in implementing a new inventory management system, resulting in a 20% reduction in stockouts

      • Streamlined the order fulfillment process by reorganizing warehouse layout and optimizing pick routes

      • Implemented performance metrics to track team productivity and identify areas for improvemen

    • Answered by AI
    • Q2. What is exp in pharma
    Round 3 - HR 

    (2 Questions)

    • Q1. Stregnths and weakness
    • Q2. Why are you looking to join axtria
    • Ans. 

      I am looking to join Axtria because of its reputation for innovation and growth opportunities.

      • Impressed by Axtria's track record of innovation in the industry

      • Excited about the potential for growth and advancement within the company

      • Interested in working with a talented team of professionals at Axtria

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Don’t apply for axtria. I answeree all questions well but they in last told that vacancy is on hold. Stupid company.

    Skills evaluated in this interview

    Icore Software Systems Interview FAQs

    How many rounds are there in Icore Software Systems interview?
    Icore Software Systems interview process usually has 1-2 rounds. The most common rounds in the Icore Software Systems interview process are Technical, One-on-one Round and Coding Test.
    How to prepare for Icore Software Systems 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 Icore Software Systems. The most common topics and skills that interviewers at Icore Software Systems expect are CSS, HTML, Javascript, Project Management and Agile.
    What are the top questions asked in Icore Software Systems interview?

    Some of the top questions asked at the Icore Software Systems interview -

    1. OOPS concept expl...read more
    2. SQL join queries, inner,left, outer jo...read more
    3. my sql questions based on quer...read more

    Tell us how to improve this page.

    Icore Software Systems Interview Process

    based on 4 interviews in last 1 year

    Interview experience

    3.3
      
    Average

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.3k Interviews
    Infosys Interview Questions
    3.7
     • 7.5k Interviews
    Wipro Interview Questions
    3.7
     • 5.5k Interviews
    Tech Mahindra Interview Questions
    3.6
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.7k Interviews
    LTIMindtree Interview Questions
    3.9
     • 2.9k Interviews
    Google Interview Questions
    4.4
     • 845 Interviews
    Mphasis Interview Questions
    3.4
     • 789 Interviews
    View all

    Icore Software Systems Reviews and Ratings

    based on 3 reviews

    3.9/5

    Rating in categories

    3.9

    Skill development

    3.9

    Work-life balance

    3.9

    Salary

    3.5

    Job security

    3.9

    Company culture

    3.9

    Promotions

    3.5

    Work satisfaction

    Explore 3 Reviews and Ratings
    Front end Developer
    7 salaries
    unlock blur

    ₹1.6 L/yr - ₹2.2 L/yr

    Software Developer
    5 salaries
    unlock blur

    ₹1 L/yr - ₹3.5 L/yr

    Junior Software Developer
    4 salaries
    unlock blur

    ₹1 L/yr - ₹2 L/yr

    Java Developer
    4 salaries
    unlock blur

    ₹1 L/yr - ₹8.5 L/yr

    Software Tester
    4 salaries
    unlock blur

    ₹1.2 L/yr - ₹2.4 L/yr

    Explore more salaries
    Compare Icore Software Systems with

    TCS

    3.7
    Compare

    Infosys

    3.7
    Compare

    Wipro

    3.7
    Compare

    HCLTech

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