Upload Button Icon Add office photos

Filter interviews by

Thoughts2Binary Infrastructure Engineer Interview Questions and Answers

Updated 19 May 2025

Thoughts2Binary Infrastructure Engineer Interview Experiences

1 interview found

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

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Write the Terraform scripts needed to create an EC2 instance, RDS database, and VPC?
  • Ans. 

    Terraform scripts to provision an EC2 instance, RDS database, and VPC in AWS.

    • Define the provider: Use 'provider "aws" { region = "us-east-1" }' to specify the AWS region.

    • Create a VPC: Use 'resource "aws_vpc" "main" { cidr_block = "10.0.0.0/16" }' to define a VPC.

    • Set up subnets: Use 'resource "aws_subnet" "subnet1" { vpc_id = aws_vpc.main.id cidr_block = "10.0.1.0/24" }' for subnets.

    • Launch an EC2 instance: Use 'resource...

  • Answered by AI
  • Q2. What steps would you take to diagnose connectivity issues when unable to connect to your EC2 instance?
  • Ans. 

    Diagnosing EC2 connectivity issues involves checking security groups, network ACLs, and instance status.

    • Check the instance's public IP or DNS name to ensure you're using the correct address.

    • Verify that the security group associated with the EC2 instance allows inbound traffic on the required ports (e.g., port 22 for SSH).

    • Examine the network ACLs to ensure they are not blocking traffic to or from the instance.

    • Ensure the...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
1w (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 Thoughts2Binary?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Oct 2021. There were 3 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 - Aptitude Test 

That was 1 hour apti test with subjective questions

Round 3 - Coding Test 

This was coding round with DSA. Good basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to get internship from a good organisation. You get chance to see and work in corporate culture

Infrastructure Engineer Interview Questions Asked at Other Companies

Q1. What type of ticketing tool was used in your previous organizatio ... read more
Q2. What are DHCP and DNS what are their uses?
Q3. Do you know about Office 365 and Active Directory?
Q4. Regarding patch management and software management, why is it imp ... read more
asked in Siemens
Q5. Define any type of thermodynamic cycle along with diagram. Define ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude questions like (1) How to divide cake in 8 people if you can only cut it 3 times (2) How many times does the number 7 repeat in a sequence (3) You have use "8" exactly 8 times to make it 1000 ---- these questions are mostly aptitude based and can be resolved easily also they are not looking for correct answers but mostly how you approach solutions

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

I applied via Campus Placement and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Coding Test 

1. I was asked about the projects I did in college and about my internship experience.

2. I was asked about a medium level question regarding arrays.

Interview Preparation Tips

Topics to prepare for Bluepi Consulting Senior Engineer interview:
  • Dsa
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzle solving was done which were moderate in difficulty level and you can ask for hints.

Round 2 - Technical 

(3 Questions)

  • Q1. Data modelling techniques in tableau
  • Ans. 

    Data modelling techniques in Tableau involve creating relationships between data sources to analyze and visualize data effectively.

    • Use data blending to combine data from multiple sources

    • Create calculated fields to manipulate and transform data

    • Utilize hierarchies and groups to organize data for analysis

    • Implement filters and parameters to control data display

    • Leverage Tableau's data modeling tools like joins and unions

  • Answered by AI
  • Q2. Explain your projects.
  • Q3. RLS implementation
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com

Round 1 - HR 

(2 Questions)

  • Q1. 4 persons need to cross bridge - A take 1 min, B(2), C(7), D(10) - if allowed 2 at a time - time required?
  • Q2. 100m well - if person climbs (from bottom) 4m then fall 3m - days to come out from well?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024.

Round 1 - Aptitude Test 

This is known as the GA (General Awareness/Assessment) round, which is designed to evaluate the candidate's thinking and logical reasoning abilities.

Round 2 - Coding Test 

A question about your area of expertise: basic JavaScript, React questions, and some coding problems related to arrays.

Round 3 - HR 

(1 Question)

  • Q1. Was the HR round focused on assessing your industry fit and discussing compensation, which subsequently led to the issuance of a joining letter?
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(3 Questions)

  • Q1. Difference between Asp.net and Ado.net? Explain about Ado.net complete briefly?
  • Ans. 

    ASP.NET is a web development framework while ADO.NET is a data access technology for connecting to databases.

    • ASP.NET is used for building web applications, while ADO.NET is used for accessing and manipulating data from databases.

    • ASP.NET provides a framework for creating dynamic web pages, handling user input, and managing state, while ADO.NET provides a set of classes for interacting with databases.

    • ASP.NET includes fea...

  • Answered by AI
  • Q2. Difference between Functions and stored procedure?
  • Ans. 

    Functions return a value while stored procedures do not.

    • Functions are used to perform a specific task and return a value to the caller.

    • Stored procedures are used to execute a set of SQL statements and do not return a value.

    • Functions can be used in SQL statements while stored procedures cannot.

    • Functions can be called from within stored procedures.

    • Functions are deterministic while stored procedures may not be.

    • Functions c...

  • Answered by AI
  • Q3. Interface Inheritance Difference between overloading and overriding
  • Ans. 

    Interface is a contract that defines the methods a class must implement. Inheritance is the ability of a class to inherit properties and methods from another class.

    • Interface is used to achieve abstraction and multiple inheritance in Java.

    • Inheritance allows code reuse and promotes code organization.

    • Overloading is having multiple methods with the same name but different parameters.

    • Overriding is providing a different impl...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare oops and asp.net ,ado.net ,SQL server concepts

Skills evaluated in this interview

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

(2 Questions)

  • Q1. DevOps tools related questions
  • Q2. And python programming questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Mar 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Related to oops,
  • Q2. Micro services regarding

Thoughts2Binary Interview FAQs

What are the top questions asked in Thoughts2Binary Infrastructure Engineer interview?

Some of the top questions asked at the Thoughts2Binary Infrastructure Engineer interview -

  1. What steps would you take to diagnose connectivity issues when unable to connec...read more
  2. Write the Terraform scripts needed to create an EC2 instance, RDS database, and...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Milliman Interview Questions
3.8
 • 22 Interviews
Ven Consulting Interview Questions
3.5
 • 22 Interviews
Selectsys Interview Questions
3.6
 • 19 Interviews
Gi Group Interview Questions
3.7
 • 15 Interviews
VHS Consulting Interview Questions
3.8
 • 14 Interviews
Ducat Interview Questions
3.5
 • 13 Interviews
View all

Thoughts2Binary Infrastructure Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

4.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
38 salaries
unlock blur

₹4.8 L/yr - ₹11.3 L/yr

Software Engineer
36 salaries
unlock blur

₹6.2 L/yr - ₹11 L/yr

Associate Software Developer
34 salaries
unlock blur

₹3.8 L/yr - ₹7.9 L/yr

Softwaretest Engineer
18 salaries
unlock blur

₹4.6 L/yr - ₹10.5 L/yr

Associate Software Engineer
17 salaries
unlock blur

₹4.8 L/yr - ₹6.8 L/yr

Explore more salaries
Compare Thoughts2Binary with

Shah Technical Consultants

3.6
Compare

Gi Group

3.7
Compare

Ven Consulting

3.5
Compare

VHS Consulting

3.8
Compare
write
Share an Interview