Upload Button Icon Add office photos
Engaged Employer

i

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

QBrainX Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 48 Reviews

Filter interviews by

QBrainX Software Intern Interview Questions and Answers

Updated 7 Jul 2022

QBrainX Software Intern Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java coding about basics of Java and technology
Round 2 - Technical 

(1 Question)

  • Q1. Oops concepts,Java, coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics in programming language will be better advantage to get selected

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic to medium questions related to DotNet Core MVC, SQL Server, etc
Round 2 - Technical 

(1 Question)

  • Q1. Completely unprofessional behavior of the interviewer. - No Introduction Direct start asking questions. - Asking too many misleading questions (First ask what you worked on, then ask did you heard about th...
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. I don't know why they rejected me
  • Q2. What ever they asked me for coding part the output is correct and logic is also correct
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of filters
  • Ans. 

    Types of filters include low-pass, high-pass, band-pass, and band-stop filters.

    • Low-pass filter allows frequencies below a certain cutoff frequency to pass through.

    • High-pass filter allows frequencies above a certain cutoff frequency to pass through.

    • Band-pass filter allows a specific range of frequencies to pass through.

    • Band-stop filter blocks a specific range of frequencies from passing through.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Project Details
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About the project. and asked what i did in project. how to create schema in pyspark. what is ADE. what are the difficulties i faced in project. what is spark submit command how we write sparksubmit command...
  • Q2. No of occurrences of letter in a string.
  • Ans. 

    Count occurrences of a letter in a string.

    • Iterate through each character in the string and count occurrences of the specified letter.

    • Use a hashmap to store the count of each letter.

    • Handle both uppercase and lowercase letters to ensure accurate counting.

  • Answered by AI

Skills evaluated in this interview

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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Confidential to disclose
Round 3 - Technical 

(1 Question)

  • Q1. Confidential not to disclose
Round 4 - One-on-one 

(1 Question)

  • Q1. Confidential not to disclose
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Easy interview questions in Java

I applied via LinkedIn and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

There will be 3 coding questions. They are of medium and hard level.

Round 2 - Technical 

(1 Question)

  • Q1. Sort array consisting 0's 1's and 2's without inbuilt functions
  • Ans. 

    Sort an array of 0's, 1's, and 2's without using inbuilt functions.

    • Use three pointers to keep track of the last index of 0's, 1's, and 2's

    • Iterate through the array and swap elements based on their value

    • Continue until all elements are sorted

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Os cn related questions
Round 4 - HR 

(1 Question)

  • Q1. Java questions and general hr questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in Java and CS topics.
DSA is anyways compulsory for this company you need to solve the questions in the given time

Skills evaluated in this interview

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

I was interviewed before Apr 2023.

Round 1 - Technical 

(1 Question)

  • Q1. There was simple DSA question ,

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont join this company

Interview Questionnaire 

10 Questions

  • Q1. What is dispose and finalize?
  • Ans. 

    Dispose and finalize are methods used for releasing resources in .NET.

    • Dispose is used to release unmanaged resources immediately.

    • Finalize is used to release managed resources when the garbage collector runs.

    • Dispose can be called manually or through the using statement.

    • Finalize is called automatically by the garbage collector.

    • Dispose is implemented by IDisposable interface.

    • Finalize is implemented by Object class.

  • Answered by AI
  • Q2. Explain oops concepts?
  • Ans. 

    OOPs concepts are the principles of Object-Oriented Programming that help in designing and implementing software solutions.

    • Encapsulation - binding data and functions together

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on multiple forms

    • Abstraction - hiding implementation details

    • Objects - instances of classes that encapsulate data and behavior

  • Answered by AI
  • Q3. What is inheritance and disadavantages of it?
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • It allows for code reusability and promotes a hierarchical structure.

    • It can lead to tight coupling and make the code harder to maintain.

    • It can also result in the creation of unnecessary classes and increase complexity.

    • Example: A Car class can inherit properties and methods from a Vehicle class.

    • Example: A Square class can inherit prope

  • Answered by AI
  • Q4. Explicite interface?
  • Ans. 

    Explicit interface is a way to implement multiple interfaces with same method names.

    • Explicit interface is used to avoid naming conflicts when implementing multiple interfaces.

    • It is implemented by prefixing the interface name to the method name.

    • It is useful when implementing COM interfaces in .NET.

    • Example: void IInterface1.Method() and void IInterface2.Method()

  • Answered by AI
  • Q5. Interface vs abstract classes
  • Ans. 

    Interface defines only method signatures while abstract class can have method implementations.

    • Interfaces can be implemented by multiple classes while abstract classes can only be extended by one class.

    • Interfaces are used for achieving multiple inheritance in Java while abstract classes are used for single inheritance.

    • Interfaces cannot have constructors while abstract classes can have constructors.

    • An example of an inter...

  • Answered by AI
  • Q6. Startup method in .net core?
  • Ans. 

    Startup method in .NET Core is used to configure the application's services and middleware.

    • Startup method is defined in Startup.cs file.

    • It includes ConfigureServices and Configure methods.

    • ConfigureServices is used to add services to the dependency injection container.

    • Configure is used to configure the HTTP request pipeline.

    • Example: public void ConfigureServices(IServiceCollection services) { services.AddMvc(); }

    • Example...

  • Answered by AI
  • Q7. What are Http verbs?
  • Ans. 

    HTTP verbs are used to indicate the type of action being performed on a resource.

    • HTTP verbs include GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS

    • GET is used to retrieve data from a server

    • POST is used to submit data to a server

    • PUT is used to update an existing resource on a server

    • DELETE is used to delete a resource from a server

    • PATCH is used to partially update a resource on a server

    • HEAD is used to retrieve only the head...

  • Answered by AI
  • Q8. Questions related to logging in webapi?
  • Q9. Sql profiler?
  • Q10. Explain project architecture?
  • Ans. 

    Project architecture refers to the overall design and structure of a software project.

    • It includes the organization of components and modules

    • Defines the relationships between them

    • Specifies the technologies and tools used

    • Determines the overall performance and scalability

    • Examples include MVC, microservices, and client-server architecture

  • Answered by AI

Skills evaluated in this interview

QBrainX Interview FAQs

How many rounds are there in QBrainX Software Intern interview?
QBrainX interview process usually has 2 rounds. The most common rounds in the QBrainX interview process are Technical.
How to prepare for QBrainX Software Intern 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 QBrainX. The most common topics and skills that interviewers at QBrainX expect are Analytical, CRM, Coding, Debugging and IT Services.
What are the top questions asked in QBrainX Software Intern interview?

Some of the top questions asked at the QBrainX Software Intern interview -

  1. Java coding about basics of Java and technol...read more
  2. Oops concepts,Java, cod...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 QBrainX interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k 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
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
QBrainX Software Intern Salary
based on 5 salaries
₹0.9 L/yr - ₹1.1 L/yr
76% less than the average Software Intern Salary in India
View more details
Servicenow Developer
42 salaries
unlock blur

₹1.2 L/yr - ₹9.3 L/yr

Java Developer
8 salaries
unlock blur

₹3.5 L/yr - ₹3.8 L/yr

Junior Java Developer
8 salaries
unlock blur

₹3.5 L/yr - ₹3.8 L/yr

Java Specialist
7 salaries
unlock blur

₹7.7 L/yr - ₹17 L/yr

Salesforce Developer
7 salaries
unlock blur

₹3 L/yr - ₹3.5 L/yr

Explore more salaries
Compare QBrainX 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