Upload Button Icon Add office photos

Filter interviews by

Bookxpert Python Fullstack Developer Interview Questions and Answers

Updated 11 Jan 2025

Bookxpert Python Fullstack Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

Logical reasoning,
Abstract reasoning
Time and work
Profit and loss

Round 2 - Coding Test 

List and tuple
Decoding and encoder
Advantages of python

Round 3 - Group Discussion 

Important of software skills
Role of business success
Create a more opportunities

Round 4 - Assignment 

Research the company
Practice

Round 5 - Case Study 

Analysis a client production process and suggest way to improve

Round 6 - HR 

(2 Questions)

  • Q1. What are python list and tuple
  • Ans. 

    Python list and tuple are both data structures used to store multiple items in a single variable, but list is mutable while tuple is immutable.

    • List is defined using square brackets [] and can be modified after creation.

    • Tuple is defined using parentheses () and cannot be modified after creation.

    • Example of list: my_list = [1, 'apple', True]

    • Example of tuple: my_tuple = (2, 'banana', False)

  • Answered by AI
  • Q2. What is _init_() in python
  • Ans. 

    The __init__() method is a special method in Python classes used to initialize new objects.

    • The __init__() method is called when a new object is created from a class.

    • It is used to initialize the attributes of the object.

    • The __init__() method is similar to a constructor in other programming languages.

  • Answered by AI

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Def factorial_iterative(n):
result = 1
for i in range(1, n + 1):
result *= i
return result

Interview Preparation Tips

Interview preparation tips for other job seekers - Working on personal projects can showcase your skills and initiative, especially if you’re pivoting to a new field.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2023. 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 - Aptitude Test 

Train and time and work

Round 3 - Technical 

(3 Questions)

  • Q1. Python fullstack
  • Q2. Introduction,projects,skills,strenths,habies,goles
  • Q3. Python fullstack with django

Interview Preparation Tips

Topics to prepare for Infosys Python Fullstack Developer interview:
  • about myself
  • my skills
  • strenths
  • projectwork
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. Tell me your self How to you passHR equations
  • Q2. What would you add to the team question
  • Q3. What is your self Describe who are?or Tellme about your background
  • Q4. What is your greater fear?

Interview Preparation Tips

Interview preparation tips for other job seekers - Python html css javascript

I applied via Walk-in and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Why should be fit for job 

(1 Question)

  • Q1. How much an candidate can capable, he can work at any condition in stress
Round 2 - Coding Test 

Basic need will be need for fresher

Round 3 - HR 

(1 Question)

  • Q1. What your goal,why u choose this

Interview Preparation Tips

Interview preparation tips for other job seekers - Check the person knowledge more than coding, degree, personality
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Demonstrate Function Overriding.
  • Ans. 

    Function Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • In Function Overriding, a subclass can provide a specific implementation of a method that is already defined in its parent class.

    • The method in the subclass must have the same name, return type, and parameters as the method in the parent class to ove...

  • Answered by AI
  • Q2. Linq query with order by
  • Ans. 

    Using LINQ query to order data in C#

    • Use the OrderBy method to sort data in ascending order

    • Use the OrderByDescending method to sort data in descending order

    • You can also use ThenBy and ThenByDescending for secondary sorting

  • Answered by AI
  • Q3. What is Out Parameter with example
  • Ans. 

    Out parameter is used to pass data out of a method or function.

    • Out parameters are used when a method needs to return multiple values.

    • They are declared using the 'out' keyword in C#.

    • Example: void CalculateArea(int length, int width, out int area) { area = length * width; }

  • Answered by AI
  • Q4. Authentication and autherization, JWT Tocken
  • Q5. Reflection in C#
  • Ans. 

    Reflection in C# allows for inspecting and manipulating metadata of types at runtime.

    • Reflection is used to dynamically create instances of types, access properties, and invoke methods.

    • Examples include using reflection to load assemblies at runtime, inspect attributes of types, and generate code dynamically.

    • Reflection can be slow and should be used judiciously due to performance overhead.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Dot Net Fullstack Developer interview:
  • OOPS
  • SQL
  • Javascript
Interview preparation tips for other job seekers - Basics of OOPS SQL JS will do.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between jvm jre jdk?
  • Ans. 

    JVM is the virtual machine that runs Java bytecode, JRE is the runtime environment for Java programs, and JDK is the development kit for creating Java applications.

    • JVM (Java Virtual Machine) is responsible for running Java bytecode on different platforms.

    • JRE (Java Runtime Environment) includes JVM, libraries, and other components necessary to run Java applications.

    • JDK (Java Development Kit) is a software development ki...

  • Answered by AI
  • Q2. Why string is immutable?
  • Ans. 

    String is immutable in Java to ensure security, thread safety, and optimization.

    • Immutable strings prevent accidental changes to sensitive data like passwords.

    • Immutable strings allow for safe sharing of string literals across multiple threads.

    • Immutable strings enable string pooling for memory optimization.

    • Example: String str = "Hello"; str.concat(" World"); // str remains "Hello"

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic js question on hoisting, closure, promises
Round 2 - Behavioral 

(1 Question)

  • Q1. Basic resume based
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion -- HR never responded
Interview experience
3
Average
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Company Website and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself?
  • Ans. •I'm Akashdeep Prasad. • I'm in my early twenties. • I'm born and brought up in Mumbai, Andheri but currently I'm reside in Thane. - Now, coming to my highest qualification :- • I have completed my graduation in Bachelor of Science in Information Technology from University of Mumbai. - I like to share my certification with you :- • I'm certified Java Full Stack Developer. - Sir, I like to share my hobbies with you :...
  • Answered Anonymously
  • Q2. Why should I hire you ?
  • Q3. What is your salary expectation?
Round 2 - Technical 

(1 Question)

  • Q1. I forgot question
Round 3 - Technical 

(1 Question)

  • Q1. I can't remember what questions asked

Interview Preparation Tips

Topics to prepare for TCS Fullstack Java Developer interview:
  • Java
Interview preparation tips for other job seekers - The job seekers is good and friendly.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I was interviewed in Aug 2023.

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 - Technical 

(4 Questions)

  • Q1. SQL - a table with emp-id, emp-name, manager-id, Need to find the manger name for each emplyee.
  • Q2. FizzBuzz - if number is divisible by 3 print "fizz", if by 5 print "buzz", if by both "fizzbuzz"
  • Ans. 

    A simple program to print 'fizz' for multiples of 3, 'buzz' for multiples of 5, and 'fizzbuzz' for multiples of both.

    • Iterate through numbers from 1 to n.

    • Use modulo operator to check divisibility by 3 and 5.

    • Print 'fizz', 'buzz', or 'fizzbuzz' accordingly.

  • Answered by AI
  • Q3. Is it necessary for classes implementing an interface to implement interface methods?
  • Ans. 

    Yes, classes implementing an interface must implement interface methods.

    • Classes implementing an interface must provide concrete implementations for all methods declared in the interface.

    • Failure to implement all interface methods will result in a compilation error.

    • Interfaces are used to define a contract that implementing classes must adhere to.

  • Answered by AI
  • Q4. Spring basics - annotations
Round 3 - Technical 

(1 Question)

  • Q1. Spring boot basics
Round 4 - HR 

(1 Question)

  • Q1. Talked about my previous companies and salary. Before they conduct the interview I had told them my expectation, while negotiation they denied for providing that and were offering just 10% hike over my cur...

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go for this company. It is just waste of time.

Skills evaluated in this interview

Bookxpert Interview FAQs

How many rounds are there in Bookxpert Python Fullstack Developer interview?
Bookxpert interview process usually has 6 rounds. The most common rounds in the Bookxpert interview process are HR, Aptitude Test and Coding Test.
What are the top questions asked in Bookxpert Python Fullstack Developer interview?

Some of the top questions asked at the Bookxpert Python Fullstack Developer interview -

  1. What are python list and tu...read more
  2. What is _init_() in pyt...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

Bookxpert Python Fullstack Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Accountant
5 salaries
unlock blur

₹1.5 L/yr - ₹2.4 L/yr

Junior Accountant
4 salaries
unlock blur

₹1.5 L/yr - ₹2.5 L/yr

Data Entry Operator
3 salaries
unlock blur

₹2 L/yr - ₹2.2 L/yr

Explore more salaries
Compare Bookxpert with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Snapdeal

3.8
Compare

Infibeam

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