Upload Button Icon Add office photos

Filter interviews by

Itobuz Technologies Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top Itobuz Technologies Interview Questions and Answers

View all 17 questions

Itobuz Technologies Interview Experiences

Popular Designations

6 interviews found

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

I applied via Approached by Company and was interviewed in Sep 2022. There were 4 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 

(3 Questions)

  • Q1. Share your most recent project description and how you reach to the solution to it ?
  • Ans. 

    Developed a machine learning model to predict customer churn in a telecommunications company.

    • Collected and preprocessed customer data including demographics, usage patterns, and service history.

    • Performed exploratory data analysis to identify key features and patterns.

    • Built and trained a classification model using a combination of logistic regression and random forest algorithms.

    • Evaluated the model's performance using m...

  • Answered by AI
  • Q2. Python coding related questions
  • Q3. Statistical problem related questions
Round 3 - One-on-one 

(14 Questions)

  • Q1. What all you know about Multivariate Analysis ?
  • Ans. 

    Multivariate analysis is a statistical technique used to analyze data with multiple variables.

    • It involves examining the relationships between multiple variables to identify patterns and trends.

    • Common techniques include principal component analysis, factor analysis, and cluster analysis.

    • Multivariate analysis is used in various fields such as finance, marketing, and social sciences.

    • Example: A marketing team may use multi...

  • Answered by AI
  • Q2. What is multivariate time series and how to model it ?
  • Ans. 

    Multivariate time series is a collection of time series data where multiple variables are observed simultaneously over time.

    • Multivariate time series models are used to analyze and forecast complex systems with multiple interacting variables.

    • Common models include Vector Autoregression (VAR), Vector Error Correction Model (VECM), and Dynamic Factor Models (DFM).

    • Model selection and parameter estimation can be challenging ...

  • Answered by AI
  • Q3. Is it always important to apply ML algorithms to solve any statistical problem?
  • Ans. 

    No, it is not always important to apply ML algorithms to solve any statistical problem.

    • ML algorithms may not be necessary for simple statistical problems

    • ML algorithms require large amounts of data and computing power

    • ML algorithms may not always provide the most interpretable results

    • Statistical models may be more appropriate for certain types of data

    • ML algorithms should be used when they provide a clear advantage over t

  • Answered by AI
  • Q4. What all you know about Anomaly detection?
  • Ans. 

    Anomaly detection is the process of identifying data points that deviate from the expected pattern.

    • Anomaly detection is used in various fields such as finance, cybersecurity, and manufacturing.

    • It can be done using statistical methods, machine learning algorithms, or a combination of both.

    • Some common techniques for anomaly detection include clustering, classification, and time series analysis.

    • Examples of anomalies inclu...

  • Answered by AI
  • Q5. Do you know about Event Detection?
  • Ans. 

    Event Detection is the process of identifying and extracting meaningful events from data streams.

    • It involves analyzing data in real-time to detect patterns and anomalies

    • It is commonly used in fields such as finance, social media, and security

    • Examples include detecting fraudulent transactions, identifying trending topics on Twitter, and detecting network intrusions

  • Answered by AI
  • Q6. Have you heard about Gaussian Mixture Model? Can you explain it with an proper industrial example?
  • Ans. 

    Gaussian Mixture Model is a probabilistic model used for clustering and density estimation.

    • GMM assumes that the data points are generated from a mixture of Gaussian distributions.

    • It estimates the parameters of these Gaussian distributions to cluster the data points.

    • An industrial example of GMM is in customer segmentation for targeted marketing.

    • GMM can also be used in anomaly detection and image segmentation.

  • Answered by AI
  • Q7. How can you use GMM in anomaly detection?
  • Ans. 

    GMM can be used to model normal behavior and identify anomalies based on low probability density.

    • GMM can be used to fit a model to the normal behavior of a system or process.

    • Anomalies can be identified as data points with low probability density under the GMM model.

    • The number of components in the GMM can be adjusted to balance between overfitting and underfitting.

    • GMM can be combined with other techniques such as PCA or...

  • Answered by AI
  • Q8. Which one is more robust for Anomaly detection? Tukey's method of IQR or Z-Score method or GMM ?
  • Ans. 

    GMM is more robust for Anomaly detection than Tukey's method of IQR or Z-Score method.

    • GMM can handle complex data distributions and can identify multiple anomalies.

    • Tukey's method and Z-Score method are limited to detecting anomalies in unimodal distributions.

    • GMM can also handle missing data points and outliers better than the other two methods.

  • Answered by AI
  • Q9. What makes GMM robust to the Anomaly detection?
  • Ans. 

    GMM is robust to anomaly detection due to its ability to model complex data distributions.

    • GMM can model data distributions with multiple modes, making it more flexible than other methods.

    • It can also handle data with varying densities and shapes, making it suitable for detecting anomalies.

    • GMM uses a probabilistic approach to assign data points to different clusters, allowing it to identify outliers.

    • It can be used in uns...

  • Answered by AI
  • Q10. How to detect anomalies in Multivariate Time Series ?
  • Ans. 

    Anomalies in Multivariate Time Series can be detected using statistical methods like PCA, clustering, and deep learning models.

    • Use Principal Component Analysis (PCA) to identify the most important features and detect anomalies in the residual errors.

    • Cluster the data points and identify the clusters with low density or high variance as anomalies.

    • Use deep learning models like LSTM or Autoencoder to learn the patterns in ...

  • Answered by AI
  • Q11. What is more robust to outliers? Mean, median or mode ?
  • Ans. 

    Median is more robust to outliers than mean and mode.

    • Mean is sensitive to outliers as it takes into account all the values in the dataset.

    • Mode is not affected by outliers as it only considers the most frequent value.

    • Median is the middle value in a dataset and is less affected by outliers as it is not influenced by extreme values.

    • For example, if we have a dataset of salaries and one person earns a million dollars, the m...

  • Answered by AI
  • Q12. What is Mahalanobis Distance? Can you illustrate it's assumptions ?
  • Ans. 

    Mahalanobis Distance is a measure of distance between a point and a distribution.

    • It takes into account the covariance between variables.

    • It is used in multivariate analysis and classification problems.

    • Assumes that the data is normally distributed and has equal covariance matrices.

    • It is sensitive to outliers and can be used to detect them.

  • Answered by AI
  • Q13. What is the difference between Euclidean distance and Mahalanobis Distance?
  • Ans. 

    Euclidean distance measures straight line distance between two points while Mahalanobis distance considers variance and covariance of the data.

    • Euclidean distance is the most common distance metric used in machine learning.

    • Mahalanobis distance is used when the data has different variances and covariances.

    • Mahalanobis distance is more robust to outliers than Euclidean distance.

    • Mahalanobis distance is used in clustering, c...

  • Answered by AI
  • Q14. Do you know any Anomaly detection method that will work without Normality Assumptions?
  • Ans. 

    Yes, Local Outlier Factor (LOF) is a non-parametric anomaly detection method that does not require normality assumptions.

    • LOF is based on the idea that anomalies are located in less dense areas than their neighbors

    • LOF calculates the local density of each data point and compares it to the densities of its neighbors

    • LOF assigns an anomaly score to each data point based on how much its local density differs from the densiti

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. Describe yourself in 3 word ?
  • Ans. 

    Analytical, innovative, detail-oriented

    • Analytical: I have a strong ability to analyze complex data and extract meaningful insights.

    • Innovative: I constantly seek new and creative approaches to problem-solving and developing data-driven solutions.

    • Detail-oriented: I pay close attention to details to ensure accuracy and precision in my work.

  • Answered by AI
  • Q2. What's your hobby and why ?
  • Ans. 

    My hobby is photography because it allows me to capture and express the beauty of the world.

    • Photography allows me to explore and appreciate the details in my surroundings.

    • It helps me to see things from different perspectives and enhances my creativity.

    • I enjoy experimenting with different techniques and capturing unique moments.

    • Photography also serves as a form of relaxation and mindfulness for me.

  • Answered by AI
  • Q3. How do you score yourself in interpersonal skills and why ?
  • Ans. 

    I score myself highly in interpersonal skills because I have a proven track record of effectively communicating and collaborating with diverse teams.

    • I have excellent communication skills, both verbal and written.

    • I am able to listen actively and empathetically to others.

    • I can effectively convey complex technical concepts to non-technical stakeholders.

    • I have experience working in cross-functional teams and fostering posi...

  • Answered by AI
  • Q4. Tell me why do you think you're fit for this role ?
  • Ans. 

    I have a strong background in data science and leadership skills necessary for the role of Principal Data Scientist.

    • Extensive experience in data analysis and modeling

    • Proven track record of leading successful data science projects

    • Strong knowledge of machine learning algorithms and statistical techniques

    • Ability to communicate complex findings to both technical and non-technical stakeholders

    • Experience in managing and ment...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself with good knowledge of python, latest technologies introducing in Data Science and have good knowledge of Statistics. Questions are common but they'll ask for explanation in every single step.

Skills evaluated in this interview

Top Itobuz Technologies Principal Data Scientist Interview Questions and Answers

Q1. Is it always important to apply ML algorithms to solve any statistical problem?
View answer (1)

Principal Data Scientist Interview Questions asked at other Companies

Q1. Is it always important to apply ML algorithms to solve any statistical problem?
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Aptitude Test 

Aptitude included basic mathematics and logical reasoning

Round 2 - Coding Test 

2 questions. 1 easy and 1 of medium level

Round 3 - One-on-one 

(2 Questions)

  • Q1. What is a destructor in c++
  • Ans. 

    A destructor in C++ is a special member function that is called automatically when an object is destroyed.

    • Destructors have the same name as the class preceded by a tilde (~).

    • They are used to release resources allocated by the object during its lifetime.

    • Destructors are called automatically when an object goes out of scope or is explicitly deleted.

    • Example: ~ClassName() { // destructor code here }

  • Answered by AI
  • Q2. Difference between method overloading and overriding
  • Ans. 

    Method overloading is having multiple methods in the same class with the same name but different parameters, while method overriding is having a method in a subclass with the same name and parameters as a method in its superclass.

    • Method overloading is resolved at compile time based on the method signature.

    • Method overriding is resolved at runtime based on the object type.

    • Method overloading is used to provide different i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - know your resume very well. do not put anything on your resume that is not true (any skill or achievements). prepare answers for traditional hr questions before-hand.

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

Intern Interview Questions & Answers

user image Anonymous

posted on 6 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

40-45 MCQs in 30mins

Round 2 - Coding Test 

Two questions: the first is an easy string manipulation question, and the second is a medium difficulty data operations question.

Round 3 - HR 

(2 Questions)

  • Q1. Personal Question
  • Q2. Describe your overall Web development learning journey
  • Ans. 

    My web development journey started with online tutorials and courses, followed by hands-on projects and internships.

    • Started learning HTML, CSS, and JavaScript basics

    • Practiced building simple websites and web applications

    • Advanced to learning frameworks like React and Angular

    • Gained experience through internships and freelance projects

  • Answered by AI

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round Consisting of Quant,Logical,Reasoning and coding also

Round 2 - Coding Test 

Three Sql and Three Programming were Given

Round 3 - One-on-one 

(1 Question)

  • Q1. What are your Strength and weaknesses? Why should we hire you? Not much Technical questions

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

Itobuz Technologies interview questions for popular designations

 Software Developer Trainee

 (2)

 Senior UI UX Designer

 (1)

 Intern

 (1)

 Principal Data Scientist

 (1)

 Senior Marketing Executive

 (1)

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

I applied via Naukri.com and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Marketing campaign strategy

Senior Marketing Executive Interview Questions asked at other Companies

Q1. Who would you target your Marketing Communication for a Gamming Console, Parent or the Kid?
View answer (1)

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Many related to UX, UI, working process etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall it was an amazing experience..

Senior UI UX Designer Interview Questions asked at other Companies

Q1. What is your experience in design systems and design process?
View answer (1)

Jobs at Itobuz Technologies

View all

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - It's really nice to talk about this, means it provides a nice talking environment.

I applied via LinkedIn and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Question are-(1) write code for print hello world in c and c++
  • Q2. 2- what is prime number
  • Ans. 

    A prime number is a positive integer greater than 1 that has no positive integer divisors other than 1 and itself.

    • Prime numbers are only divisible by 1 and themselves.

    • Examples of prime numbers include 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, and 97.

    • The number 1 is not considered a prime number.

  • Answered by AI
  • Q3. Write the program of even odd
  • Ans. 

    Program to determine if a number is even or odd.

    • Use the modulo operator (%) to check if the number is divisible by 2.

    • If the remainder is 0, the number is even. Otherwise, it is odd.

    • Example: int num = 5; if(num % 2 == 0) { printf("Even"); } else { printf("Odd"); }

  • Answered by AI
  • Q4. Then he start asking questions from chemistry this is surprising for a IT student . First question what in periodic table and which type of elements in this
  • Q5. Then he asked difference between metal and meteloid
  • Q6. Then asked what is Pythagoras theorem then bodmas rule and then interview was end

Interview Preparation Tips

Interview preparation tips for other job seekers - If you want to succeed in this company then you have to read basics of your subject that you mentioned in your resume and learn to do coding

Skills evaluated in this interview

I applied via AmbitionBox and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Coding Test 

HTML and CSS or javascript

Round 2 - Aptitude Test 

About professional aptitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Please take the interview online. And if di any mistake or wrong answer then please suggest me and give me a opportunities for improving
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Medium level aptitude questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare medium level aptitude and programming questions

Itobuz Technologies Interview FAQs

How many rounds are there in Itobuz Technologies interview?
Itobuz Technologies interview process usually has 3 rounds. The most common rounds in the Itobuz Technologies interview process are One-on-one Round, Aptitude Test and Coding Test.
How to prepare for Itobuz Technologies 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 Itobuz Technologies . The most common topics and skills that interviewers at Itobuz Technologies expect are Javascript, Front End, HTML, CSS and MongoDB.
What are the top questions asked in Itobuz Technologies interview?

Some of the top questions asked at the Itobuz Technologies interview -

  1. Is it always important to apply ML algorithms to solve any statistical probl...read more
  2. What is multivariate time series and how to model i...read more
  3. Do you know any Anomaly detection method that will work without Normality Assum...read more

Tell us how to improve this page.

Itobuz Technologies Interview Process

based on 6 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
View all

Itobuz Technologies Reviews and Ratings

based on 31 reviews

3.6/5

Rating in categories

4.2

Skill development

3.9

Work-life balance

3.6

Salary

3.5

Job security

3.8

Company culture

3.5

Promotions

3.4

Work satisfaction

Explore 31 Reviews and Ratings
DevOps Engineer

Kolkata

2-5 Yrs

₹ 6-10 LPA

Explore more jobs
Front end Developer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Front end Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Web Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Backend Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Itobuz Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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