Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Intech Dmls R&D Engineer Interview Questions and Answers

Updated 24 Nov 2021

Intech Dmls R&D Engineer Interview Experiences

1 interview found

R&D Engineer Interview Questions & Answers

user image Anonymous

posted on 24 Nov 2021

I applied via Campus Placement and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Regarding Academic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Was good here good nature

Interview questions from similar companies

Interview Preparation Tips

Round: CGPA SHORTlist
Experience: They selected students who have CGPA greater than 8.5.After the selection was done,we had skype interviews where each student was given a slot.In the interview they ask you about 'tell me about yourself',your projects.You should explain the projects exactly and clearly.They ask you better alternatives for implementing the project.After that on the basis of the project they ask you questions related to that subject.Data structures is very important.After the questions on projects were asked they ask you to write programs on data structures(simple programs). They asked me a program to reverse a singly linked list. After that,if they are impressed with it,they go for databases.One should be thorough with functionalities of each key.If time permits they may ask you puzzles(some of my friends were asked). Quite an easy interview.They give you enough time to think so no worries.People with some interview experience can easily crack this.The main objective of the interviewer is he/she checks whether the student is perfect in the concepts learned.
Tips: Don't be panic.If you don't know anything directly say 'I don't know'. They ask you very easy questions.

General Tips: Don't be panic.Since this is skype interview you can be relaxed.Be cool and focussed .Listen to the interviewer questions carefully.
Skills: Database Management, Algorithms And Data Structures
College Name: VIT Vellore
Motivation: Company works on latest trends like azure,etc and they work on projects related to microsoft.

Interview Preparation Tips

Round: Test
Experience: 1st Round : 30 Aptitude Questions (Difficulty Level-HIGH) with nega
tive marking- My Score 15/30, Highest in the test
+ 2 Coding Questions ( Dyanamic Programming + N-Queens Problem)

Round: Technical Interview
Experience: Technical Interview- Questions based on recurssion DSA, HTML.

General Tips: Just know the project you have done in details , don't bluff
First Interview and got it in single shot.
Skill Tips: Karumanchi for DSA, w3 Schools for web related topics DBMS and SQL from Tutorial point.
Skills:
College Name: NIT Surathkal
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I was interviewed before Apr 2023.

Round 1 - Assignment 

Simple basic application

Round 2 - Technical 

(3 Questions)

  • Q1. Technical knowledge and some more personal information
  • Q2. Related to framework and api part
  • Q3. Php laravel question
Round 3 - HR 

(1 Question)

  • Q1. Final round with salary negotiation

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

A time range is given you can attempt with in that time and once started you cant resume .

  • Q1. 

    Sort String with Alternate Lower and Upper Case

    Given a string STR containing both lowercase and uppercase letters, the task is to sort the string so that the resulting string contains uppercase and lower...

  • Ans. 

    Sort a string with alternate lowercase and uppercase letters in sorted order.

    • Create two separate arrays for lowercase and uppercase letters.

    • Sort both arrays individually.

    • Merge the two arrays alternately to form the final sorted string.

  • Answered by AI
  • Q2. 

    Remove Invalid Parentheses

    Given a string containing only parentheses and letters, your goal is to remove the minimum number of invalid parentheses to make the input string valid and return all possible v...

  • Ans. 

    Given a string with parentheses and letters, remove minimum invalid parentheses to make it valid and return all possible valid strings.

    • Use BFS to explore all possible valid strings by removing parentheses one by one

    • Keep track of visited strings to avoid duplicates

    • Return all unique valid strings obtained after removing minimum number of parentheses

  • Answered by AI
  • Q3. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

    • Start with base cases F(1) and F(2) as 1, then iterate to calculate F(N) efficiently.

    • Time complexity can be optimized to O(N) using dynamic programming.

    • Example: For N = 5, the 5th Fibonacci number is 5.

  • Answered by AI
  • Q4. 

    Find the Kth Row of Pascal's Triangle Problem Statement

    Given a non-negative integer 'K', determine the Kth row of Pascal’s Triangle.

    Example:

    Input:
    K = 2
    Output:
    1 1
    Input:
    K = 4
    Output:
    1 4 6 ...
  • Ans. 

    To find the Kth row of Pascal's Triangle given a non-negative integer K.

    • Create an array to store the values of the Kth row of Pascal's Triangle

    • Use the formula C(n, k) = C(n-1, k-1) + C(n-1, k) to calculate the values

    • Return the array as the output

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as Software Engineer in MumbaiEligibility criteriaNo backlogsMAQ Software interview preparation:Topics to prepare for the interview - Core Java , Data Structures , SQL , Algorithms , OopsTime required to prepare for the interview - 15 daysInterview preparation tips for other job seekers

Tip 1 : Basics of java should be clear 
Tip 2 : Do maximum question on strings and array

Application resume tips for other job seekers

Tip 1 : Atleast 1 good project
Tip 2 : Good ranks on websites like hackerrank , leetcode.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

A simple aptitude test with basic questions asked

Round 2 - Coding Test 

Simple logic based questions.

Round 3 - Technical 

(1 Question)

  • Q1. Basic coding knowledge,SQL,were asked.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Just focus on sql and leetcode
  • Q2. What is 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

    • 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
  • Q3. Reverse the array
  • Ans. 

    Reverse the array of strings

    • Create a new array and iterate through the original array in reverse order, adding each element to the new array

    • Use built-in array methods like reverse() or spread operator for a more concise solution

    • Ensure to handle edge cases like empty array or array with only one element

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just foucs on dsa , sql and leetcode

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Aptitude Test 

Normal aptitude test

Round 2 - Coding Test 

SQL Questions and one problem

Round 3 - HR 

(1 Question)

  • Q1. SQL Questions and Logical Questionsa

I applied via Campus Placement and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

11 Questions

  • Q1. Introduce yourself
  • Ans. 

    I am a software engineer with expertise in developing and maintaining software applications.

    • Proficient in programming languages such as Java, C++, and Python

    • Experienced in developing web applications using frameworks like Spring and Django

    • Skilled in database management and SQL queries

    • Familiar with software development methodologies like Agile and Scrum

    • Strong problem-solving and analytical skills

    • Excellent communication

  • Answered by AI
  • Q2. Given a table storing details of student like enrollment number, graduation date, enrollment date, output the recent 10 graduates details
  • Ans. 

    Output details of recent 10 graduates from a table storing student details.

    • Sort the table by graduation date in descending order.

    • Select the top 10 rows from the sorted table.

    • Output the selected rows.

  • Answered by AI
  • Q3. Find the third largest element from array, give the optimized approach using just half traversal of array.
  • Ans. 

    Optimized approach to find third largest element from array using half traversal.

    • Sort the array in descending order and return the element at index 2.

    • Use a max heap to keep track of the top 3 elements while traversing the array.

    • Use two variables to keep track of the second and third largest elements while traversing the array.

    • Divide the array into two halves and find the maximum and second maximum in each half, then co

  • Answered by AI
  • Q4. Print first character of words in a string 1) using one stack and 2)using an array.
  • Ans. 

    Answering how to print first character of words in a string using one stack and an array.

    • For using one stack, push each character onto the stack and pop when a space is encountered. Print the popped character.

    • For using an array, split the string into words and print the first character of each word.

    • In both cases, handle edge cases like empty string and string with only one word.

  • Answered by AI
  • Q5. Which data structure inserts and deletes in O(1) time and is it possible to create a data structure with insertion, deletion and search retrieval in O(1) time
  • Ans. 

    Hash table. No, it is not possible to create a data structure with all operations in O(1) time.

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

    • Insertion and deletion can be done in O(1) time on average.

    • Search retrieval can also be done in O(1) time on average.

    • However, worst-case scenarios can result in O(n) time complexity.

    • It is not possible to create a data structure with all operations in O(1) time

  • Answered by AI
  • Q6. What are acid properties , how two transactions occur simultaneously while maintaining Acid properties
  • Ans. 

    ACID properties ensure database transactions are reliable. Two transactions can occur simultaneously using locking and isolation.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that a transaction is treated as a single unit of work, either all or none of it is executed.

    • Consistency ensures that a transaction brings the database from one valid state to another.

    • Isolation ensures that co...

  • Answered by AI
  • Q7. What are indexes , example, Is it possible to have more than one clustered index and more than one non clustered index ?
  • Ans. 

    Indexes are used to improve query performance. Multiple clustered and non-clustered indexes can be created on a table.

    • Indexes are used to quickly locate data without scanning the entire table.

    • Clustered index determines the physical order of data in a table.

    • Non-clustered index is a separate structure that contains a copy of the indexed columns and a pointer to the actual data.

    • A table can have only one clustered index, b...

  • Answered by AI
  • Q8. Explain Project done and questions related to project were asked.
  • Q9. Given a array and a number , find whether number can be generated using sum of array members if yes output those numbers
  • Ans. 

    Given an array and a number, find if the number can be generated using sum of array members and output those numbers.

    • Iterate through the array and check if the number can be generated using the sum of array members

    • Use a hash table to store the difference between the number and each array element

    • If the difference is found in the hash table, output the corresponding array elements

    • If no such combination is found, output '

  • Answered by AI
  • Q10. Time complexity of various data structure operations
  • Ans. 

    Time complexity of data structure operations

    • Arrays: O(1) for access, O(n) for search/insert/delete

    • Linked Lists: O(n) for access/search, O(1) for insert/delete

    • Stacks/Queues: O(1) for access/insert/delete

    • Hash Tables: O(1) for access/insert/delete (average case)

    • Trees: O(log n) for access/search/insert/delete (balanced)

    • Heaps: O(log n) for access/insert/delete

    • Graphs: Varies depending on algorithm used

  • Answered by AI
  • Q11. Difference between span and div tag
  • Ans. 

    Span is an inline element used for styling small portions of text, while div is a block-level element used for grouping and styling larger sections of content.

    • Span is an inline element, div is a block-level element

    • Span is used for styling small portions of text, div is used for grouping larger sections of content

    • Span does not create a new line, div creates a new block-level element

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain your approach , don't be silent make it interactive, reason your answer, prepare acid properties and practice SQL queries for joins and finding sum and average ,referring primary key using foreign keys between two tables, for dsa learn time complexity of data structure and algorithm you explain.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

All three questions are leetcode medium level.

Round 2 - Aptitude Test 

10th level aptitude problem.

Round 3 - Technical 

(1 Question)

  • Q1. Discuss about my current project and DBMS and mysql
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

JOBS

UKG

No Jobs

LIST OF COMPANIES

Persistent Systems

Locations

SALARIES

Persistent Systems

INTERVIEWS

Blackrock

No Interviews

REVIEWS

L&T Construction

No Reviews

INTERVIEWS

Blackrock

No Interviews

INTERVIEWS

Blackrock

No Interviews

INTERVIEWS

Blackrock

No Interviews

SALARIES

UKG

SALARIES

Intellect Design Arena

Tell us how to improve this page.

Interview Questions from Similar Companies

ABC Consultants Interview Questions
3.9
 • 186 Interviews
Chegg Interview Questions
4.1
 • 155 Interviews
Tracxn Interview Questions
3.1
 • 100 Interviews
Testbook.com Interview Questions
3.6
 • 99 Interviews
MAQ Software Interview Questions
1.9
 • 98 Interviews
CMA CGM Interview Questions
3.9
 • 91 Interviews
Teachnook Interview Questions
3.2
 • 85 Interviews
View all
Assistant Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

R&D Engineer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Manager Sales & Marketing
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Intech Dmls with

State Street Syntel

3.7
Compare

Sterling & Wilson

4.1
Compare

AXA Business Services

3.9
Compare

Chegg

4.1
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