Upload Button Icon Add office photos

Filter interviews by

GeekBull Consulting Interview Questions, Process, and Tips

Updated 28 May 2024

Top GeekBull Consulting Interview Questions and Answers

View all 12 questions

GeekBull Consulting Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Time Series forecasting questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They are happy with me send an intent to offer, but later declined as requirements changed (time waste)

Top GeekBull Consulting Data Scientist Interview Questions and Answers

Q1. you have two different vectors with only small change in one of the dimensions. but, the predictions/output from the model is drastically different for each vector. can you explain why this can be the case? and is that a good thing or bad t... read more
View answer (1)

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)

I applied via Naukri.com and was interviewed in Jun 2022. There were 2 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 - One-on-one 

(12 Questions)

  • Q1. What is correlation(in plain english)?
  • Ans. 

    Correlation is a statistical measure that shows how two variables are related to each other.

    • Correlation measures the strength and direction of the relationship between two variables.

    • It ranges from -1 to 1, where -1 indicates a perfect negative correlation, 0 indicates no correlation, and 1 indicates a perfect positive correlation.

    • Correlation does not imply causation, meaning that just because two variables are correlat...

  • Answered by AI
  • Q2. What is multi-collinearity?
  • Ans. 

    Multicollinearity is a phenomenon where two or more independent variables in a regression model are highly correlated.

    • It can lead to unstable and unreliable estimates of regression coefficients.

    • It can also make it difficult to determine the individual effect of each independent variable on the dependent variable.

    • It can be detected using correlation matrices or variance inflation factors (VIF).

    • Solutions include removing...

  • Answered by AI
  • Q3. What are p-values? explain it in plain english without bringing up machine learning?
  • Ans. 

    P-values are a statistical measure that helps determine the likelihood of obtaining a result by chance.

    • P-values range from 0 to 1, with a smaller value indicating stronger evidence against the null hypothesis.

    • A p-value of 0.05 or less is typically considered statistically significant.

    • P-values are commonly used in hypothesis testing to determine if a result is statistically significant or not.

  • Answered by AI
  • Q4. How are LSTMs better than RNNs? what makes them better? how does LSTMs do better what they do better than vanilla RNNs?
  • Ans. 

    LSTMs are better than RNNs due to their ability to handle long-term dependencies.

    • LSTMs have a memory cell that can store information for long periods of time.

    • They have gates that control the flow of information into and out of the cell.

    • This allows them to selectively remember or forget information.

    • Vanilla RNNs suffer from the vanishing gradient problem, which limits their ability to handle long-term dependencies.

    • LSTMs ...

  • Answered by AI
  • Q5. Does pooling in CNNs have any learning?
  • Ans. 

    Pooling in CNNs has learning but reduces spatial resolution.

    • Pooling helps in reducing overfitting by summarizing the features learned in a region.

    • Max pooling retains the strongest feature in a region while average pooling takes the average.

    • Pooling reduces the spatial resolution of the feature maps.

    • Pooling can also help in translation invariance.

    • However, too much pooling can lead to loss of important information.

  • Answered by AI
  • Q6. Why does optimisers matter? what's their purpose? what do they do in addition to weights-updation that the vanilla gradient and back-prop does?
  • Ans. 

    Optimizers are used to improve the efficiency and accuracy of the training process in machine learning models.

    • Optimizers help in finding the optimal set of weights for a given model by minimizing the loss function.

    • They use various techniques like momentum, learning rate decay, and adaptive learning rates to speed up the training process.

    • Optimizers also prevent the model from getting stuck in local minima and help in ge...

  • Answered by AI
  • Q7. What does KNN do during training?
  • Ans. 

    KNN during training stores all the data points and their corresponding labels to use for prediction.

    • KNN algorithm stores all the training data points and their corresponding labels.

    • It calculates the distance between the new data point and all the stored data points.

    • It selects the k-nearest neighbors based on the calculated distance.

    • It assigns the label of the majority of the k-nearest neighbors to the new data point.

  • Answered by AI
  • Q8. You have two different vectors with only small change in one of the dimensions. but, the predictions/output from the model is drastically different for each vector. can you explain why this can be the case...
  • Ans. 

    Small change in one dimension causing drastic difference in model output. Explanation and solution.

    • This is known as sensitivity to input

    • It can be caused by non-linearities in the model or overfitting

    • Regularization techniques can be used to reduce sensitivity

    • Cross-validation can help identify overfitting

    • Ensemble methods can help reduce sensitivity

    • It is generally a bad thing as it indicates instability in the model

  • Answered by AI
  • Q9. Slope vs gradient (again not in relation to machine learning, and in plain english)
  • Ans. 

    Slope and gradient are both measures of the steepness of a line, but slope is a ratio while gradient is a vector.

    • Slope is the ratio of the change in y to the change in x on a line.

    • Gradient is the rate of change of a function with respect to its variables.

    • Slope is a scalar value, while gradient is a vector.

    • Slope is used to describe the steepness of a line, while gradient is used to describe the direction and magnitude o...

  • Answered by AI
  • Q10. How are boosting and bagging algorithms different?
  • Ans. 

    Boosting and bagging are ensemble learning techniques used to improve model performance.

    • Bagging involves training multiple models on different subsets of the data and averaging their predictions.

    • Boosting involves training multiple models sequentially, with each model focusing on the errors of the previous model.

    • Bagging reduces variance and overfitting, while boosting reduces bias and underfitting.

    • Examples of bagging al...

  • Answered by AI
  • Q11. What is a logarithm? (in linear algebra) what is it's significance and what purpose does it serve?
  • Ans. 

    A logarithm is a mathematical function that measures the relationship between two quantities.

    • Logarithms are used to simplify complex calculations involving large numbers.

    • They are used in linear algebra to transform multiplicative relationships into additive ones.

    • Logarithms are also used in data analysis to transform skewed data into a more normal distribution.

    • Common logarithms use base 10, while natural logarithms use

  • Answered by AI
  • Q12. What are gradients? (not in relation to machine learning)
  • Ans. 

    Gradients are the changes in values of a function with respect to its variables.

    • Gradients are used in calculus to measure the rate of change of a function.

    • They are represented as vectors and indicate the direction of steepest ascent.

    • Gradients are used in optimization problems to find the minimum or maximum value of a function.

    • They are also used in physics to calculate the force acting on a particle.

    • Gradients can be cal

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be strong in fundamentals and be able to explain what and why of every project on your resume and all things things used in those projects.

Skills evaluated in this interview

Top GeekBull Consulting Data Scientist Interview Questions and Answers

Q1. you have two different vectors with only small change in one of the dimensions. but, the predictions/output from the model is drastically different for each vector. can you explain why this can be the case? and is that a good thing or bad t... read more
View answer (1)

Data Scientist Interview Questions asked at other Companies

Q1. Special Sum of ArrayYou have been given an array/list ‘arr’ of length ‘N’, which contains single digit elements at every index. Your task is to return the sum of all elements of the array. But the final sum should also be a single digit. To... read more
View answer (2)

Jobs at GeekBull Consulting

View all

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. What is your weakness?
  • Q2. Where do you see your self in upcoming years?
  • Q3. How you will improve customer experience?
  • Ans. 

    To improve customer experience, I will focus on personalization, efficient communication, and continuous improvement.

    • Implement personalized customer interactions based on their preferences and history.

    • Streamline communication channels to ensure prompt and effective responses.

    • Regularly gather customer feedback and use it to identify areas for improvement.

    • Train and empower team members to provide exceptional customer ser...

  • Answered by AI
  • Q4. What will the best way to keep team motivated?

I applied via Campus Placement and was interviewed before Jul 2016. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell about your self
  • Ans. 

    I am a customer-oriented professional with excellent communication skills and a passion for providing exceptional service.

    • Strong interpersonal skills

    • Ability to empathize with customers

    • Effective problem-solving abilities

    • Experience in handling customer complaints and inquiries

    • Proficient in using customer support software

    • Proven track record of meeting customer satisfaction goals

  • Answered by AI
  • Q2. Why you choosing our company
  • Ans. 

    I am choosing your company because of your excellent reputation and commitment to customer satisfaction.

    • Your company has a proven track record of providing exceptional customer care.

    • I have heard positive feedback from friends and colleagues about their experiences with your company.

    • Your company's values align with my own, particularly in regards to prioritizing customer satisfaction.

    • I am impressed by the range of servi...

  • Answered by AI
  • Q3. What will you do if you were given 1 millions in amount in your hand. How will you spend it?
  • Ans. 

    I would invest a portion of the money, donate to charity, and use the rest for personal expenses.

    • Invest a portion of the money to secure future financial stability

    • Donate a portion to charity to help those in need

    • Use the remaining amount for personal expenses such as travel, home improvements, and savings

  • Answered by AI
  • Q4. If you want to be an animal like any animal in the world? Which animal you would like to be?
  • Ans. 

    I would like to be a dolphin because of their intelligence, agility, and ability to swim freely in the ocean.

    • Dolphins are known for their high level of intelligence and problem-solving abilities.

    • They are incredibly agile and can swim at high speeds, performing acrobatic jumps and flips.

    • Being a dolphin would allow me to explore the vastness of the ocean and interact with other marine creatures.

    • Dolphins are highly social...

  • Answered by AI

Interview Preparation Tips

Round: Campus drive -GD,HR,HR Interview
Experience: I reached the office at morning 9. Why because they mentioned the interview time was 9 in the offer letter. I was the only one who went there first I was waiting till 10:30, one by one people who got selected in campus drive came After certain number of people came one HR came and escort all the participants in a place like an auditorium. Then they explain about their company and all the stuffs and it got noon. I went to eat with the people who came for the interview and I met so many peoples they became friends to me. After that I started to have interview in calls. Then waited for the results it became evening But unfortunately I didn't got selected,its because that was my first interview I was really nervous and may be my answers were not that much satisfier. After that I left from there. But now I'm ready to face anything.
Tips: You just have to think like we are taking to a customer,our main aim has to make them feel satisfied. Talk with Courage and confidence.

Skills: Communication
College Name: Dhanalakshmi srinivasan college of arts and science for women

Interview Questionnaire 

3 Questions

  • Q1. Tell me about ur self
  • Ans. 

    I am a highly skilled System Engineer with expertise in designing and implementing complex systems.

    • Experienced in managing and troubleshooting network infrastructure

    • Proficient in virtualization technologies such as VMware and Hyper-V

    • Strong knowledge of operating systems like Windows and Linux

    • Familiar with scripting languages like PowerShell and Bash

    • Excellent problem-solving and communication skills

  • Answered by AI
  • Q2. Have u done any teamwork
  • Ans. 

    Yes, I have experience working in teams.

    • I have worked on several group projects during my studies.

    • I have collaborated with colleagues to solve complex technical problems.

    • I have participated in cross-functional teams to implement system upgrades.

    • I have also been part of agile development teams, working closely with software engineers and testers.

    • One example of teamwork is when I led a team of engineers to successfully d

  • Answered by AI
  • Q3. Family background

Interview Preparation Tips

Round: Test
Experience: There are two sections ....1) verbal 2)analytical and reasoning. paper was little bit tough. i didn't remember the type of questions.

Round: HR Interview
Experience: The HR was very cool and friendly. He asked me general questions like "tell me about ur self","have u done any teamwork" etc and then he asked me about my favourite subject.Then he asked me to explain the subject considering him as an 8th class student. Then he asked me about my family background. And the interview was about 30mins.

General Tips: You must be very cool while facing interview and u should ur confidence and interest towards the company.
College Name: NIT WARANGAL

Interview Preparation Tips

Round: Test
Experience: It went quite well.
Tips: Brush up everyday your aptitude skills
Duration: 30 minutes
Total Questions: 30

General Tips: Choosing your company and preparing for it early is better than trying everything on the day of selection process
Skills: Aptitude, Technical skills
College Name: IIT roorkee
Motivation: i am a self motivator

Interview Preparation Tips

Round: Test
Experience: Shortlist is done based on the result of the test conducted. The test consists of two parts basic quantitative skills and a short essay to test your English
Tips: Math and Puzzle solving skills are useful They were looking for people with good math skills and team player

Round: Interview
Experience: Interview was held in two rounds. No technical round is held. One should be prepared for basic HR questions, your understanding of your projects etc.
Tips: There is no technical round and no emphasis on technical background
Prepare for all the basic HR questions beforehand, write them down
Get to know your resume very well

College Name: IIT Madras

Interview Preparation Tips

Round: Resume Shortlist
Experience: CGPA + resume + online test - based shortlisting

Round: Test
Experience: Online Test:Quant, DI, verbal, and coding45 minutes coding + 15 minutes verbal + 30 minutes quant
Tips: Time constraint will be the major problem. CAT preparation would sufficeBrush up your coding skills- concentrate in either C or C++ or whichever language you're comfortable withE.g.: The coding question- Write a function to find if a number is palindromeBrush up through basic data structuresGraph theory and few sorting algorithms
Duration: 90 minutes

Round: Interview
Experience: (2 interviews, 20 minutes each)Resume- basedCoding skills and the approach towards the problem will also be tested
Tips: Be thorough with the work done in your internships and projects. Be ready to answer why you are interested in the company.Maintain your confidence level in the interviews. They also look for good communication skills, and even leadership, which is evident from the way you conduct yourself through the interview.Practice quant questions, prepare answers for all the basic HR questions.Coding, go through sorting algorithms, FOR, Graph theory.Digital IC design is very important courses. You should be through with this courses if you are interested in digital profile.

College Name: IIT Madras

Interview Preparation Tips

Round: Walk in
Experience: Initial shortlist was Walk-In.

Round: Technical Interview
Experience: Duration: 50 mins.
Resume based.

General Tips:  Have a good number of projects and know each and every aspect of the projects mentioned
 Have the ability to relate course content to the project development
Skill Tips: They were looking for Product Designers.
College Name: IIT-Madras

Interview Questionnaire 

1 Question

  • Q1. Telephonic/Computer assessment for English proficiency

Interview Preparation Tips

Round: Test
Experience: Aptitude was not too easy or too tough like that of CAT. But if one has prepared for CAT exam even a bit, then he can perform pretty well.
Tips: Practice previous year CAT papers. Question sections and format asked in Capgemini test will be similar to that of CAT exam. Improve reading skills by reading anything that interests you.
Duration: 180 minutes
Total Questions: 120

Round: Other Interview
Experience: You will have to talk with a programmed voice using voice call. You need to follow the instructions of the programmed voice. They will record whatever you speak and judge your speaking skills.
Tips: Try to speak in English with at least few peers.

Round: HR Interview
Experience: You must be well thorough with your CV. Common questions like:*Tell me about yourself?*What are your strength and weakness?*Why consultancy and analyst profile?*What do you know about analyst profile?*What does Capgemini does? Tell us more about Capgemini?
etc can be expected for sure.The HR is not interested in your departmental knowledge, rather he is more interested in the way you are explaining something tin a layman manner. He/She cares how you analyse situations. Some random sitaution may be posed and HR may ask you to analyse the situation.
Tips: #Confidence in yourself.#Well verse with CV.#Able to explain even to layman.#Know basic information about data analytics.

General Tips: Aptitude+Communication fluency+Confidence = Job in  Capgemini
Skill Tips: Practice.
Skills: Aptitude, Communication, Confidence
College Name: I.I.T Guwahati
Motivation: Multi national and reputed.

GeekBull Consulting Interview FAQs

How many rounds are there in GeekBull Consulting interview?
GeekBull Consulting interview process usually has 1-2 rounds. The most common rounds in the GeekBull Consulting interview process are Resume Shortlist, One-on-one Round and Technical.
How to prepare for GeekBull Consulting 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 GeekBull Consulting. The most common topics and skills that interviewers at GeekBull Consulting expect are Java, AWS, REST API, .Net and API.
What are the top questions asked in GeekBull Consulting interview?

Some of the top questions asked at the GeekBull Consulting interview -

  1. you have two different vectors with only small change in one of the dimensions....read more
  2. why does optimisers matter? what's their purpose? what do they do in addition t...read more
  3. how are LSTMs better than RNNs? what makes them better? how does LSTMs do bette...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 GeekBull Consulting interviews
Referral
Job Portal
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
Mphasis Interview Questions
3.4
 • 780 Interviews
View all

GeekBull Consulting Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
5 salaries
unlock blur

₹4.5 L/yr - ₹7.5 L/yr

Project Manager
4 salaries
unlock blur

₹6 L/yr - ₹8.4 L/yr

Embedded Engineer
4 salaries
unlock blur

₹3 L/yr - ₹4.3 L/yr

Embedded Software Engineer
3 salaries
unlock blur

₹4.2 L/yr - ₹9 L/yr

Associate Data Scientist
3 salaries
unlock blur

₹3.2 L/yr - ₹3.2 L/yr

Explore more salaries
Compare GeekBull Consulting with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview