Upload Button Icon Add office photos

Filter interviews by

Jiffy Software Interview Questions and Answers

Updated 21 Dec 2024

Jiffy Software Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

OA round contained aptitude as well as technical question and there are 60 question which had to solve in 1 hr .and topic included like percentage ,ratio and proportion ,ratio proportion ,Lcm hcf
and for technical .net ,php ,java,c++,js,html,css and many more topics were.

Round 2 - One-on-one 

(5 Questions)

  • Q1. Introduced Yourself
  • Q2. Asked me about types of for loop in java
  • Ans. 

    Java has three types of for loops: traditional, enhanced (for-each), and labeled for loops, each serving different purposes.

    • Traditional for loop: Syntax - for(initialization; condition; increment/decrement) { // code } Example: for(int i = 0; i < 5; i++) { System.out.println(i); }

    • Enhanced for loop (for-each): Syntax - for(dataType item : collection) { // code } Example: for(String name : names) { System.out.println(...

  • Answered by AI
  • Q3. Asked difference between while and do while loop
  • Ans. 

    While loops check the condition before executing, while do-while loops execute at least once before checking the condition.

    • While loop: Executes code block as long as the condition is true. Example: while (i < 5) { /* code */ }

    • Do-while loop: Executes code block once, then checks the condition. Example: do { /* code */ } while (i < 5);

    • Key difference: While loop may not execute if the condition is false initially; d...

  • Answered by AI
  • Q4. Given a question which was based on string that print your name's character by seperated comma .
  • Ans. 

    The task is to print each character of a name separated by commas, enhancing readability and formatting.

    • Use a loop to iterate through each character of the string.

    • Join the characters using a comma as a separator.

    • Example: For the name 'John', the output should be 'J,o,h,n'.

    • In Python, this can be done using: ','.join(name).

  • Answered by AI
  • Q5. Asked about file handling and many more question were asked
  • Ans. 

    File handling involves reading, writing, and managing files in a programming environment.

    • File operations include opening, reading, writing, and closing files.

    • In Python, use 'open()' to access files: 'file = open('example.txt', 'r')'.

    • Always close files after operations using 'file.close()' to free resources.

    • Use 'with' statement for better file handling: 'with open('example.txt', 'r') as file:'.

    • Handle exceptions using tr...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Jiffy Software Software Development Engineer Intern interview:
  • Striver sheet
  • harkikrat for dev
Interview preparation tips for other job seekers - As i experienced that every job seeker should prepare well because most of company not pay more but asked more in a varieties of technology .

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Jiffy Software?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Feb 2021.

Round 1 - One-on-one 

(1 Question)

  • Q1. Technical knowledge & Design concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - be strong on technical.Functional knowledge essential

I applied via Walk-in and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Intro n randomly any questions just to check the communication n confident of a candidate

Interview Preparation Tips

Interview preparation tips for other job seekers - Considered that a moron is sitting in front of u n asking u a silly questions

I applied via Job Portal

Interview Questionnaire 

1 Question

  • Q1. Question were related with java collection, stream, string, string pool, spring,jpa

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent

I applied via Shine and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - HR 

(4 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Oops conceps, most used design patterns,Solod principles and basic array programs

I applied via Naukri.com and was interviewed before May 2017. There were 2 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Based on resume and simple technical questions

Interview Preparation Tips

Check for client and kind of project you get.. get clear idea of nature of work. Else you might be disappointed later
Be interview-ready. Browse the most asked HR questions.
illustration image

I applied via Walk-in and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Most question related to C language.
  • Q2. About working experience and when face difficulties during work.
  • Q3. About environment ,role and responsibility.

Interview Preparation Tips

Interview preparation tips for other job seekers - Asking questions by panel it's very easy compare to other organization. If you have confidence I am sure you will crack the technical interview.
Are these interview questions helpful?

I applied via Walk-in and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. About my personal experience in previous company and about myself.
  • Q2. Regarding some technical questions based on specialization.

Interview Preparation Tips

Interview preparation tips for other job seekers - Know yourself well and try to elaborate everything.
Be thorough about your previous experience.
If you are a fresher then stick to your last project and ofcourse your specializations.

I applied via Walk-in and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Data structures and algorithms

Round 2 - Coding Test 

Python etl,pandas, pyspark questions

Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation , work culture

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with the basics and practice common programming problems

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

Interview Questionnaire 

2 Questions

  • Q1. Multithreading in Java
  • Ans. 

    Multithreading in Java allows for concurrent execution of multiple threads within a single program.

    • Multithreading can improve performance by allowing multiple tasks to be executed simultaneously.

    • Java provides built-in support for multithreading through the Thread class and Runnable interface.

    • Synchronization is important to prevent race conditions and ensure thread safety.

    • Examples of multithreading in Java include GUI a...

  • Answered by AI
  • Q2. LinkedList custom implementation, springBoot, Microservices, kafka, core Java, DS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep practicing DS, this will boost your confidence.

Skills evaluated in this interview

Jiffy Software Interview FAQs

How many rounds are there in Jiffy Software interview?
Jiffy Software interview process usually has 2 rounds. The most common rounds in the Jiffy Software interview process are Aptitude Test and One-on-one Round.
What are the top questions asked in Jiffy Software interview?

Some of the top questions asked at the Jiffy Software interview -

  1. given a question which was based on string that print your name's character by...read more
  2. asked about file handling and many more question were as...read more
  3. asked difference between while and do while l...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Trending Companies on AmbitionBox

Tata Motors Interview Questions
4.1
 • 1.1k Interviews
Blinkit Interview Questions
3.7
 • 252 Interviews
Uplers Interview Questions
3.9
 • 43 Interviews
Maruti Suzuki Interview Questions
4.1
 • 673 Interviews
NatWest Group Interview Questions
4.0
 • 220 Interviews
Samsung Interview Questions
3.9
 • 584 Interviews
Salesforce Interview Questions
4.0
 • 236 Interviews
HDFC Life Interview Questions
3.9
 • 703 Interviews
TCS Interview Questions
3.5
 • 11.3k Interviews
View all

Jiffy Software Reviews and Ratings

based on 5 reviews

5.0/5

Rating in categories

4.4

Skill development

5.0

Work-life balance

4.9

Salary

4.6

Job security

4.9

Company culture

4.8

Promotions

4.9

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
5 salaries
unlock blur

₹1.8 L/yr - ₹5 L/yr

Software Developer
3 salaries
unlock blur

₹3.2 L/yr - ₹4 L/yr

Associate Support Engineer
3 salaries
unlock blur

₹3.2 L/yr - ₹3.6 L/yr

Explore more salaries
write
Share an Interview