Upload Button Icon Add office photos
Engaged Employer

i

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

Dhwani Rural Information Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Dhwani Rural Information Systems Senior Accountant Interview Questions and Answers

Updated 17 Aug 2021

Dhwani Rural Information Systems Senior Accountant Interview Experiences

1 interview found

I appeared for an interview before Aug 2020.

Interview Questionnaire 

5 Questions

  • Q1. Tell me about yourself
  • Q2. What is current income tax slab
  • Ans. 

    The current income tax slab in India varies based on the income level of the individual.

    • The income tax slab for individuals below 60 years of age is as follows: up to Rs. 2.5 lakhs - no tax, Rs. 2.5 lakhs to Rs. 5 lakhs - 5%, Rs. 5 lakhs to Rs. 10 lakhs - 20%, above Rs. 10 lakhs - 30%

    • For individuals between 60 and 80 years of age, the tax exemption limit is Rs. 3 lakhs, and for those above 80 years of age, it is Rs. 5 ...

  • Answered by AI
  • Q3. Gst input tax
  • Q4. Depreciation
  • Q5. Stock up by 10000 then effect on income statement
  • Ans. 

    Stock up by 10000 will increase the income statement.

    • Increase in revenue by 10000

    • Increase in cost of goods sold by 10000 if the stock was purchased

    • Increase in net income by 10000

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm, this is not going to be life and death situation there are lots of opportunity...be confident about what you know...be patient after one round.....make your tell me about yourself answer...

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 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 

Mcqs on javascript,. 1 coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Campus recruitment
1 online coding
2 technical rounds DSA
1 tech managerial
1 hr

Os, DBMS, DSA, stacks, trees,
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Based on my CV, they assigned me a task related to data migration.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project reviews
  • Q2. Attendance regarding

Intern Interview Questions & Answers

Zidio Development user image Rajveer Choubisa

posted on 19 Mar 2025

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. React hooks related How to use them
  • Q2. About web socket real time messaging
  • Q3. About react router dom

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself well for interview Do mot panic
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There was an OA on hackerearth of an hour. In that there were 20 MCQs and two DSA questions easy to medium on Heap, Hashmap and Subarray

Round 2 - Technical 

(3 Questions)

  • Q1. Asked about previous worked project in last company
  • Q2. Asked one medium DSA question (DNA sequencing) and asked to design some schema
  • Q3. Asked one puzzle If there are 1000 bottles and one is poisonous, a rat will diw after one hour of drinking and you have only one hour to find out which bottle is poisonous, How many minimum rats you need ?

Software Engineer Interview Questions & Answers

FloBiz user image Vishal Kathpalia

posted on 22 Jan 2024

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

I applied via Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Leetcode Medium Question -- Container most water
Round 2 - Technical 

(1 Question)

  • Q1. LLD, Design patterns, Operating system
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 Sep 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and experienced professional with a strong background in project management and team leadership.

    • Over 8 years of experience in project management

    • Successfully led cross-functional teams to deliver projects on time and within budget

    • Strong communication and interpersonal skills

    • Proven track record of driving results and exceeding goals

  • Answered by AI
  • Q2. Why should we hire you
  • Ans. 

    I have a proven track record of delivering exceptional results and possess the skills and experience necessary to excel in this role.

    • Proven track record of exceeding performance targets

    • Strong communication and leadership skills

    • Extensive experience in the industry

    • Ability to work effectively in a team environment

    • Passion for continuous learning and professional development

  • Answered by AI
  • Q3. Why should we buy your product
  • Ans. 

    Our product offers innovative solutions to streamline processes, increase efficiency, and drive growth.

    • Our product has been proven to save companies time and money by automating repetitive tasks.

    • We provide excellent customer support and training to ensure successful implementation.

    • Our product is constantly updated with new features and improvements based on customer feedback.

    • Competitive pricing compared to similar prod...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be real and active listener to the question.

I appeared for an interview in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Timing was 10:00 AM. Platform was good.

  • Q1. 

    Subarray With Given Sum Problem Statement

    Given an array ARR of N integers and an integer S, determine if there exists a contiguous subarray within the array with a sum equal to S. If such a subarray exis...

  • Ans. 

    Given an array of integers, find a subarray with a given sum S.

    • Iterate through the array while keeping track of the current sum and start index.

    • Use a hashmap to store the sum and its corresponding index.

    • If the current sum - S is found in the hashmap, a subarray with sum S exists.

    • Return the start index and current index as the end index.

  • Answered by AI
  • Q2. 

    Remove Consecutive Duplicates Problem Statement

    Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.

    Input:

    String S

    Output:

    Output string

    Constr...

  • Ans. 

    Recursively remove consecutive duplicate characters from a string.

    • Use recursion to check if the current character is the same as the next character, if so skip the next character

    • Base case: if string length is 1, return the string

    • Example: Input: 'aabbc' Output: 'abc'

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - 1 in MumbaiEligibility criteriaAbove 8 CGPAGoComet interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Data structure questions.
Tip 2 : Do some projects.
Tip 3 : Have knowledge of DBMS.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

There are three sections: -
1. Quants
2. English
3. Reasoning
All sections are accessible medium but you have maintained the speed and accuracy.
after that coding snippet are in java/python.

Round 2 - Coding Test 

Code snippets are there in coding sections.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare all basic concepts and try to do good as well as u know.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What motivates you to join Zidio Development as opposed to other companies?
  • Ans. 

    Zidio Development's innovative projects and collaborative culture inspire my passion for technology and personal growth.

    • Zidio's commitment to cutting-edge technology aligns with my desire to work on innovative projects, like their recent AI initiative.

    • The collaborative culture at Zidio fosters teamwork, which I value as it enhances creativity and problem-solving.

    • Zidio's focus on professional development through mentors...

  • Answered by AI
  • Q2. How will your experience with Zidio development contribute to your career growth?
  • Ans. 

    My experience with Zidio development will enhance my technical skills, teamwork, and problem-solving abilities, crucial for my career growth.

    • Developed proficiency in programming languages like Java and Python, which are essential for software development roles.

    • Collaborated with a diverse team, improving my communication skills and ability to work in a team-oriented environment.

    • Gained hands-on experience with agile meth...

  • Answered by AI

Dhwani Rural Information Systems Interview FAQs

What are the top questions asked in Dhwani Rural Information Systems Senior Accountant interview?

Some of the top questions asked at the Dhwani Rural Information Systems Senior Accountant interview -

  1. What is current income tax s...read more
  2. Stock up by 10000 then effect on income statem...read more
  3. Gst input ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 29 Interviews
FloBiz Interview Questions
3.5
 • 23 Interviews
GoComet Interview Questions
4.5
 • 23 Interviews
Bonami Software Interview Questions
4.1
 • 23 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
Ivanti Interview Questions
3.5
 • 15 Interviews
WinZO Interview Questions
4.0
 • 14 Interviews
View all
QA Engineer
23 salaries
unlock blur

₹2.4 L/yr - ₹7 L/yr

Associate Project Manager
21 salaries
unlock blur

₹3.6 L/yr - ₹10.5 L/yr

Front end Developer
20 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Project Manager
16 salaries
unlock blur

₹8 L/yr - ₹19.5 L/yr

Data Analyst
12 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Dhwani Rural Information Systems with

NexTurn

4.1
Compare

FloBiz

3.5
Compare

Kanerika Software

4.5
Compare

Smarter BIZ Technologies

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