Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Browseinfo Team. If you also belong to the team, you can get access from here

Browseinfo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Browseinfo Interview Questions and Answers

Updated 16 Feb 2024

Browseinfo Interview Experiences

Popular Designations

3 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Interview  

(1 Question)

  • Q1. When you give a interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Talking about BROWSEINFO ODOO

FOR Freshers :-
1) If Hr says after 6 months your salary is like Increment so it's a scam and a big fraud after 6 months they give any child reason and make a fool .
2) For Freshers after completing a training
in a company not providing any system for example:- Laptop & Pc and welcome kit and not providing a training certificate if you go for certification from HR so they take 1 week it depends on the HR mood. After 6 months your confirmation letter depends on the HR mood and the CTO mood they take so much time for example:- SBI Bank take

For experience:- If you think you learn a new joke they focus only on employees bad habits and some others so it's not part of any odoo related work

If you talk about you get any documents like slip and other so hr take so long time

if you check the browseinfo company linked account currently not the experience team available because the experience team knows about froud and scam.

Company not organised any Tour and sports activities and not any cultural events

I personally suggest browseinfo is not a good future For all

Odoo Developer Interview Questions asked at other Companies

Q1. what is the fieldsview get function
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 16 Feb 2024

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

I applied via Indeed and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Quant, Logical Questions and Python

Round 2 - Technical 

(1 Question)

  • Q1. Python Basic Questions, Questions about list, set and dictionary, Built In Functions, etc

I applied via Indeed and was interviewed in Nov 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Some questions about python.
Round 3 - One-on-one 

(1 Question)

  • Q1. What is python? what is a list? what is a tuple? what is set? Difference between list and tuple. Class and object. lambda function. map function filter function inheritance deep copy and shallow copy what ...
  • Ans. 

    A set of questions related to Python programming language and its concepts.

    • Python is a high-level, interpreted programming language.

    • A list is a collection of ordered and mutable elements.

    • A tuple is a collection of ordered and immutable elements.

    • A set is an unordered collection of unique elements.

    • Lists are mutable while tuples are immutable.

    • A class is a blueprint for creating objects, while an object is an instance of a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear concept of basic and advanced level of a python.

Skills evaluated in this interview

Python Developer Intern Interview Questions asked at other Companies

Q1. what is python? what is a list? what is a tuple? what is set? Difference between list and tuple. Class and object. lambda function. map function filter function inheritance deep copy and shallow copy what is a dictionary? monkey patching. w... read more
View answer (3)

Jobs at Browseinfo

View all

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It's online coding test

Round 2 - One-on-one 

(1 Question)

  • Q1. What is JS and how it works
  • Ans. 

    JS stands for JavaScript, a high-level programming language used for creating interactive websites and web applications.

    • JS is a client-side scripting language that runs in the browser.

    • It is used to add interactivity, animations, and dynamic content to websites.

    • JS can be used alongside HTML and CSS to create responsive and user-friendly web applications.

    • Example: document.getElementById('demo').innerHTML = 'Hello World';

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not join this company.

I applied via Walk-in and was interviewed in May 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 Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. Tell me something about your job role
  • Ans. 

    As a Software Developer, my job role involves designing, coding, testing, and maintaining software applications.

    • Designing and implementing software solutions based on user requirements

    • Writing clean and efficient code using programming languages like Java, C++, or Python

    • Testing and debugging software to ensure it functions correctly

    • Collaborating with cross-functional teams to develop and deploy software applications

    • Main...

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a software developer with experience in multiple programming languages and a passion for problem-solving.

    • Experienced in Java, C++, and Python

    • Strong understanding of data structures and algorithms

    • Worked on various projects including web development and mobile app development

    • Excellent problem-solving and analytical skills

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please confirm about their job confirmation or rejection

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Regarding PHP

Interview Preparation Tips

Interview preparation tips for other job seekers - Please clear your basic knowledge
Interview experience
3
Average
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 Resume tips
Round 2 - Coding Test 

Coding test in any language

Round 3 - Group Discussion 

Any topics for the GD

Round 4 - One-on-one 

(4 Questions)

  • Q1. Experience about the java script
  • Q2. My work experience about the java scirpt
  • Q3. Palindrome in any code language
  • Ans. 

    A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

    • Check if the input string is equal to its reverse

    • Ignore spaces and punctuation when checking for palindromes

    • Convert the input string to lowercase for case-insensitive comparison

  • Answered by AI
  • Q4. Other general maths programming questions

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Peak element in array
  • Ans. 

    A peak element in an array is an element that is greater than or equal to its neighbors.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • If the element at index i is greater than or equal to elements at indices i-1 and i+1, it is a peak element.

    • Example: ['1', '3', '2', '4', '1'] has peak elements at index 1 and 3.

  • Answered by AI
  • Q2. 2 dimentional array rotate 90 degree
  • Ans. 

    Rotate a 2D array by 90 degrees clockwise

    • Transpose the array

    • Reverse each row of the transposed array

  • Answered by AI
Round 2 - Group Discussion 

Pollitices current generation

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2023. 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 Resume tips
Round 2 - Coding Test 

1st round we had 3 coding question that has to be written(Easy,Medium,Hard)

Round 3 - Group Discussion 

We had Gd with self intro

Round 4 - Technical 

(2 Questions)

  • Q1. Tell me about Yourself
  • Q2. He gave me a coding question

I applied via LinkedIn and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions to start with. then as rounds proceeds you can see the questions being more application oriented.

Interview Preparation Tips

Interview preparation tips for other job seekers - I had 3 rounds of technical interview. One of the toughest interview panel I have come across. It is important to know the technical concept as well as the scenarios where you will be using it.

They give enough time and keep you comfortable. All you have to do is solve it meticulously and they are more in to the approach than the solutions.

All the best.
Contribute & help others!
anonymous
You can choose to be anonymous

Browseinfo Interview FAQs

How many rounds are there in Browseinfo interview?
Browseinfo interview process usually has 2 rounds. The most common rounds in the Browseinfo interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Browseinfo 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 Browseinfo. The most common topics and skills that interviewers at Browseinfo expect are Javascript, Python, HTML, Web Development and Digital Marketing.
What are the top questions asked in Browseinfo interview?

Some of the top questions asked at the Browseinfo interview -

  1. what is python? what is a list? what is a tuple? what is set? Difference betwee...read more
  2. Python Basic Questions, Questions about list, set and dictionary, Built In Func...read more
  3. some questions about pyth...read more

Recently Viewed

SALARIES

Setu

INTERVIEWS

Xopuntech

No Interviews

INTERVIEWS

Hubilo

No Interviews

LIST OF COMPANIES

Setu

Overview

COMPANY BENEFITS

RxLogix Corporation

No Benefits

SALARIES

RxLogix Corporation

No Salaries

SALARIES

Setu

LIST OF COMPANIES

RxLogix Corporation

Overview

REVIEWS

RxLogix Corporation

No Reviews

COMPANY BENEFITS

Bluepi Consulting

No Benefits

Tell us how to improve this page.

Browseinfo Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Webkul Software Interview Questions
3.8
 • 54 Interviews
Brainvire Interview Questions
3.3
 • 22 Interviews
Path Infotech Interview Questions
3.9
 • 19 Interviews
Calibraint Interview Questions
3.5
 • 12 Interviews
AppLogiQ Interview Questions
4.5
 • 4 Interviews
View all

Browseinfo Reviews and Ratings

based on 25 reviews

5.0/5

Rating in categories

4.8

Skill development

4.9

Work-life balance

4.8

Salary

4.9

Job security

4.9

Company culture

4.8

Promotions

4.8

Work satisfaction

Explore 25 Reviews and Ratings
Odoo Functional Consultant/Odoo Implementer

Ahmedabad

0-1 Yrs

Not Disclosed

Business Development Trainee

Ahmedabad

0-1 Yrs

Not Disclosed

CRM Executive

Ahmedabad

1-3 Yrs

Not Disclosed

Explore more jobs
HR Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Odoo Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Odoo Python Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Browseinfo with

Webkul Software

3.8
Compare

Emipro Technologies

2.5
Compare

MageComp

4.4
Compare

CedCommerce

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