Upload Button Icon Add office photos

Filter interviews by

Deep Thought Systems (P) Interview Questions and Answers

Updated 27 Aug 2023

Deep Thought Systems (P) Interview Experiences

1 interview found

Developer in Residence Interview Questions & Answers

user image Anonymous

posted on 27 Aug 2023

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

I applied via Job Fair and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Case Study 

Video will be given, you've to answer the question asked, in your own understanding

Round 2 - One-on-one 

(1 Question)

  • Q1. What's skillset and Mindset?

Interview Preparation Tips

Interview preparation tips for other job seekers - Understanding process is what they've interviewed

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. DG Automation working Details
  • Q2. SMPS Full foaming SMPS working Details
  • Q3. Tower Power and space details
  • Q4. How will you handle this team working under you?
  • Q5. How will you save fuel?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Asked about the details of my projects
  • Q2. Digital question related to flip flop and mux.
  • Q3. Assertion, constraint questions
  • Q4. Asked about different ways of saving power
Round 2 - Coding Test 

1hr interview, asked checker code, checked protocol knowledge mentioned in Resume, asked assertion.

Round 3 - One-on-one 

(4 Questions)

  • Q1. Draw Digital circuit question based on the waveform
  • Q2. Asked about code coverage in details
  • Q3. 1 technical puzzle, to print infinite series of a given pattern
  • Q4. 1 logical puzzle, 50ball in box of 1 colour and 50ball of 2nd colour in another box, calculate highest probability to choose 1 colour ball.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Be throwly prepared
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Please confirm me a job
  • Ans. 

    Village Sanota, Narela, Delhi, 40

  • Answered Anonymously
  • Q2. Please read confirm
  • Ans. 

    Please confirmation in Hindi

  • Answered Anonymously
Round 2 - HR 

(2 Questions)

  • Q1. Please help me please talk to me. Urgent.
  • Ans. 

    please help me please talk to me. urgent.call me

  • Answered Anonymously
  • Q2. You job may need
Round 3 - HR 

(2 Questions)

  • Q1. Please confirm me a job
  • Q2. Kab tak ho Paigah
Round 4 - HR 

(2 Questions)

  • Q1. Please show me come from
  • Q2. Please come for me job date
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Case Study 

There were two rounds of interviews, which included a case study. It felt more like a discussion than a formal interview. Although I was not selected, the overall experience throughout the process was positive. The HR team was very supportive; in fact, they notified me about my non-selection, which is uncommon in the industry.

Round 2 - Technical 

(1 Question)

  • Q1. Related to my profile
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Check if the linked list is palindrome or not
  • Ans. 

    To check if a linked list is a palindrome, compare the first half of the list with the reversed second half.

    • Traverse the linked list to find the middle node

    • Reverse the second half of the linked list

    • Compare the first half with the reversed second half to check for palindrome

  • Answered by AI
  • Q2. C string questions
Round 2 - Technical 

(2 Questions)

  • Q1. Operating systems questions
  • Q2. Linked list and system design question

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

There were around 60 questions and negative marking was also there

Round 2 - Technical 

(4 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a Full Stack Developer with experience in front-end and back-end technologies.

    • Proficient in HTML, CSS, JavaScript for front-end development

    • Skilled in Node.js, Express, MongoDB for back-end development

    • Experience with React.js and Angular for building interactive web applications

  • Answered by AI
  • Q2. What is diamond problem
  • Ans. 

    Diamond problem is a common issue in multiple inheritance where a class inherits from two classes that have a common ancestor.

    • Occurs in languages that support multiple inheritance like C++

    • Results in ambiguity when calling methods or accessing attributes from the common ancestor class

    • Can be resolved using virtual inheritance or interfaces

  • Answered by AI
  • Q3. Run length encoding dsa problem
  • Ans. 

    Run length encoding is a data compression technique that replaces repeated characters with a count and single character.

    • Iterate through the input array of strings

    • Count the number of consecutive characters in each string

    • Replace consecutive characters with count and character

  • Answered by AI
  • Q4. Rotate an array by d times
  • Ans. 

    Rotate an array of strings by d times

    • Create a new array and copy elements from original array based on rotation index

    • Use modulo operator to handle cases where d is greater than array length

    • Handle edge cases like empty array or d being negative

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology, Surathkal and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are the HR function?
  • Ans. 

    HR functions include recruitment, training, performance management, employee relations, and compliance.

    • Recruitment - Attracting, selecting, and hiring employees.

    • Training - Providing employees with necessary skills and knowledge.

    • Performance Management - Evaluating and improving employee performance.

    • Employee Relations - Handling conflicts and promoting a positive work environment.

    • Compliance - Ensuring adherence to labor

  • Answered by AI
  • Q2. What are the principle of HR?
  • Ans. 

    The principles of HR involve treating employees fairly, promoting diversity and inclusion, ensuring compliance with laws and regulations, and fostering a positive work culture.

    • Fair treatment of employees is essential in HR practices.

    • Promoting diversity and inclusion leads to a more innovative and productive workforce.

    • Compliance with laws and regulations ensures a safe and legal work environment.

    • Fostering a positive wor

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be onfident
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. It is better not to ask or not to attend interview in Iron System.
  • Q2. It is better not to ask or not to attend the Interview in iron System.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join don't attend interviews in the iron system.
HR is an idiot. and the INterview panellist are idiot brand ambassador

Deep Thought Systems (P) Interview FAQs

How many rounds are there in Deep Thought Systems (P) interview?
Deep Thought Systems (P) interview process usually has 3 rounds. The most common rounds in the Deep Thought Systems (P) interview process are Resume Shortlist, Case Study and One-on-one Round.
How to prepare for Deep Thought Systems (P) 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 Deep Thought Systems (P). The most common topics and skills that interviewers at Deep Thought Systems (P) expect are C, Computer science, Web Technologies, MySQL and Apache.

Tell us how to improve this page.

Interview Questions from Similar Companies

Indus Towers Interview Questions
3.8
 • 173 Interviews
Nvidia Interview Questions
3.7
 • 104 Interviews
BT Business Interview Questions
4.1
 • 77 Interviews
Arista Networks Interview Questions
4.2
 • 43 Interviews
ITI Interview Questions
3.7
 • 34 Interviews
ENH iSecure Interview Questions
4.0
 • 29 Interviews
Seagate Interview Questions
3.4
 • 17 Interviews
View all

Deep Thought Systems (P) Reviews and Ratings

based on 2 reviews

4.1/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

2.4

Salary

2.4

Job security

3.8

Company culture

2.4

Promotions

3.1

Work satisfaction

Explore 2 Reviews and Ratings
Data Scientist
3 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Explore more salaries
Compare Deep Thought Systems (P) with

Indus Towers

3.8
Compare

BT Business

4.1
Compare

Nvidia

3.7
Compare

Colt Technology Services

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