Upload Button Icon Add office photos

Filter interviews by

Thoughts2Binary Interview Questions and Answers

Updated 19 May 2025
Popular Designations

Thoughts2Binary Interview Experiences

4 interviews 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

I applied via Company Website and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What programming language you prefer?
  • Ans. 

    I prefer working with Python as it is versatile and has a large community support.

    • Python is easy to learn and has a simple syntax.

    • It has a vast collection of libraries and frameworks for various purposes.

    • Python is widely used in data science and machine learning.

    • It is also used for web development, automation, and scripting.

    • Examples: Flask, Django, NumPy, Pandas, TensorFlow, PyTorch.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Before you prepare yourself for the interview, take a minute read thoroughly your resume and then get prepared on the basis of your resume. Because when they ask me that question i replied "I prefer Java" then they started asking questions on CSS and C++. So when I check my resume there was a small mistake in it. So keep that in mind, that's all. Be confident and if you stumble upon a question which is tough and you didn't know the answer just tell them I don't know, Because they know how much knowledge you have, they just want to test you to see how much you know on that topic.

I applied via LinkedIn and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python generator internal workings
  • Q2. Difference between put and patch
  • Ans. 

    Put replaces the entire resource while Patch updates only the specified fields.

    • Put is idempotent while Patch is not

    • Put requires the entire resource to be sent while Patch only requires the updated fields

    • Put is used to create a new resource while Patch is used to update an existing resource

    • Put is not recommended for partial updates while Patch is designed for partial updates

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get yourself well versed in python, rest, SQL queries

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Mar 2021. 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. Difference between primary and foreign key
  • Ans. 

    Primary key uniquely identifies a record in a table, while foreign key refers to a field in another table.

    • Primary key is used to enforce data integrity and ensure uniqueness of records

    • Foreign key is used to establish a relationship between two tables

    • A table can have only one primary key, but multiple foreign keys

    • Primary key is always indexed, while foreign key may or may not be indexed

    • Primary key cannot have null value...

  • Answered by AI
  • Q2. Questions about data structures
Round 3 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - difficulty level is easy to moderate in all the rounds. prepare data structure , algorithms using python

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

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. List and tuple differences
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • Lists are mutable, meaning their elements can be changed after creation.

    • Tuples are immutable, meaning their elements cannot be changed after creation.

    • Lists are defined using square brackets [], tuples using parentheses ().

    • Lists are typically used for collections of similar items, tuples for fixed collections of dissimilar items.

  • Answered by AI
  • Q2. Generators in python
  • Ans. 

    Generators in Python are functions that allow you to iterate over a sequence of items without storing them all in memory at once.

    • Generators are created using a function with 'yield' instead of 'return'.

    • They are used to generate a sequence of values lazily, one at a time.

    • Generators are memory efficient as they do not store all values in memory at once.

    • Example: def my_generator(): for i in range(5): yield i

    • Example: ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

This round consist of 40 question 10 were subjective and 30 were from apti and reasoning section

Round 2 - Technical 

(1 Question)

  • Q1. Basics mapping question were asked in dsa and in sql about joins and some queries based on joins
Round 3 - HR 

(1 Question)

  • Q1. Some puzzles were asked only
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. Core Java basic concepts and problem solving questions were asked
  • Q2. About the personal projects and questions regarding tech stack used in the project.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Jan 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Q1. What is Confusing Matrix? Real life example .

Q2. What is important processes for data pre processing ?

Q3. Use of lambda expression ?

Round 2 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through fundamental concepts of Confusion Matrix, Linear Regression, Lambda expression, Pandas and pipelining.

I applied via Campus Placement and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Machine Learning, SQL, Excel, Python and Statistics

Interview Preparation Tips

Interview preparation tips for other job seekers - Have an all-round understanding of SQL. Machine Learning and Python are next on the list. Build your numerical ability and logical reasoning.

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

Thoughts2Binary Interview FAQs

How many rounds are there in Thoughts2Binary interview?
Thoughts2Binary interview process usually has 3 rounds. The most common rounds in the Thoughts2Binary interview process are Resume Shortlist, Technical and Coding Test.
How to prepare for Thoughts2Binary 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 Thoughts2Binary. The most common topics and skills that interviewers at Thoughts2Binary expect are AWS, AWS Infrastructure, Agile Methodology, Asset Management and Benefits.
What are the top questions asked in Thoughts2Binary interview?

Some of the top questions asked at the Thoughts2Binary 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
  3. What programming language you pref...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

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 Reviews and Ratings

based on 56 reviews

4.0/5

Rating in categories

3.9

Skill development

3.6

Work-life balance

3.6

Salary

3.4

Job security

3.9

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 56 Reviews and Ratings
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