Upload Button Icon Add office photos

Filter interviews by

Bista Solutions Software Trainee Interview Questions and Answers

Updated 3 Feb 2022

Bista Solutions Software Trainee Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

40 mins, vocabulary skills

Round 2 - Group Discussion 

Skillset vs formal education

Round 3 - Technical 

(1 Question)

  • Q1. Difference between tuple and dictionary
  • Ans. 

    Tuple is an ordered collection of elements while dictionary is an unordered collection of key-value pairs.

    • Tuple uses indexing to access elements while dictionary uses keys to access values.

    • Tuple is immutable while dictionary is mutable.

    • Tuple can store elements of different data types while dictionary values can be of any data type.

    • Tuple is represented using parentheses while dictionary is represented using curly braces...

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. What is your family background?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - dont go for money. go for growth

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

They gave 3 codes in which we have to write atleast 2 of them.

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your self?
  • Q2. What are the conclusions of your project?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was basic aptitude and reasoning

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
No response
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 

Amcat shl test
was conducted , long process

Round 3 - Technical 

(1 Question)

  • Q1. Fib location shifts
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 3 interview rounds.

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 - Aptitude Test 

It's ask Quantitative, verbal Ability,and logical Questions.. All question was easily to hard levels..

Round 3 - HR 

(2 Questions)

  • Q1. After Aapptitude test I Selected in next rounds that's HR round it's was best Experience in interview... interviewer is very Friendly nature with me..and so am aalso so happy..that time
  • Q2. Q1.tell me about your self ? Q2.which language you do perfect? C/Java Q3.Tell me Some project Details? Q4.what is Your aim in your life? Q5.whats your father doing?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. 1.c basic questions
  • Q2. 2.os concepts and linux concepts and for freshers they will check your communication skills
Round 2 - HR 

(1 Question)

  • Q1. Asked about relocation ,package discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. What is an array?
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type in a contiguous memory location.

    • Arrays have a fixed size determined at the time of declaration.

    • Elements in an array are accessed using an index starting from 0.

    • Example: string[] names = {"Alice", "Bob", "Charlie"};

  • Answered by AI
  • Q2. What is selection sort.?
  • Ans. 

    Selection sort is a simple sorting algorithm that repeatedly selects the minimum element from an unsorted portion of the array and swaps it with the first unsorted element.

    • Iterate through the array to find the smallest element and swap it with the first element.

    • Repeat the process for the remaining unsorted portion of the array.

    • Time complexity of O(n^2) makes it inefficient for large datasets.

  • Answered by AI

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 at Sri Ramakrishna Institute of Technology, Coimbatore and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy basis aptitude questions like train and work

Round 2 - Coding Test 

C, Java, Python are the main language

Interview Preparation Tips

Topics to prepare for Accenture Software Trainee interview:
  • Problem Solving
Interview preparation tips for other job seekers - No back off
All the best
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at VIT Business School, Vellore and was interviewed in Mar 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Was moderate level and quite easy to solve

Round 2 - Coding Test 

Coding questions were basic and easy to solve

Round 3 - Technical 

(1 Question)

  • Q1. Concept based questions and also questions on the coding you written
Round 4 - HR 

(1 Question)

  • Q1. Nothing special about it was also quite easy only

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic and don't get nervous you will crack it easily

Interview Questionnaire 

4 Questions

  • Q1. Tell me about your technical skills and background?
  • Q2. What is the use of pointers?
  • Ans. 

    Pointers are variables that store memory addresses. They are used to manipulate data structures and improve program efficiency.

    • Pointers allow for dynamic memory allocation

    • Pointers can be used to pass values by reference

    • Pointers can be used to create linked lists

    • Pointers can be used to access array elements

    • Example: int *ptr = # // stores address of num variable

    • Example: void swap(int *x, int *y) { int temp = *x; *x =...

  • Answered by AI
  • Q3. Difference between arrays and linkedlist?
  • Ans. 

    Arrays are fixed in size and contiguous memory while linked lists are dynamic and non-contiguous.

    • Arrays have constant time access to elements while linked lists require traversal.

    • Arrays are better for random access while linked lists are better for insertion and deletion.

    • Arrays use less memory overhead than linked lists.

    • Example: Array of strings - ['apple', 'banana', 'orange']

  • Answered by AI
  • Q4. Tell me about variables and its types?
  • Ans. 

    Variables are containers that store data values. There are different types of variables in programming.

    • Variables are declared using keywords like var, let, const.

    • Variables can store different types of data such as numbers, strings, booleans, objects, arrays, etc.

    • Variables can be global or local depending on where they are declared.

    • Variables can be reassigned with new values.

    • Examples: var age = 25; let name = 'John'; co

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and don't get disappointed for any reason

Skills evaluated in this interview

Bista Solutions Interview FAQs

How many rounds are there in Bista Solutions Software Trainee interview?
Bista Solutions interview process usually has 4 rounds. The most common rounds in the Bista Solutions interview process are Technical, HR and Aptitude Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Bista Solutions interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Software Developer
25 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Team Lead
7 salaries
unlock blur

₹7.3 L/yr - ₹18 L/yr

Senior Software Developer
6 salaries
unlock blur

₹7.1 L/yr - ₹11.5 L/yr

Project Lead
6 salaries
unlock blur

₹11 L/yr - ₹17.5 L/yr

Odoo Python Developer
6 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Bista Solutions with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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