Upload Button Icon Add office photos
Engaged Employer

i

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

WinWire Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 141 Reviews

Filter interviews by

WinWire Junior Software Engineer Interview Questions and Answers

Updated 21 Sep 2024

WinWire Junior Software Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Good but need to prepare arithmetic and reasoning

Round 2 - Group Discussion 

Good talk more be the person to talk first if u can't if you can't able to talk the first then at least try to when you are talking in middle try to be more meaningful and express you

Round 3 - Technical 

(2 Questions)

  • Q1. SQL queries what are you keep in your resume they will ask about that
  • Q2. Tere sath python questions like a palindrome print the numbers between the palindrome from this number to this number how many number of parallel student them all the palindroms
Round 4 - HR 

(2 Questions)

  • Q1. Do you like to work in the water are you expecting from the company
  • Ans. 

    I enjoy working in a collaborative environment and am looking for opportunities to learn and grow in my career.

    • I thrive in team settings and enjoy brainstorming ideas with colleagues

    • I am eager to expand my skill set and take on new challenges

    • I value companies that prioritize employee development and offer opportunities for advancement

  • Answered by AI
  • Q2. And also try to ask smoke questions to the HR they are that all the two hours do you have any questions about the company

Interview questions from similar companies

Interview experience
4
Good
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 - Coding Test 

Basic coding round. Asked basic JS logics.

Round 3 - One-on-one 

(1 Question)

  • Q1. After clearing first round I directly attended managerial round
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(1 Question)

  • Q1. Personal details
Round 2 - Coding Test 

Pattern, star , hollow pattern

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude asked for all company

Round 2 - Coding Test 

One question to find substring of string which has double chars

Round 3 - Technical 

(2 Questions)

  • Q1. Basic oops and sql
  • Q2. Write pandas for dataframe
  • Ans. 

    Pandas is a Python library used for data manipulation and analysis, including creating and working with dataframes.

    • Import the pandas library: import pandas as pd

    • Create a dataframe: df = pd.DataFrame(data)

    • Accessing data in a dataframe: df['column_name']

    • Filtering data in a dataframe: df[df['column_name'] > value]

    • Adding a new column: df['new_column'] = values

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Give angle betweeen hour hand and min hand art 12:20
  • Ans. 

    The angle between the hour hand and minute hand at 12:20 is 10 degrees.

    • Calculate the angle made by the hour hand from 12 o'clock position: (20/60)*30 = 10 degrees

    • Calculate the angle made by the minute hand from 12 o'clock position: (20/60)*360 = 120 degrees

    • Find the difference between the two angles: 120 - 10 = 110 degrees

  • Answered by AI
  • Q2. Basic operating system questions

Interview Preparation Tips

Interview preparation tips for other job seekers - they provide good feeling of friend around you during interview

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain oops concept
  • Ans. 

    OOPs (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPs focuses on creating reusable code through classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability for objects to be treated as instances of...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is session in php
  • Ans. 

    Session in PHP is a way to store information (variables) to be used across multiple pages during a user's visit to a website.

    • Sessions are used to store user-specific information, such as username, shopping cart items, etc.

    • Sessions are started with session_start() function and can be accessed using the $_SESSION superglobal array.

    • Sessions are stored on the server and identified by a unique session ID, which is usually s

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare for the core concept if you are going as fresher

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions based on coding

Round 2 - Coding Test 

Based on coding questions

Round 3 - HR 

(2 Questions)

  • Q1. Introduction of yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding. I have experience with Java, Python, and web development.

    • Recent graduate in Computer Science

    • Proficient in Java, Python, and web development

    • Passionate about coding

  • Answered by AI
  • Q2. About dbms , sql queries..

Interview Preparation Tips

Interview preparation tips for other job seekers - Its good company
Round 1 - Technical 

(1 Question)

  • Q1. Object-oriented questions
Round 2 - Technical 

(1 Question)

  • Q1. Project based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOPs Concept, MVC Framework questions.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Arya College of Engineeringg, Jaipur and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test contain mix question from computer fundamentals and aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. Find the leaf node of the binary tree
  • Ans. 

    A leaf node in a binary tree is a node that does not have any children.

    • Traverse the binary tree and check if a node has no left or right child, then it is a leaf node.

    • Example: In the binary tree 1 -> 2, 3 -> 4, 5, 6 -> 7, 8, the leaf nodes are 4, 5, 7, 8.

  • Answered by AI
  • Q2. Check if the given linked list contain loop
  • Ans. 

    Check if a linked list contains a loop by using Floyd's cycle detection algorithm.

    • Use two pointers, one moving at twice the speed of the other

    • If there is a loop, the two pointers will eventually meet

    • Example: 1->2->3->4->5->2 (loop at 2)

  • Answered by AI
  • Q3. Find the fist non repeating element in string
  • Ans. 

    Find the first non-repeating element in a string

    • Create a frequency map of characters in the string

    • Iterate through the string and check the frequency of each character

    • Return the first character with frequency 1

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - study oops, dsa, core computer subjects and good knowledge about project

Skills evaluated in this interview

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

(1 Question)

  • Q1. DSA and oops questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Basic coding round. Asked basic JS logics.

Round 3 - One-on-one 

(1 Question)

  • Q1. After clearing first round I directly attended managerial round

WinWire Interview FAQs

How many rounds are there in WinWire Junior Software Engineer interview?
WinWire interview process usually has 4 rounds. The most common rounds in the WinWire interview process are Group Discussion, Technical and HR.
What are the top questions asked in WinWire Junior Software Engineer interview?

Some of the top questions asked at the WinWire Junior Software Engineer interview -

  1. Tere sath python questions like a palindrome print the numbers between the pali...read more
  2. SQL queries what are you keep in your resume they will ask about t...read more

Tell us how to improve this page.

WinWire Junior Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Module Lead
108 salaries
unlock blur

₹12 L/yr - ₹32.7 L/yr

Technical Lead
93 salaries
unlock blur

₹15.1 L/yr - ₹34 L/yr

Software Design Engineer
91 salaries
unlock blur

₹3.2 L/yr - ₹12 L/yr

Senior Software Design Engineer
77 salaries
unlock blur

₹7.7 L/yr - ₹21.5 L/yr

Senior QA Engineer
66 salaries
unlock blur

₹6 L/yr - ₹18 L/yr

Explore more salaries
Compare WinWire with

Persistent Systems

3.5
Compare

LTIMindtree

3.8
Compare

Mphasis

3.4
Compare

TCS

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