Premium Employer

i

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

Advisor360°

Compare button icon Compare button icon Compare

Filter interviews by

Advisor360° Interview Questions and Answers

Updated 3 Oct 2024

Advisor360° Interview Experiences

1 interview found

Software dev intern Interview Questions & Answers

user image Anonymous

posted on 3 Oct 2024

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

I applied via campus placement at Manipal Institute of Technology (MIT) and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy array and string based questions

Round 2 - Technical 

(3 Questions)

  • Q1. Easy array question
  • Q2. Easy string question
  • Q3. Easy sql question

Interview Preparation Tips

Topics to prepare for Advisor360° Software dev intern interview:
  • DSA easy
  • SQL
  • OOPS
Interview preparation tips for other job seekers - get your basics cleared

Jobs at Advisor360°

View all

Interview questions from similar companies

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

I was interviewed in Nov 2024.

Round 1 - Coding Test 

Hacker Rack Test with medium to high difficulty

Round 2 - Technical 

(2 Questions)

  • Q1. Explain your current project
  • Ans. 

    I am currently working on developing a mobile application for tracking fitness goals and progress.

    • Developing a mobile app using React Native

    • Implementing features such as goal setting, progress tracking, and workout logging

    • Integrating with wearable devices like Fitbit for data synchronization

  • Answered by AI
  • Q2. Questions about kakfa, ES and Java 8
Round 3 - Technical 

(1 Question)

  • Q1. Similar questions on your current project and questions around kafka
Round 4 - Coding Test 

Basic Coding Java and algorithm questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Behavioural round which is similar to psychometric tests
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(4 Questions)

  • Q1. Create basic react app with dummy data fetched from JSON API
  • Ans. 

    Create a basic React app with dummy data fetched from a JSON API.

    • Set up a new React project using create-react-app

    • Create a component to fetch data from a JSON API using fetch or axios

    • Display the fetched data in the component

  • Answered by AI
  • Q2. Array methods and Flatten array
  • Q3. Event loop
  • Q4. HTML and Javascript basics
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

(2 Questions)

  • Q1. What data structure is used to implement a priority queue?
  • Ans. 

    Binary heap is used to implement a priority queue.

    • Binary heap is a complete binary tree where each node has a value greater than or equal to its children.

    • It can be implemented using arrays, where the parent of node at index i is at index (i-1)/2.

    • Insertion and deletion operations have time complexity of O(log n) in a binary heap.

  • Answered by AI
  • Q2. How many trees will a binary tree have?
  • Ans. 

    A binary tree can have any number of nodes, but the maximum number of trees with n nodes is 2^n.

    • A binary tree can have 0 nodes, 1 node, 2 nodes, or any number of nodes.

    • The maximum number of binary trees with n nodes is 2^n.

    • For example, a binary tree with 3 nodes can have up to 8 different structures.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. SQL Query to return the second highest marks in a student database
  • Ans. 

    Use a SQL query to find the second highest marks in a student database.

    • Use the ORDER BY clause to sort the marks in descending order

    • Use the LIMIT clause to limit the result to the second row

  • Answered by AI
  • Q2. Program to check if two strings are anagrams
  • Ans. 

    Program to check if two strings are anagrams

    • Create a function that takes in two strings as input

    • Remove any spaces and convert both strings to lowercase for consistency

    • Sort the characters in both strings and compare if they are equal to determine if they are anagrams

    • Example: 'listen' and 'silent' are anagrams

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Normal basic question train and few Logic

Round 2 - Technical 

(2 Questions)

  • Q1. What is Continue?
  • Ans. 

    Continue is a keyword in programming that is used to skip the current iteration of a loop and continue with the next iteration.

    • Continue is used in loops like for, while, and do-while to skip the current iteration and move to the next one.

    • It is often used to skip certain elements in an array or to avoid executing specific code under certain conditions.

    • Example: for(int i=0; i<5; i++) { if(i==2) { continue; } System.out.p

  • Answered by AI
  • Q2. Break, if else, while

Interview Preparation Tips

Interview preparation tips for other job seekers - Ready basic question but dont join the firm
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How Performance of application can be improved
  • Ans. 

    Performance of an application can be improved by optimizing code, using efficient algorithms, caching data, and scaling resources.

    • Optimize code by reducing unnecessary loops, improving database queries, and minimizing memory usage

    • Use efficient algorithms like binary search instead of linear search for large datasets

    • Implement caching mechanisms to store frequently accessed data and reduce database calls

    • Scale resources b...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. SQL Questions - Constraints- how to optimize long SQL query without changing the output
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Define your current role and responsibilities
  • Q2. Process of requirement gathering
  • Ans. 

    Requirement gathering is the process of collecting and documenting information from stakeholders to define project needs.

    • Identify stakeholders and gather their input

    • Document requirements in a clear and organized manner

    • Validate requirements with stakeholders to ensure accuracy

    • Use techniques like interviews, surveys, and workshops to gather information

  • Answered by AI
  • Q3. Steps of initiating a new project
  • Q4. How do you manage stakeholders
  • Q5. Scrum Artifacts
Round 2 - One-on-one 

(3 Questions)

  • Q1. Current role and responsibilities
  • Q2. Artifacts for developer
  • Ans. 

    Artifacts for developers include design documents, code repositories, test cases, and deployment scripts.

    • Design documents such as architecture diagrams and wireframes

    • Code repositories like GitHub or Bitbucket for version control

    • Test cases to ensure code functionality and quality

    • Deployment scripts for automating the deployment process

  • Answered by AI
  • Q3. Process models, ERD, Use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview experience was great. Futran was looking for a BA who could work on multiple projects and be a proxy Product owner. They are looking for someone who can work with minimal guidance. HR process was seamless
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

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

Round 1 - Coding Test 

It was Machine test, i had to make a project and connect it to Database and submit details in database table from form.

Round 2 - Technical 

(4 Questions)

  • Q1. Technical verbal Interview, question were related to JavaScript, Json, JQuery, and how to perform click and other event on click, on change etc, and how to get text content entered in text box, mostly rel...
  • Q2. What is Collection Framework?
  • Ans. 

    Collection Framework is a unified architecture for representing and manipulating collections of objects in Java.

    • It provides interfaces (List, Set, Queue, etc.) and classes (ArrayList, HashSet, PriorityQueue, etc.) to store and manipulate groups of objects.

    • Collections can be easily sorted, searched, and iterated using methods provided by the Collection Framework.

    • Example: ArrayList is a class that implements the List int...

  • Answered by AI
  • Q3. What is RestApi?
  • Ans. 

    RestApi is a set of rules and conventions for building and interacting with web services using HTTP methods.

    • RestApi stands for Representational State Transfer Application Programming Interface.

    • It allows communication between different software systems over the internet.

    • RestApi uses standard HTTP methods like GET, POST, PUT, DELETE for data manipulation.

    • JSON or XML formats are commonly used for data exchange in RestApi.

    • ...

  • Answered by AI
  • Q4. How to add one ArrayList object to another, which method is used to achieve this. Ans:- By using addAll() Method
  • Ans. 

    The addAll() method is used to add all elements of one ArrayList to another.

    • Use the addAll() method to add all elements of one ArrayList to another

    • Syntax: list1.addAll(list2);

    • Example: ArrayList list1 = new ArrayList<>(); list1.addAll(Arrays.asList(1, 2, 3));

Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Just Introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - This procedure can be different for anyone else, and hiring team didn't seem serious about hiring procedure .

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 dsa questions were asked

Round 2 - HR 

(5 Questions)

  • Q1. Dsa questinsxare asked
  • Q2. Coding in live anlong project explanation
  • Ans. 

    Coding in live project involves writing and implementing code in a real-world software development project.

    • Understand the project requirements and scope before writing any code.

    • Collaborate with team members to ensure code integration and compatibility.

    • Test and debug code to ensure it meets project specifications.

    • Document code changes and updates for future reference.

    • Follow coding best practices and guidelines to mainta...

  • Answered by AI
  • Q3. Nothing is asked in my 3rd question
  • Q4. What does the following C++ code snippet do? int x = 5; while (x > 0) { cout << x << " "; x--; } Results in a compilation error Prints "54321" Prints "545454" Prints "12345"
  • Ans. 

    Prints numbers from 5 to 1 separated by a space

    • The code initializes x to 5, then enters a while loop that prints the value of x and decrements it until x is no longer greater than 0

    • The output will be '54321'

  • Answered by AI
  • Q5. What will be the value printed to the console? #include void function(int arr[], int size) { for (int 10; 1 size; 1++) { arr[1] = 2; } int main() { int arr[] {1, 2, 3, 4, 5); function(arr, 5);...
  • Ans. 

    The value printed to the console will be 246810.

    • The function modifies the array elements to be 2.

    • The main function calls the function to modify the array.

    • The loop in main function prints the modified array elements.

  • Answered by AI

Skills evaluated in this interview

Advisor360° Interview FAQs

How many rounds are there in Advisor360° interview?
Advisor360° interview process usually has 2 rounds. The most common rounds in the Advisor360° interview process are Coding Test and Technical.
How to prepare for Advisor360° 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 Advisor360°. The most common topics and skills that interviewers at Advisor360° expect are Agile Coaching, Python, Software Design, Agile and Backend.
What are the top questions asked in Advisor360° interview?

Some of the top questions asked at the Advisor360° interview -

  1. easy array quest...read more
  2. easy string quest...read more
  3. easy sql quest...read more

Tell us how to improve this page.

Advisor360° Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Join Advisor360° Unleash productivity with integrated platform of configurable solution

Interview Questions from Similar Companies

Angel One Interview Questions
3.9
 • 134 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
HDFC Securities Interview Questions
3.6
 • 102 Interviews
Sharekhan Interview Questions
3.9
 • 78 Interviews
Groww Interview Questions
3.8
 • 65 Interviews
Upstox Interview Questions
3.7
 • 35 Interviews
Paytm Money Interview Questions
3.2
 • 30 Interviews
ICICI Direct Interview Questions
3.7
 • 24 Interviews
Motilal Oswal Interview Questions
3.8
 • 19 Interviews
Zerodha Interview Questions
4.2
 • 9 Interviews
View all

Advisor360° Reviews and Ratings

based on 5 reviews

4.7/5

Rating in categories

4.6

Skill development

4.6

Work-life balance

4.6

Salary

4.1

Job security

4.4

Company culture

3.6

Promotions

4.6

Work satisfaction

Explore 5 Reviews and Ratings
Senior QA Automation Engineer

Bangalore / Bengaluru

6-10 Yrs

Not Disclosed

Senior Software Engineer

Bangalore / Bengaluru

8-13 Yrs

₹ 57.5-40 LPA

Explore more jobs
Senior Software Engineer
9 salaries
unlock blur

₹35 L/yr - ₹58.3 L/yr

Software Engineer III
6 salaries
unlock blur

₹30.5 L/yr - ₹50 L/yr

Software Development Engineer II
5 salaries
unlock blur

₹17.6 L/yr - ₹33 L/yr

Software Engineer
4 salaries
unlock blur

₹7.9 L/yr - ₹37.8 L/yr

Software Engineer2
4 salaries
unlock blur

₹16.5 L/yr - ₹28 L/yr

Explore more salaries
Compare Advisor360° with

Zerodha

4.2
Compare

Upstox

3.7
Compare

Groww

3.8
Compare

Paytm Money

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