Upload Button Icon Add office photos

Filter interviews by

Tech Prescient Interview Questions and Answers

Updated 15 Mar 2025
Popular Designations

10 Interview questions

A Devops Engineer was asked 3mo ago
Q. Write an Azure DevOps pipeline to deploy a simple Python application to an Azure VM. Use Terraform to set up the VM and install Python on it.
Ans. 

Deploy a Python app on Azure VM using Azure DevOps pipeline and Terraform for VM setup.

  • Use Terraform to provision an Azure VM with Python installed.

  • Create an Azure DevOps pipeline with stages for build and deployment.

  • Use a YAML file for the Azure DevOps pipeline configuration.

  • Example Terraform script to create a VM: 'resource "azurerm_linux_virtual_machine" { ... }'

  • Use 'az vm run-command invoke' to execute command...

View all Devops Engineer interview questions
A Devops Engineer was asked 3mo ago
Q. Scenario: Elasticsearch fails to start. How would you debug and fix it to get it up and running?
Ans. 

Debugging Elasticsearch startup failures involves checking logs, configurations, and system resources.

  • Check Elasticsearch logs located in the 'logs' directory for error messages (e.g., 'elasticsearch.log').

  • Verify the configuration file (elasticsearch.yml) for syntax errors or incorrect settings.

  • Ensure that the JVM version is compatible with the Elasticsearch version being used.

  • Check system resources like memory an...

View all Devops Engineer interview questions
A Senior Software Engineer was asked 5mo ago
Q. Design a High-Level Design (HLD) for generating the Fibonacci series.
Ans. 

Design a system to generate Fibonacci series efficiently.

  • Fibonacci series starts with 0 and 1, and each subsequent number is the sum of the previous two.

  • Example: The first 10 numbers are 0, 1, 1, 2, 3, 5, 8, 13, 21, 34.

  • Can be implemented using recursion, iteration, or dynamic programming.

  • For large n, use matrix exponentiation or Binet's formula for efficiency.

  • Consider edge cases: n = 0 (output 0), n = 1 (output 0,...

View all Senior Software Engineer interview questions
A Software Engineer was asked 8mo ago
Q. What are the useMemo and useCallback hooks?
Ans. 

useMemo and useCallback are React hooks used for performance optimization by memoizing values and functions respectively.

  • useMemo is used to memoize the result of a function so that it is only recomputed when its dependencies change.

  • useCallback is used to memoize a function instance so that it is not recreated on every render unless its dependencies change.

  • Both hooks help in optimizing performance by preventing unn...

View all Software Engineer interview questions
A Software Engineer was asked 8mo ago
Q. What is the purpose of keys in React lists?
Ans. 

Keys in React lists are used to uniquely identify elements and improve performance by helping React identify which items have changed, are added, or are removed.

  • Keys help React identify which items have changed, are added, or are removed in a list of elements.

  • Keys should be unique among siblings but do not need to be globally unique.

  • Using keys improves performance by helping React efficiently update the UI without...

View all Software Engineer interview questions
A Software Engineer was asked 8mo ago
Q. What is Axios and what are interceptors used for in it?
Ans. 

Axios is a popular JavaScript library for making HTTP requests in web applications. Interceptors are used to intercept and modify HTTP requests and responses.

  • Axios is a promise-based HTTP client for the browser and Node.js.

  • Interceptors in Axios allow you to run middleware functions before a request is sent or after a response is received.

  • Interceptors can be used for logging, authentication, error handling, and mor...

View all Software Engineer interview questions
A Software Engineer was asked 8mo ago
Q. What are props in React and how are they different from state?
Ans. 

Props are used to pass data from parent to child components in React, while state is used to manage data within a component.

  • Props are read-only and cannot be modified by the child component

  • Props are passed down from parent to child components

  • State is mutable and can be changed within the component

  • State is managed internally by the component

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Engineer was asked 8mo ago
Q. What is a callback in JavaScript?
Ans. 

A callback in JS is a function passed as an argument to another function, to be executed later.

  • Callback functions are commonly used in event handling, asynchronous programming, and AJAX requests.

  • They allow for more flexible and dynamic code execution.

  • Example: setTimeout(function(){ console.log('Hello') }, 1000);

View all Software Engineer interview questions
A Technical Lead was asked
Q. Application Performance
Ans. 

Application performance is crucial for user experience and overall system efficiency.

  • Monitor key performance indicators such as response time, throughput, and error rates.

  • Optimize code and database queries to improve performance.

  • Use caching mechanisms to reduce load on servers and improve response times.

  • Implement load balancing and scaling strategies to handle increased traffic.

  • Regularly conduct performance testin...

View all Technical Lead interview questions
A Technical Lead was asked
Q. Node.js in details
Ans. 

Node.js is a runtime environment that allows you to run JavaScript on the server side.

  • Node.js is built on Chrome's V8 JavaScript engine.

  • It uses an event-driven, non-blocking I/O model.

  • Node.js is commonly used for building server-side applications.

  • It has a large ecosystem of open-source libraries and frameworks.

  • Node.js allows for real-time communication with WebSockets.

View all Technical Lead interview questions

Tech Prescient Interview Experiences

6 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is your day-day activities
  • Q2. How do you manage your time
  • Q3. How do you avoid team conflict
Round 2 - Group Discussion 

How do you overcome challenges from client

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident. It is an easy interview to crack

Devops Engineer Interview Questions & Answers

user image Sandesh Nagrale

posted on 15 Mar 2025

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

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Scenario based question on if Elasticsearch fails to start, how to debug and fix it to get it up and running?
  • Ans. 

    Debugging Elasticsearch startup failures involves checking logs, configurations, and system resources.

    • Check Elasticsearch logs located in the 'logs' directory for error messages (e.g., 'elasticsearch.log').

    • Verify the configuration file (elasticsearch.yml) for syntax errors or incorrect settings.

    • Ensure that the JVM version is compatible with the Elasticsearch version being used.

    • Check system resources like memory and dis...

  • Answered by AI
  • Q2. Write a Azure DevOps pipeline to deploy a simple python application to a Azure VM also use terra for to setup a VM and install python on it.
  • Ans. 

    Deploy a Python app on Azure VM using Azure DevOps pipeline and Terraform for VM setup.

    • Use Terraform to provision an Azure VM with Python installed.

    • Create an Azure DevOps pipeline with stages for build and deployment.

    • Use a YAML file for the Azure DevOps pipeline configuration.

    • Example Terraform script to create a VM: 'resource "azurerm_linux_virtual_machine" { ... }'

    • Use 'az vm run-command invoke' to execute commands on ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before the interview. Know each and every word written on your resume.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Assignment 

Given task of creating a simple React todo application

Round 2 - Technical 

(6 Questions)

  • Q1. What are props in React and how are they different from state
  • Q2. What is purpose of keys in React lists?
  • Ans. 

    Keys in React lists are used to uniquely identify elements and improve performance by helping React identify which items have changed, are added, or are removed.

    • Keys help React identify which items have changed, are added, or are removed in a list of elements.

    • Keys should be unique among siblings but do not need to be globally unique.

    • Using keys improves performance by helping React efficiently update the UI without re-r...

  • Answered by AI
  • Q3. What is axios and used of interceptors in it?
  • Ans. 

    Axios is a popular JavaScript library for making HTTP requests in web applications. Interceptors are used to intercept and modify HTTP requests and responses.

    • Axios is a promise-based HTTP client for the browser and Node.js.

    • Interceptors in Axios allow you to run middleware functions before a request is sent or after a response is received.

    • Interceptors can be used for logging, authentication, error handling, and more.

    • Exa...

  • Answered by AI
  • Q4. What is useMemo and useCallback hooks
  • Ans. 

    useMemo and useCallback are React hooks used for performance optimization by memoizing values and functions respectively.

    • useMemo is used to memoize the result of a function so that it is only recomputed when its dependencies change.

    • useCallback is used to memoize a function instance so that it is not recreated on every render unless its dependencies change.

    • Both hooks help in optimizing performance by preventing unnecess...

  • Answered by AI
  • Q5. What are the higher order components?
  • Ans. 

    Higher order components are functions that take a component and return a new component with additional functionality.

    • Higher order components are a common pattern in React for code reuse and logic sharing.

    • They are used to abstract logic out of components and make them more reusable.

    • Examples include withRouter, connect, and withStyles in React.

  • Answered by AI
  • Q6. What is callback in JS?
  • Ans. 

    A callback in JS is a function passed as an argument to another function, to be executed later.

    • Callback functions are commonly used in event handling, asynchronous programming, and AJAX requests.

    • They allow for more flexible and dynamic code execution.

    • Example: setTimeout(function(){ console.log('Hello') }, 1000);

  • Answered by AI
Round 3 - Behavioral 

(2 Questions)

  • Q1. Explain your past experience
  • Q2. Why you want leave current company

Interview Preparation Tips

Topics to prepare for Tech Prescient Software Engineer interview:
  • React.Js
  • Axio
  • Javascript

Skills evaluated in this interview

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

I applied via Instahyre and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DSa Basics and Python
Round 2 - Technical 

(1 Question)

  • Q1. HLD - Fibonacci Series
  • Ans. 

    Design a system to generate Fibonacci series efficiently.

    • Fibonacci series starts with 0 and 1, and each subsequent number is the sum of the previous two.

    • Example: The first 10 numbers are 0, 1, 1, 2, 3, 5, 8, 13, 21, 34.

    • Can be implemented using recursion, iteration, or dynamic programming.

    • For large n, use matrix exponentiation or Binet's formula for efficiency.

    • Consider edge cases: n = 0 (output 0), n = 1 (output 0, 1).

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. API related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Javascript, Web Tech
  • Q2. Application Performance
  • Ans. 

    Application performance is crucial for user experience and overall system efficiency.

    • Monitor key performance indicators such as response time, throughput, and error rates.

    • Optimize code and database queries to improve performance.

    • Use caching mechanisms to reduce load on servers and improve response times.

    • Implement load balancing and scaling strategies to handle increased traffic.

    • Regularly conduct performance testing to ...

  • Answered by AI
  • Q3. Full stack application
  • Q4. Database sql queries
  • Q5. Jira github vscode
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Node.js in details
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript on the server side.

    • Node.js is built on Chrome's V8 JavaScript engine.

    • It uses an event-driven, non-blocking I/O model.

    • Node.js is commonly used for building server-side applications.

    • It has a large ecosystem of open-source libraries and frameworks.

    • Node.js allows for real-time communication with WebSockets.

  • Answered by AI
  • Q2. Eventloop, basic javascript, call, apply, bind
Round 3 - Technical 

(2 Questions)

  • Q1. SQL joins, system architecture design
  • Q2. Aws, ec2, ecs, docker

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Tech Prescient?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 2 pointer array
Round 2 - HR 

(1 Question)

  • Q1. Was more focused on communication skills
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. All the questions were relevant to my domain knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - Gather some good knowledge about the company before appearing for the interview and answer confidently whatever is known.
The rest is in the hands of the interviewer.

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to work profile
  • Q2. Related to interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go well groomed

I applied via Naukri.com and was interviewed in Sep 2019. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Question 1)Tell me about yourself and qualifications?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and experience in web development.

    • Recent graduate with a degree in Computer Science

    • Experience in web development

    • Strong problem-solving skills

    • Proficient in programming languages such as Java, JavaScript, and HTML/CSS

  • Answered by AI
  • Q2. Question 2)What are your hobbies?
  • Ans. 

    My hobbies include reading, hiking, and playing the guitar.

    • Reading: I enjoy reading fiction and non-fiction books in my free time.

    • Hiking: I love exploring nature trails and challenging myself with new hikes.

    • Playing the guitar: I have been playing the guitar for several years and enjoy learning new songs.

  • Answered by AI
  • Q3. Question 3)What do you know about our company?
  • Ans. 

    Our company is a leading tech startup specializing in AI-driven solutions for businesses.

    • Specializes in AI-driven solutions for businesses

    • Considered a leading tech startup in the industry

    • Known for innovative and cutting-edge technology

    • Has a strong focus on research and development

    • Provides services to a wide range of industries

  • Answered by AI
  • Q4. Question 4) Why do you want to join our company?
  • Ans. 

    I want to join your company because of its innovative projects, strong company culture, and opportunities for growth.

    • Innovative projects that align with my interests and skills

    • Strong company culture that values collaboration and employee development

    • Opportunities for growth and advancement within the company

  • Answered by AI
  • Q5. Question 5) Tell me about your training and projects you have done in college?
  • Ans. 

    I completed various training programs and projects during my college years, gaining hands-on experience in different areas.

    • Completed a training program in data analysis using Python and R

    • Developed a mobile application for a class project using Java and Android Studio

    • Participated in a research project on renewable energy sources

    • Completed an internship at a local software company, working on web development projects

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Start by researching about the company and job profile you applied for. Practice common interview questions. Be confident. Ask questions at the end of the interview. Remember your CV details. Arrive on time and stay relaxed.

Tech Prescient Interview FAQs

How many rounds are there in Tech Prescient interview?
Tech Prescient interview process usually has 2-3 rounds. The most common rounds in the Tech Prescient interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Tech Prescient 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 Tech Prescient. The most common topics and skills that interviewers at Tech Prescient expect are Scheduling, Python, Javascript, AWS and Web Services.
What are the top questions asked in Tech Prescient interview?

Some of the top questions asked at the Tech Prescient interview -

  1. What are props in React and how are they different from st...read more
  2. What is axios and used of interceptors in ...read more
  3. Scenario based question on if Elasticsearch fails to start, how to debug and fi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 60%
2-4 weeks 40%
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.8
 • 150 Interviews
HCL Infosystems Interview Questions
3.9
 • 144 Interviews
Data Entry Interview Questions
4.2
 • 109 Interviews
Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Marpu Foundation Interview Questions
4.8
 • 100 Interviews
View all

Tech Prescient Reviews and Ratings

based on 17 reviews

3.6/5

Rating in categories

4.3

Skill development

3.5

Work-life balance

3.6

Salary

3.7

Job security

3.6

Company culture

3.1

Promotions

3.9

Work satisfaction

Explore 17 Reviews and Ratings
Sailpoint Developer

Remote

6-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
26 salaries
unlock blur

₹5.2 L/yr - ₹12 L/yr

Senior Software Engineer
23 salaries
unlock blur

₹10.1 L/yr - ₹21.6 L/yr

Technical Lead
7 salaries
unlock blur

₹19.5 L/yr - ₹34.2 L/yr

Devops Engineer
6 salaries
unlock blur

₹4.2 L/yr - ₹8.7 L/yr

Software Developer
5 salaries
unlock blur

₹4.2 L/yr - ₹6.6 L/yr

Explore more salaries
Compare Tech Prescient with

Marpu Foundation

4.8
Compare

Huawei Technologies

4.0
Compare

HCL Infosystems

3.9
Compare

Z X Learning

4.4
Compare
write
Share an Interview