Upload Button Icon Add office photos
Engaged Employer

i

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

Proveway Verified Tick

Compare button icon Compare button icon Compare
5.0

based on 6 Reviews

Filter interviews by

Proveway Full Stack Developer Interview Questions and Answers for Experienced

Updated 26 Feb 2024

Proveway Full Stack Developer Interview Experiences for Experienced

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic JS question
Round 2 - Technical 

(1 Question)

  • Q1. Node js and js question

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between == and .equals in java
  • Ans. 

    In Java, == is used for comparing reference equality, while .equals() is used for comparing object equality.

    • == compares memory addresses of two objects

    • .equals() compares the actual contents of the objects

    • For primitive data types, == compares values, while for objects, it compares references

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will be false, but str1.equals(str2) wi

  • Answered by AI
  • Q2. What is difference between hash map and hash table
  • Ans. 

    HashMap is non-synchronized and not thread-safe, while HashTable is synchronized and thread-safe.

    • HashMap allows null values and one null key, while HashTable does not allow null keys or values.

    • HashMap is faster than HashTable as it is non-synchronized, but HashTable is safer for use in multi-threaded environments.

    • HashMap is part of the Java Collections Framework, while HashTable is a legacy class.

  • Answered by AI
  • Q3. HashMap is not synchronized so its allow the null values and one null key on other hand hash table not null values
  • Ans. 

    HashMap allows null values and one null key, while HashTable does not allow null values.

    • HashMap allows null values and one null key, while HashTable does not allow null values.

    • HashMap is not synchronized, while HashTable is synchronized.

    • HashMap is faster than HashTable.

    • Example: HashMap map = new HashMap<>(); map.put(null, "value");

    • Example: HashTable table = new HashTable<>(); table.put("

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Hard

  • Q1. Find rank

    You are given a matrix ‘ARR’ having dimensions ‘N*M’. Your task to find the rank of the matrix ‘ARR’.

    The rank of a matrix is defined as:

    (a) The maximum number of linearly independent column ...
  • Ans. Row Echelon Form

    Approach:

    • The idea is based on converting the given input matrix ARR into row echelon form.
    • Since we know that the rank of the matrix can not be greater than min(N, M). So we will check if N > M then we will transpose the input matrix ARR since we are using row echelon form so the matrix has to be transformed in such a way that in each row all the elements to the left of the diagonal element must be ze...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

This is an elimination round. The interviewer will ask some technical questions and ask to solve some coding questions.
The interview was on Microsoft teams and coding was on codility.

  • Q1. Check Permutation

    For a given two strings, 'str1' and 'str2', check whether they are a permutation of each other or not.

    Permutations of each other
    Two strings are said to be a permutatio...
  • Ans. Frequency Array Approach
    • The first and the foremost condition for two strings to be the permutations of each other is that the frequency of each element in both of them should be the same.
    • It can be proven by a very simple argument that we are only rearranging the letters, and not adding or deleting any character.
    • So we allocate an array of size 256 (that is the number of distinct ASCIIacharactersterst to store the freque...
  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

Interviewers asked some questions regarding System design and then asked me to perform the task

  • Q1. System Design Question

    Design a vending machine.

Round 4 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

There were 2 interviewers. This round was basically Distributed systems.

  • Q1. Ninja And Alternating Largest

    Ninja is given a few numbers, and he is being asked to rearrange the numbers so that every second element is greater than its left and right element.

    Input Format:
    The first...
  • Ans. Brute forceSpace Complexity: O(1)Explanation: Time Complexity: O(n)Explanation:
  • Answered by CodingNinjas
Round 5 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. SQL Questions

    Write an SQL query to print the first three characters of  FIRST_NAME from Worker table.

    Write an SQL query to print the FIRST_NAME from Worker table after replacing ‘a’ with ‘A’.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from HMR Institute of Technology and Management. Eligibility criteriaNo criteriaMicrosoft interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, System Design, Distributed SystemsTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Might ask you to write coding in System Design (Eg : Vending Machine)
Tip 2 : Use star methodology to answer.
Tip 3 : Interact as much as you can with the interviewer and discuss your approach to solve questions.
Tip 4: Start your preparation at least 6 months before application
Tip 5 : Practice Leetcode

Application resume tips for other job seekers

Tip 1 : Resume should match with job description
Tip 2 : Add a summary section and avoid sections like hobbies, strengths 
Tip 3 : Clearly mention your skills

Final outcome of the interviewRejected

Skills evaluated in this interview

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 110 Minutes
Round difficulty - Medium

Aptitude and coding and Ouput MCQ

  • Q1. Ways To Make Coin Change

    You are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a cha...

  • Ans. Recursion

     

    1. The idea is to use recursion.
    2. For a particular coin, we have two options either include it or exclude it.
    3. If we include that coin, then calculate the remaining number that we have to generate so recur for that remaining number.
    4. If we exclude that coin, then recur for the same amount that we have to make.
    5. Our final answer would be the total number of ways either by including or excluding.
    6. There will be two edg...
  • Answered by CodingNinjas
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

There were 2 interviewers. I was asked to make a presentation earlier which I had to present in the interview.

Questions on SQL, Javascript, Linux

  • Q1. Technical Questions

    What is indexing?

    What are different types of datatype in js?

    How do you modify the linux file permission?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from HMR Institute of Technology and Management. Eligibility criteriaNo CriteriaAmdocs interview preparation:Topics to prepare for the interview - Projects should be good and engaging, Data base, SQL, LinuxTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Keep the conversation interesting
Tip 2 : Prepare thoroughly
Tip 3 : Look for interviewers on LinkedIn

Application resume tips for other job seekers

Tip 1 : Projects should be engaging
Tip 2 : Experiences should be on top

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Tell about ursellf and experiences
  • Q2. Coding program and complexity
  • Ans. 

    Coding programs can vary in complexity depending on the requirements and functionalities needed.

    • Complexity can be measured using Big O notation, which describes the worst-case scenario for time and space complexity.

    • Factors affecting complexity include data structures used, algorithms implemented, and the size of input data.

    • Examples of complex programs include machine learning algorithms, large-scale distributed systems

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Dynamic pragramming backtracking coding
  • Q2. Experinces and how you perform
  • Ans. 

    I have over 5 years of experience in software development, with a strong focus on web applications and database management.

    • Developed web applications using HTML, CSS, JavaScript, and various frameworks like Angular and React

    • Proficient in database management with SQL and NoSQL databases such as MySQL and MongoDB

    • Experience in version control systems like Git for collaborative development

    • Strong problem-solving skills and ...

  • Answered by AI

Skills evaluated in this interview

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

It went well. Easy questions were asked

Round 2 - Coding Test 

We have to first explain how we are planning to solve the problem and can start coding

Round 3 - HR 

(2 Questions)

  • Q1. Multi threading
  • Q2. Algorithms in data structures
  • Ans. 

    Algorithms in data structures are essential for efficient data manipulation and retrieval.

    • Algorithms in data structures help in organizing and managing data effectively.

    • Examples include sorting algorithms like quicksort and searching algorithms like binary search.

    • Understanding algorithms in data structures is crucial for optimizing performance in software development.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2023. There were 4 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 - Coding Test 

So basically the questions were from strings, arrays, bitwise operators and some mathematical logic based questions. There were 10 questions and they will provide you a laptop and you have to complete all of them in 3 hours (java, c++)
Just be prepared on the above mentioned topics the questions were of easy level if your concept is clear you can crack it easily then there will one more round there they will ask theoretical questions once these both technical rounds are clear you're all set to go for HR round. So this is for 1-2yrs exp guys for freshers they also have to go through aptitude round and question pattern is similar

Round 3 - Technical 

(3 Questions)

  • Q1. Basic oops concepts some tricky ques
  • Q2. Questions from collection framework
  • Q3. Multithreading basic questions
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Manipal University and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basics of Control systems and logical questions

Round 2 - HR 

(1 Question)

  • Q1. What can you bring to table. What you expect from company Etc

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Software Developer Interview Questions & Answers

SAP user image Vijayendra Upadhyay

posted on 1 Mar 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why we hire you?
  • Q2. Having experience in same domain.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always keep your self claim.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Embedded systems questions
Round 2 - HR 

(1 Question)

  • Q1. Salary expectations

Proveway Interview FAQs

How many rounds are there in Proveway Full Stack Developer interview for experienced candidates?
Proveway interview process for experienced candidates usually has 2 rounds. The most common rounds in the Proveway interview process for experienced candidates are Technical.
What are the top questions asked in Proveway Full Stack Developer interview for experienced candidates?

Some of the top questions asked at the Proveway Full Stack Developer interview for experienced candidates -

  1. node js and js quest...read more
  2. basic JS quest...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Proveway interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
UI/UX Designer
3 salaries
unlock blur

₹4.5 L/yr - ₹6 L/yr

Product Manager
3 salaries
unlock blur

₹6 L/yr - ₹8 L/yr

Front end Developer
3 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Full Stack Software Developer
3 salaries
unlock blur

₹4.7 L/yr - ₹12 L/yr

Explore more salaries
Compare Proveway with

Techway Solutions

5.0
Compare

Cybernetics Software

4.1
Compare

Innovision

3.1
Compare

SAP

4.2
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