Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Ice Mortgage Technology Software Engineer Level 1 Interview Questions and Answers

Updated 7 Apr 2024

Ice Mortgage Technology Software Engineer Level 1 Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

There was aptitude based MCQ and 1 coding questions and 1 MySQL query

Round 2 - Technical 

(1 Question)

  • Q1. I was asked OOPs concepts, string, collection, version control question and 1 coding question to sort linked list
Round 3 - HR 

(1 Question)

  • Q1. Asked about relocation and gap in education

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy to medium.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. ER diagrams concepts
  • Q2. SQL Joins and types of sql statements
  • Ans. 

    SQL Joins are used to combine data from multiple tables. There are four types of SQL statements: SELECT, INSERT, UPDATE, and DELETE.

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

    • The four types of SQL statements are SELECT, INSERT, UPDATE, and DELETE.

    • SELECT is used to retrieve data from one or more tables.

    • INSERT is used to add new data to a table.

    • UPDATE is used to modi...

  • Answered by AI
  • Q3. Java string and APIs
  • Q4. A simple loop code was given to find out the time complexity

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviews questions were very basic. If your basics are clear they know that you are a trainable resource. As there are wide variety of projects in Cerner, so just the fundamemtals need to be in place, rest they coach you in the 3-6months training period.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Dec 2022. There were 3 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to SQL
  • Q2. Few Aptitude Questions as well
Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to SQL
  • Q2. Joins with DDL, DML
  • Ans. 

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

    • Joins are used in SQL to retrieve data from multiple tables based on a related column

    • DDL (Data Definition Language) is used to define the structure of database objects like tables, views, etc.

    • DML (Data Manipulation Language) is used to manipulate data in the database like inserting, updating, deleting records

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. SQL, C, DBMS previous company roles and responsibilities Behavioral questions
Round 2 - Technical 

(1 Question)

  • Q1. SQL C Oops Data structure Behavioral question
Round 3 - Versant Test 

(1 Question)

  • Q1. Verbal communication test by Pearson 60/100 is cutoff to clear

Interview Preparation Tips

Interview preparation tips for other job seekers - SQL is important

Behavioral questions

Good communication

I applied via Campus Placement and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Most questions based on oops concepts(theory). At the interviewer asked me to write any searching or sorting algorithm.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good on basics. If you don't know the answer just tell that you don't know(in polite way).

Interview Questionnaire 

21 Questions

  • Q1. AVL tree balance checking
  • Q2. Median of 2 sorted arrays in O(log N) time complexity and O(1) space complexity
  • Ans. 

    Find median of 2 sorted arrays in O(log N) time complexity and O(1) space complexity

    • Use binary search to find the partition point in both arrays

    • Calculate the median based on the partition point and array sizes

    • Adjust the partition points based on the median value

    • Repeat until the partition points are at the median

    • Handle edge cases such as empty arrays and uneven array sizes

  • Answered by AI
  • Q3. Strings Anagram in O(1) space complexity
  • Ans. 

    Anagram of strings in O(1) space complexity

    • Use a fixed size array of integers to store the frequency of characters in the first string

    • Iterate through the second string and decrement the frequency of each character in the array

    • If all the frequencies are zero, then the strings are anagrams

    • Return true or false accordingly

  • Answered by AI
  • Q4. Level order traversal of a tree using Queue
  • Ans. 

    Level order traversal of a tree using Queue

    • Create a queue and add the root node to it

    • While the queue is not empty, remove the front node and print its value

    • Add the left and right child nodes of the removed node to the queue

    • Repeat until the queue is empty

  • Answered by AI
  • Q5. Reverse level order traversal of a tree using Queue
  • Ans. 

    Reverse level order traversal of a tree using Queue

    • Create a queue and push the root node into it

    • While the queue is not empty, pop the front node and push its children into the queue

    • Add the popped node to a stack

    • Once the queue is empty, pop elements from the stack and print them

  • Answered by AI
  • Q6. BFS and DFS Difference
  • Ans. 

    BFS and DFS are graph traversal algorithms. BFS explores nodes level by level while DFS explores nodes depth by depth.

    • BFS uses a queue while DFS uses a stack or recursion.

    • BFS is optimal for finding shortest path while DFS is optimal for finding a path between two nodes.

    • BFS requires more memory as it stores all the nodes at each level while DFS requires less memory.

    • BFS can be used to find connected components while DFS

  • Answered by AI
  • Q7. OS Concepts – Starvation, Demand Paging, Virtual Memory, Deadlocks
  • Q8. Parenthesis Balance Checking
  • Q9. Three Jars - 1 with apples, 1 with oranges, 1 with apples and oranges. All of them wrongly labelled. Find min no of attempts to find the correct nature of boxes
  • Q10. Find product of each element of an array except that element in O(N) time complexity without using / operation
  • Ans. 

    Find product of each element of an array except that element in O(N) time complexity without using / operation

    • Use prefix and suffix products

    • Multiply prefix and suffix products for each element to get the final product

    • Handle edge cases where array has 0 or 1 element separately

  • Answered by AI
  • Q11. Recursively deleting linked list
  • Ans. 

    Recursively delete a linked list

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null, return

    • Recursively call the function with the next node as input

    • Delete the current node

  • Answered by AI
  • Q12. Recursively deleting linked list from end
  • Ans. 

    Recursively delete a linked list from the end.

    • Start from the head and recursively traverse to the end of the list.

    • Delete the last node and set the second last node's next pointer to null.

    • Repeat until the entire list is deleted.

    • Use a recursive function to implement the deletion process.

  • Answered by AI
  • Q13. Recursively deleting tree
  • Ans. 

    Recursively delete a tree by deleting all its child nodes and then the parent node.

    • Start from the leaf nodes and delete them first.

    • Then move up to the parent nodes and delete them.

    • Repeat until the root node is deleted.

    • Use post-order traversal to ensure child nodes are deleted before parent nodes.

  • Answered by AI
  • Q14. Recursively deleting from end
  • Ans. 

    Recursively delete elements from the end of an array.

    • Create a recursive function that removes the last element of the array.

    • Call the function recursively until the desired number of elements are removed.

    • Handle edge cases such as empty arrays and removing more elements than the array contains.

  • Answered by AI
  • Q15. Difference between Floyd Warshall and Djikstra
  • Ans. 

    Floyd Warshall finds shortest path between all pairs of vertices while Djikstra finds shortest path from a single source.

    • Floyd Warshall is used for dense graphs while Djikstra is used for sparse graphs.

    • Floyd Warshall has a time complexity of O(n^3) while Djikstra has a time complexity of O((n+m)logn).

    • Floyd Warshall can handle negative edge weights while Djikstra cannot.

    • Floyd Warshall can detect negative cycles while Dj

  • Answered by AI
  • Q16. Shortest path between 2 points in 2-D space in O(log N) time
  • Ans. 

    There is no known algorithm to find shortest path in 2-D space in O(log N) time.

    • The best known algorithm for finding shortest path in 2-D space is Dijkstra's algorithm which has a time complexity of O(N^2).

    • Other algorithms like A* and Bellman-Ford have better time complexity but still not O(log N).

    • If the points are on a grid, Lee algorithm can be used which has a time complexity of O(N).

  • Answered by AI
  • Q17. Design a system for putting newspapers using classes and functions taking different aspects into account
  • Ans. 

    Design a system for putting newspapers using classes and functions

    • Create a Newspaper class with attributes like title, date, and content

    • Create a Publisher class with methods to publish and distribute newspapers

    • Create a Subscriber class with methods to subscribe and receive newspapers

    • Use inheritance to create different types of newspapers like daily, weekly, etc.

    • Implement a database to store newspaper information and ha

  • Answered by AI
  • Q18. SQL commands
  • Q19. Career Prospects - Long Term Plans
  • Q20. Why not higher studies?
  • Ans. 

    I believe practical experience is more valuable than higher studies.

    • I have gained valuable experience through internships and projects.

    • I prefer hands-on learning and problem-solving over theoretical knowledge.

    • I am constantly learning and improving my skills through online courses and workshops.

  • Answered by AI
  • Q21. Machine Learning Concepts - Based on my projects

Interview Preparation Tips

Round: Test
Experience: All Computer Science Topics Covered: Data Structures, Algorithms, Object Oriented Systems, C, C++, Operating Systems, Computer Architectures, Databases, SQL, Basic Quantitative Aptitude
Tips: Solve all of them. Cut off's generally go high.
Duration: 30 minutes
Total Questions: 30

Round: Interview
Experience: Nice Experience. Interviewer was friendly. He wanted exact solutions.
Tips: Be thorough with everything and your projects.

Round: Interview
Experience: Nice Experience. Interviewer was friendly. He wanted exact solutions.
Tips: Be thorough with everything and your projects.

Round: Interview
Experience: Nice Experience. Interviewer was friendly.
Tips: Do not fake yourself.

General Tips: Be thorough with all CS related concepts and projects.
Skill Tips: ""Be thorough.""
Skills: Algorithms, Data Structures, Operating Systems, Machine Learning, SQL, Operating Systems, Computer Architecture, Data Analytics
College Name: IIT Kharagpur
Motivation: Kind of application oriented work and the rising nature of the company. Obviously money also.
Funny Moments: Many funny questions and answers like did you have lunch, when did you last eat, etc

Skills evaluated in this interview

I was interviewed before Jun 2016.

Interview Questionnaire 

7 Questions

  • Q1. What is JVM?
  • Ans. 

    JVM stands for Java Virtual Machine. It is a virtual machine that executes Java bytecode.

    • JVM is a part of the Java Runtime Environment (JRE).

    • It provides a platform-independent execution environment for Java programs.

    • JVM interprets Java bytecode and translates it into machine-specific instructions.

    • It manages memory, handles garbage collection, and provides runtime environment for Java applications.

    • JVM supports Just-In-T...

  • Answered by AI
  • Q2. Is JVM platform independent?
  • Ans. 

    Yes, JVM is platform independent.

    • JVM stands for Java Virtual Machine.

    • It provides a runtime environment for executing Java bytecode.

    • JVM abstracts the underlying hardware and operating system, making Java programs portable.

    • Java programs can run on any platform that has a compatible JVM installed.

    • JVM implementations exist for various operating systems, such as Windows, macOS, Linux, etc.

  • Answered by AI
  • Q3. What is software testing?
  • Ans. 

    Software testing is the process of evaluating a software application or system to ensure it meets the specified requirements.

    • Software testing is done to identify defects or errors in the software.

    • It involves executing the software with test cases and comparing the actual results with expected results.

    • Testing can be performed at different levels such as unit testing, integration testing, system testing, and acceptance t...

  • Answered by AI
  • Q4. What is Inheritence in Java
  • Ans. 

    Inheritance in Java allows a class to inherit properties and methods from another class.

    • Inheritance is a fundamental concept in object-oriented programming.

    • It promotes code reusability and allows for the creation of hierarchical relationships between classes.

    • The class that is being inherited from is called the superclass or parent class, while the class that inherits is called the subclass or child class.

    • The subclass c...

  • Answered by AI
  • Q5. How was your technical round
  • Ans. 

    My technical round was challenging but I was able to showcase my skills and problem-solving abilities.

    • I was asked to write code on a whiteboard to solve a specific problem.

    • I had to explain my thought process and reasoning behind my code.

    • I was given a technical scenario and asked how I would approach solving it.

    • I was asked about my experience with specific programming languages and technologies.

    • I was tested on my proble...

  • Answered by AI
  • Q6. Why do you want join Tavant
  • Ans. 

    I want to join Tavant because of its innovative projects and collaborative work environment.

    • Tavant's reputation for cutting-edge technology and innovative solutions

    • Opportunity to work with a talented and diverse team

    • Desire to contribute to impactful projects and make a difference

    • Positive company culture and focus on employee growth and development

  • Answered by AI
  • Q7. When can you join
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I can start within 2 weeks of receiving an offer.

    • I need to give notice to my current employer.

    • I may need time to relocate if necessary.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Written test for aptitude and technical questions
Duration: 30 minutes
Total Questions: 30

Round: Group Discussion
Experience: Put forwarded my point inbthe group.
Duration: 15 minutes

Round: Managerial round
Experience: I had been asked why do you want to join Tavant? How would your skill set add value to the organization?

College Name: BMS College Of Engineering, Bangalore

Skills evaluated in this interview

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per the norms of our institute’s placement cell. For Oracle I laid emphasis on my programming skills and projects related to it.

Round: Test
Experience: The first round was the written test that comprised of 5 sections – vocabulary, aptitude, pattern matching, logical reasoning and programming. The questions in the programming section were asked from data structures and C++. The questions in the programming section were mainly from trees (from data structures). Around 400 students appeared for their written test out of which around 100 were shortlisted.

Round: HR Interview
Experience: The next round was the interview round. They gave me some puzzles to solve and a program to write. One of the puzzles that I remember was that if I were to be given an egg then how would I determine its durability, i.e. how would I determine that from which floor do I need to throw the egg from so that the egg does not break if thrown from any floor below it.
For the coding question I was given a mathematical formula and I was asked to devise a code such that the program uses the formula and gives the output.
Tips: Prepare for Data Structures as well as the commonly asked puzzles for Oracle.

College Name: IIT ROORKEE
Motivation: Oracle is a reputed company in the space of software and ITeS. It had come to our campus with five profiles. The best means to know about all of them is to attend the pre-placement talk of the company.

I was interviewed before May 2016.

Interview Preparation Tips

Round: Test
Experience: First section had questions on object oriented programming concepts and some basic questions related to c++
In the second section tables were given and we were asked to write the queries for the given questions.
Duration: 1 hour
Total Questions: 20

College Name: IIITDM Jabalpur

I applied via Company Website and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked python memory management, string manipulations, regex, and about my current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep strong hold on python basics and data structure
Contribute & help others!
anonymous
You can choose to be anonymous

Ice Mortgage Technology Interview FAQs

How many rounds are there in Ice Mortgage Technology Software Engineer Level 1 interview?
Ice Mortgage Technology interview process usually has 3 rounds. The most common rounds in the Ice Mortgage Technology interview process are Aptitude Test, Technical and HR.

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

CAMPUS PLACEMENT

SATI, Vidisha

INTERVIEWS

Skewb Analytics

No Interviews

INTERVIEWS

YASH Technologies

No Interviews

INTERVIEWS

Procter & Gamble

No Interviews

INTERVIEWS

YASH Technologies

No Interviews

Tell us how to improve this page.

Ice Mortgage Technology Software Engineer Level 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Globant Interview Questions
3.8
 • 172 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Thomson Reuters Interview Questions
4.1
 • 112 Interviews
Amadeus Interview Questions
3.9
 • 107 Interviews
UKG Interview Questions
3.1
 • 100 Interviews
Atlassian Interview Questions
3.6
 • 88 Interviews
Temenos Interview Questions
3.3
 • 82 Interviews
View all
Ice Mortgage Technology Software Engineer Level 1 Salary
based on 4 salaries
₹5 L/yr - ₹12 L/yr
26% less than the average Software Engineer Level 1 Salary in India
View more details

Ice Mortgage Technology Software Engineer Level 1 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Document Processor
187 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Analyst
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior QA Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ice Mortgage Technology with

Tavant Technologies

3.8
Compare

LendingKart

3.1
Compare

Sammaan Capital Limited

3.7
Compare

HDFC Bank

3.9
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