Upload Button Icon Add office photos
Engaged Employer

i

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

HumaneBITS Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

HumaneBITS Interview Questions and Answers

Updated 12 Jun 2024
Popular Designations

8 Interview questions

A Senior PHP Web Developer was asked 12mo ago
Q. How do you set a session to expire after 5 minutes?
Ans. 

Use the session_set_cookie_params function to set session for 5 mins

  • Use session_set_cookie_params function to set the session cookie lifetime to 5 minutes

  • Example: session_set_cookie_params(300); // 300 seconds = 5 minutes

View all Senior PHP Web Developer interview questions
A Senior PHP Web Developer was asked 12mo ago
Q. Write a PHP script to sort an array without using PHP's default sorting functions.
Ans. 

PHP script to sort an array without default functions

  • Create a function to implement a sorting algorithm like bubble sort, selection sort, or insertion sort

  • Loop through the array and compare each element with the next one to determine the order

  • Swap elements if they are in the wrong order until the array is sorted

View all Senior PHP Web Developer interview questions
A Senior PHP Web Developer was asked 12mo ago
Q. What is the difference between a session and a cookie?
Ans. 

Session stores data on server side while cookie stores data on client side.

  • Session data is stored on the server, while cookie data is stored on the client's browser.

  • Sessions are more secure as the data is not exposed to the client, while cookies can be easily manipulated by the client.

  • Sessions are typically used for storing sensitive information like user credentials, while cookies are used for tracking user behav...

View all Senior PHP Web Developer interview questions
A Senior PHP Web Developer was asked 12mo ago
Q. Explain how login works in CodeIgniter/Laravel.
Ans. 

Login in CodeIgniter/Laravel involves creating a form for users to input their credentials, validating the input, checking against database records, and setting a session for authenticated users.

  • Create a login form with fields for username and password

  • Validate user input to ensure it meets required criteria

  • Check the entered credentials against records in the database

  • Set a session for authenticated users to maintai...

View all Senior PHP Web Developer interview questions
A Senior PHP Web Developer was asked 12mo ago
Q. Explain PDO in PHP.
Ans. 

PDO in PHP is a PHP Data Objects extension that provides a consistent interface for accessing databases.

  • PDO stands for PHP Data Objects

  • It is a database access layer providing a uniform method of access to multiple databases

  • It is more secure than the traditional MySQL extension

  • PDO supports prepared statements to prevent SQL injection attacks

View all Senior PHP Web Developer interview questions
A Senior PHP Web Developer was asked 12mo ago
Q. Write a PHP script to find the occurrence of each alphabet in a given string, which may contain special characters.
Ans. 

This PHP script counts the occurrences of each alphabet in a given string, ignoring special characters and case sensitivity.

  • Use preg_replace to remove special characters: $cleanString = preg_replace('/[^a-zA-Z]/', '', $inputString);

  • Convert the string to lowercase to ensure case insensitivity: $cleanString = strtolower($cleanString);

  • Use str_split to convert the string into an array of characters: $charArray = str_s...

View all Senior PHP Web Developer interview questions
A Quality Analyst was asked
Q. Explain the Automation framework.
Ans. 

Automation framework is a set of guidelines and standards for creating automated tests.

  • It provides a structure for organizing test code and data

  • It helps in reducing maintenance efforts and increasing test coverage

  • It includes tools and libraries for test automation

  • Examples include Selenium WebDriver, TestNG, and Cucumber

View all Quality Analyst interview questions
Are these interview questions helpful?
A Quality Analyst was asked
Q. Explain OOPS concepts.
Ans. 

OOPS concepts are the fundamental principles of Object-Oriented Programming.

  • Encapsulation: Hiding the implementation details of an object from the outside world.

  • Inheritance: Creating new classes from existing ones, inheriting their properties and methods.

  • Polymorphism: The ability of objects to take on many forms and perform different actions based on the context.

  • Abstraction: Focusing on the essential features of a...

View all Quality Analyst interview questions

HumaneBITS Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(7 Questions)

  • Q1. Explain how login works in CodeIgniter/Laravel
  • Ans. 

    Login in CodeIgniter/Laravel involves creating a form for users to input their credentials, validating the input, checking against database records, and setting a session for authenticated users.

    • Create a login form with fields for username and password

    • Validate user input to ensure it meets required criteria

    • Check the entered credentials against records in the database

    • Set a session for authenticated users to maintain the...

  • Answered by AI
  • Q2. Difference between session & cookie
  • Ans. 

    Session stores data on server side while cookie stores data on client side.

    • Session data is stored on the server, while cookie data is stored on the client's browser.

    • Sessions are more secure as the data is not exposed to the client, while cookies can be easily manipulated by the client.

    • Sessions are typically used for storing sensitive information like user credentials, while cookies are used for tracking user behavior o...

  • Answered by AI
  • Q3. Write PHP script to sort an array without PHP default functions
  • Ans. 

    PHP script to sort an array without default functions

    • Create a function to implement a sorting algorithm like bubble sort, selection sort, or insertion sort

    • Loop through the array and compare each element with the next one to determine the order

    • Swap elements if they are in the wrong order until the array is sorted

  • Answered by AI
  • Q4. Write PHP script to find occurrence of alphabets in a given string, string can contain special chars
  • Ans. 

    This PHP script counts the occurrences of each alphabet in a given string, ignoring special characters and case sensitivity.

    • Use preg_replace to remove special characters: $cleanString = preg_replace('/[^a-zA-Z]/', '', $inputString);

    • Convert the string to lowercase to ensure case insensitivity: $cleanString = strtolower($cleanString);

    • Use str_split to convert the string into an array of characters: $charArray = str_split(...

  • Answered by AI
  • Q5. How to set session for 5 mins
  • Ans. 

    Use the session_set_cookie_params function to set session for 5 mins

    • Use session_set_cookie_params function to set the session cookie lifetime to 5 minutes

    • Example: session_set_cookie_params(300); // 300 seconds = 5 minutes

  • Answered by AI
  • Q6. Table A has columns A-name, A-desc, A-BID, Table B has B-ID, B-name, A-BID is FK from B table, which JOIN to apply if want to get records which are A and B too.
  • Ans. 

    Use INNER JOIN to get records from both Table A and Table B based on the foreign key A-BID.

    • Use INNER JOIN to combine records from Table A and Table B based on the common column A-BID.

    • Specify the join condition using ON clause.

    • Select the columns you want to retrieve from both tables.

  • Answered by AI
  • Q7. Explain PDO in PHP
  • Ans. 

    PDO in PHP is a PHP Data Objects extension that provides a consistent interface for accessing databases.

    • PDO stands for PHP Data Objects

    • It is a database access layer providing a uniform method of access to multiple databases

    • It is more secure than the traditional MySQL extension

    • PDO supports prepared statements to prevent SQL injection attacks

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Group Discussion 

About role and responsibilities
Few use cases

Round 2 - One-on-one 

(2 Questions)

  • Q1. Ceo and cto discussion
  • Q2. Salary was non negotiable

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not work here.
No career growth and appraisal cycle are very poor.
Until unless you do agree with the management they will treat you good but then after one year they will not notice your contribution and treat you as useless.

I applied via Naukri.com and was interviewed in Aug 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell about introduction?
  • Q2. Tell me details about project?
  • Q3. Explain OOPS concepts.
  • Ans. 

    OOPS concepts are the fundamental principles of Object-Oriented Programming.

    • Encapsulation: Hiding the implementation details of an object from the outside world.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and methods.

    • Polymorphism: The ability of objects to take on many forms and perform different actions based on the context.

    • Abstraction: Focusing on the essential features of an obj...

  • Answered by AI
  • Q4. Explain Automation framework.
  • Ans. 

    Automation framework is a set of guidelines and standards for creating automated tests.

    • It provides a structure for organizing test code and data

    • It helps in reducing maintenance efforts and increasing test coverage

    • It includes tools and libraries for test automation

    • Examples include Selenium WebDriver, TestNG, and Cucumber

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics should be clear. Manual and automation part should be clear. Project and framework should be explained in detail.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Manual testing ,Test strategy, boundary value analysis

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and easy

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about HumaneBITS?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Sep 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Python program like print day, month and year from current date and fibonacci series
  • Q2. Bluetooth concept basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare only program and basic concepts

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1.  What are Option Strict and Option Explicit? What are all the differences between Dispose and Finalize()? What is the difference between System.String and System.StringBuilder classes? What is Delegate? ...
  • Ans. 

    Answers to common interview questions for Software Engineer position

    • Option Strict and Option Explicit are compiler directives in VB.NET

    • Dispose() is used to release unmanaged resources while Finalize() is used for garbage collection

    • System.String is immutable while System.StringBuilder is mutable

    • Delegate is a type that represents a reference to a method

    • Value types store data directly while reference types store a referen...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - selection process-
1st round-online test(prpare all kind of logical, verbal, and .net related questions)
2nd round- technical round(prepare all .net interview questions,sql server questions, winforms, web api)
3rd round- hr discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Balance sheet
  • Ans. 

    Balance sheet is a financial statement that shows a company's assets, liabilities, and shareholders' equity at a specific point in time.

    • It provides a snapshot of a company's financial position.

    • Assets are what the company owns, liabilities are what it owes, and shareholders' equity is the difference between the two.

    • The balance sheet follows the accounting equation: Assets = Liabilities + Shareholders' Equity.

    • It helps in...

  • Answered by AI
  • Q2. What is bond and types of bonds
  • Ans. 

    A bond is a fixed income investment where an investor loans money to an entity which borrows the funds for a defined period at a fixed interest rate.

    • Types of bonds include government bonds, corporate bonds, municipal bonds, and convertible bonds.

    • Government bonds are issued by governments to fund public spending.

    • Corporate bonds are issued by companies to raise capital for various purposes.

    • Municipal bonds are issued by l...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I perform well in the interview.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Feb 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 - HR 

(6 Questions)

  • Q1. Share details of your previous job.
  • Q2. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards, ideally in the range of $X to $Y.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for similar roles.

    • Consider your experience: If you have 5 years of experience, you might expect a higher salary than someone just starting.

    • Factor in location: Salaries can vary significantly based...

  • Answered by AI
  • Q3. What is your family background?
  • Q4. Why should we hire you?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't loose you strength speak to oponent hr person first u will speak that right or wrong should maintain your confidence
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Day to day tasks in previous organisation?
  • Q2. Questions about skills mentioned in your resume
Round 2 - HR 

(1 Question)

  • Q1. Introduce about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and be prepared and be confident and think analytically and be strong in problem solving kind of questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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. 7 apti questions with 4 coding questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Sort elements at even index of array
  • Ans. 

    Sort elements at even index of array

    • Iterate through the array and select elements at even indices

    • Sort the selected elements

    • Replace the original elements with the sorted ones

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. Puzzles with coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - study puzzles and do basic questions of array, strings, etc from gfg

Skills evaluated in this interview

HumaneBITS Interview FAQs

How many rounds are there in HumaneBITS interview?
HumaneBITS interview process usually has 1-2 rounds. The most common rounds in the HumaneBITS interview process are Group Discussion, One-on-one Round and Technical.
How to prepare for HumaneBITS 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 HumaneBITS. The most common topics and skills that interviewers at HumaneBITS expect are Javascript, JIRA, CSS, Web Technologies and C#.
What are the top questions asked in HumaneBITS interview?

Some of the top questions asked at the HumaneBITS interview -

  1. Table A has columns A-name, A-desc, A-BID, Table B has B-ID, B-name, A-BID i...read more
  2. Write PHP script to sort an array without PHP default functi...read more
  3. Write PHP script to find occurrence of alphabets in a given string, string can ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
View more

HumaneBITS Reviews and Ratings

based on 31 reviews

4.4/5

Rating in categories

3.9

Skill development

4.4

Work-life balance

4.1

Salary

4.1

Job security

4.3

Company culture

4.0

Promotions

3.9

Work satisfaction

Explore 31 Reviews and Ratings
Senior Software Developer
19 salaries
unlock blur

₹13.2 L/yr - ₹23.9 L/yr

Software Developer
18 salaries
unlock blur

₹6.3 L/yr - ₹16.5 L/yr

Quality Analyst
15 salaries
unlock blur

₹3.8 L/yr - ₹9.5 L/yr

Software Engineer
12 salaries
unlock blur

₹3.5 L/yr - ₹14 L/yr

Support Engineer
7 salaries
unlock blur

₹5.2 L/yr - ₹8 L/yr

Explore more salaries
Compare HumaneBITS with

Global Edge Software

3.5
Compare

Moveinsync Technology Solutions

3.2
Compare

PagarBook

3.7
Compare

Trawex Technologies

4.5
Compare
write
Share an Interview