Upload Button Icon Add office photos

Filter interviews by

IIIT Hyderabad Interview Questions and Answers

Updated 7 Nov 2024

IIIT Hyderabad Interview Experiences

Popular Designations

7 interviews found

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

(1 Question)

  • Q1. About experience
Round 2 - Technical 

(3 Questions)

  • Q1. Rules and Regulations of Govt
  • Ans. 

    Rules and regulations set by the government to govern various aspects of society and ensure compliance.

    • Government rules and regulations are established to maintain order and protect the rights of citizens.

    • They cover areas such as taxation, employment, health and safety, education, and environmental protection.

    • Examples include labor laws, building codes, traffic regulations, and food safety standards.

    • Non-compliance with...

  • Answered by AI
  • Q2. Purchase Procedures
  • Q3. Project Management

Assistant Registrar Interview Questions asked at other Companies

Q1. What is your SOP & SWOC
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Details on PhD research and fundamentals of subject
Round 2 - Technical 

(1 Question)

  • Q1. Brief presentation (10-15 minutes) on a particular topic suggested by the PI

Post Doctoral Fellow Interview Questions asked at other Companies

Q1. If you have to synthesize a new material and do not have much literature on it, how will you proceed.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at International Institute of Information Technology (IIIT), Allahabad and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Good Questions of dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - Good tips

Structural Engineer Interview Questions asked at other Companies

Q1. 1. Find weight and COG of an irrrgular shape. Unit weight of member was given. 2. Calculate force required for COG shift. W load was applied at center of rectangle and we had to calculate forces at all four corners to shift the cog. 3. SFD ... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was not so tough and not so easy

Project Associate Interview Questions asked at other Companies

Q1. What is an API? Why APIs are so popular these days? What is API Management? Why we need an API Management tool such as Apigee Edge? What is REST? What is the difference between SOAP & REST API ? What is API Proxy? What are the different... read more
View answer (1)

IIIT Hyderabad interview questions for popular designations

 Assistant Manager

 (1)

 Assistant Registrar

 (1)

 FPGA and RTL Design Engineer

 (1)

 Post Doctoral Fellow

 (1)

 Project Associate

 (1)

 Research Intern

 (1)

 Structural Engineer

 (1)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design a circuit to detect multiples of 4 using digitals
  • Ans. 

    Design a circuit to detect multiples of 4 using digital logic

    • Use a counter to keep track of the number of bits received

    • Implement a logic to check if the last two bits are 0 (indicating a multiple of 4)

    • Output a signal when the condition is met

  • Answered by AI

FPGA and RTL Design Engineer Interview Questions asked at other Companies

Q1. How will I write Verilog Code to exchange the data of two FF Without Using Temp FF? Now Check the hold and Setup Violation.
View answer (1)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Newspaper Ad and was interviewed in Mar 2023. 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 - Assignment 

PPt framing on Entrepreneurship Project

Round 3 - One-on-one 

(1 Question)

  • Q1. Personal details and questions related to previous experiences and relationship with current job profile

Assistant Manager Interview Questions asked at other Companies

Q1. You are Handling cash operations then how you manage operations with sales ?
View answer (87)

I applied via website and was interviewed before Jun 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Assignment 

Coding questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Round with PhD scholars
  • Q2. Tell me about regression
  • Ans. 

    Regression is a statistical method used to analyze the relationship between two or more variables.

    • It is used to predict the value of a dependent variable based on the value of one or more independent variables.

    • Linear regression is a common type of regression that assumes a linear relationship between the variables.

    • Nonlinear regression can be used when the relationship between the variables is not linear.

    • Regression can ...

  • Answered by AI
Round 4 - One-on-one 

(4 Questions)

  • Q1. Round with professor
  • Q2. What is the goal of this internship
  • Q3. Where did you work previously?
  • Q4. Any professor who can recommend you?
  • Ans. 

    Yes, Dr. John Doe can recommend me.

    • Dr. John Doe was my supervisor during my undergraduate research project.

    • He can attest to my research skills and work ethic.

    • I have also maintained contact with him and kept him updated on my academic progress.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - go for your interview guys with these information

Skills evaluated in this interview

Research Intern Interview Questions asked at other Companies

Q1. Minimum no of steps needed to find the value of a nth order polynomial by making calls to a function that can compute the value of a 1st order polynomial( ax+b ). What is the answer if we can do parallel processing which allows us to call t... read more
View answer (1)

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between useMemo and useCallback ?
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to memoize a computed value and recompute it only when its dependencies change.

    • useCallback is used to memoize a callback function and prevent unnecessary re-renders.

    • Example: useMemo can be used to memoize the result of a complex computation, while useCallback can be used to memoize an event handler function.

  • Answered by AI
  • Q2. How we do error handling in js ?
  • Ans. 

    Error handling in JavaScript involves using try-catch blocks, throwing errors, and using error objects.

    • Use try-catch blocks to catch errors and handle them gracefully

    • Throw errors using the throw keyword to indicate when something goes wrong

    • Use error objects like Error, SyntaxError, TypeError, etc. to provide more information about the error

    • Handle asynchronous errors using promises and the .catch() method

  • Answered by AI
  • Q3. What is Promises ? Write a Polyfill of Promise.all()
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • Promise.all() takes an array of promises and returns a single promise that resolves when all of the input promises have resolved.

    • A polyfill for Promise.all() can be implemented using a combination of Promise and Array.prototype.reduce().

  • Answered by AI
Round 2 - Assignment 

Frontend assignment make the CRUD application using of reactj.s

Interview Preparation Tips

Topics to prepare for Interview Kickstart Front end Developer interview:
  • Reactjs
  • Javascript
  • NextJs
  • HTML
  • CSS
Interview preparation tips for other job seekers - i submit my assignment, but hr not giving feedback for next interview rounds. They do not reply for my messages after submit the assignment.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. General questions about you, with intro etc
Round 2 - One-on-one 

(1 Question)

  • Q1. General questions abot your work / exp
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Internshala and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself and our introduction
  • Q2. What is your knowledge about business development
  • Q3. Why did you choose marketing field
Round 2 - One-on-one 

(4 Questions)

  • Q1. Introduce yourself
  • Q2. What are the skills which possess
  • Q3. What is your educational and professional background
  • Q4. What is your expectations from the company

Interview Preparation Tips

Topics to prepare for DevTown Business Development Executive interview:
  • Communication Skills
  • marketing skills
Interview preparation tips for other job seekers - As per my experience company is looking for active personalities who are good at communication . Interview not that difficult.

IIIT Hyderabad Interview FAQs

How many rounds are there in IIIT Hyderabad interview?
IIIT Hyderabad interview process usually has 2 rounds. The most common rounds in the IIIT Hyderabad interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for IIIT Hyderabad 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 IIIT Hyderabad. The most common topics and skills that interviewers at IIIT Hyderabad expect are C++, Embedded C, RTOS, FPGA and Firmware.
What are the top questions asked in IIIT Hyderabad interview?

Some of the top questions asked at the IIIT Hyderabad interview -

  1. Design a circuit to detect multiples of 4 using digit...read more
  2. tell me about regress...read more
  3. Rules and Regulations of G...read more

Tell us how to improve this page.

IIIT Hyderabad Interview Process

based on 8 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

IIT Bombay Interview Questions
4.5
 • 27 Interviews
IIT Madras Interview Questions
4.1
 • 26 Interviews
IIT Delhi Interview Questions
4.3
 • 18 Interviews
DevTown Interview Questions
3.6
 • 15 Interviews
IIT Kharagpur Interview Questions
4.2
 • 14 Interviews
IIT Kanpur Interview Questions
4.1
 • 12 Interviews
BITS Pilani Interview Questions
4.2
 • 9 Interviews
IIT Guwahati Interview Questions
4.5
 • 9 Interviews
IIT Roorkee Interview Questions
4.4
 • 6 Interviews
View all

IIIT Hyderabad Reviews and Ratings

based on 77 reviews

4.3/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

3.7

Salary

4.0

Job security

4.0

Company culture

3.5

Promotions

4.0

Work satisfaction

Explore 77 Reviews and Ratings
Project Associate
24 salaries
unlock blur

₹1.6 L/yr - ₹9 L/yr

Research Assistant
12 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Junior Research Fellow
12 salaries
unlock blur

₹3.5 L/yr - ₹5.4 L/yr

Research Associate
12 salaries
unlock blur

₹2.9 L/yr - ₹7.2 L/yr

Post Doctoral Fellow
11 salaries
unlock blur

₹6 L/yr - ₹9 L/yr

Explore more salaries
Compare IIIT Hyderabad with

IIT Bombay

4.5
Compare

IIT Delhi

4.3
Compare

BITS Pilani

4.2
Compare

IIT Madras

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