Upload Button Icon Add office photos

Filter interviews by

Datawise Consultants Interview Questions and Answers

Updated 31 Jan 2020

Datawise Consultants Interview Experiences

1 interview found

I applied via Recruitment Consultant

Interview Questionnaire 

1 Question

  • Q1. About qualifications about technology

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majorly a stress test .it lasted for about 1 hour 20 minutes. The interviwer wanted to test both my knowledge,and communication skills. most of questions asked to me me ware related Cloud computing and about its features.

Information Technology Support Engineer Interview Questions asked at other Companies

Q1. What are the steps to troubleshoot BSOD? How to install the os and what are check list before installing os in pc? What are network types and describe them? What is cloud? What is the use of s3 bucket?
View answer (2)

Jobs at Datawise Consultants

View all

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Initial screening from teamware and next level of round of techies discussion from client team.
Round 2 - Technical 

(1 Question)

  • Q1. SQL basic and moderate level questions

I applied via Company Website and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

Farmer's is the best

Round 2 - Technical 

(3 Questions)

  • Q1. What are you doing farmer's
  • Q2. What time do you think we should do it
  • Q3. What are the dates are fine
  • Ans. 

    The question is unclear and needs clarification.

    • Can you please provide more context or rephrase the question?

    • Are you asking about specific dates for a project or task?

    • Do you need me to input dates into a system or database?

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - So much for your help with this matter and please don't
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 - One-on-one 

(3 Questions)

  • Q1. LMS LOS CMS life cycle
  • Q2. What is loan life cycle
  • Ans. 

    Loan life cycle refers to the stages involved in the processing and management of a loan.

    • The loan life cycle includes origination, underwriting, funding, servicing, and collection.

    • Origination involves the application and approval process.

    • Underwriting involves assessing the borrower's creditworthiness and determining the terms of the loan.

    • Funding involves disbursing the loan amount to the borrower.

    • Servicing involves man...

  • Answered by AI
  • Q3. What is software life cycle
  • Ans. 

    Software life cycle is the process of developing software from conception to retirement.

    • It includes phases like planning, design, development, testing, deployment, and maintenance.

    • Each phase has its own set of activities and deliverables.

    • The life cycle model can be iterative, sequential, or a combination of both.

    • Examples of life cycle models include Waterfall, Agile, and DevOps.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - OK to join as a fresher but de[ends on client project
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 - Technical 

(2 Questions)

  • Q1. Autocad 2D and 3D and quelty control
  • Q2. Auto cad 2D&3D and Quietly Engineer

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice jobyseekers and thanks for letting me know so much

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Give your brief introduction
  • Ans. Mainly whatever I'm telling about my self I'm very confident for that so you have to be firstly confident then tell them about your self your qualifications your skill and everything
  • Answered Anonymously
  • Q2. Did you work anywhere before that
  • Ans. If you work anywhere and you have experience either it is only of 6 months but explain everything about your last firm and your position and how you worked how many tasks you have done that's all matter how you explained
  • Answered Anonymously
  • Q3. What is your skills?
  • Ans. So tell them your best skills and make them realize that you're fit for the position they are giving to you don't give a chance to them to ask anything again say alot about your skills
  • Answered Anonymously
  • Q4. Do you have any location preference? Or you may relocate
  • Ans. Never say yes!! for location preference
  • Answered Anonymously
  • Q5. In your last firm what was your CTC ?
  • Ans. Tell them how much CTC you were getting in your last firm!!
  • Answered Anonymously
  • Q6. What you will do if the company will pressures you sometimes for multiple task?
  • Ans. 

    I will prioritize tasks and communicate with my manager to ensure realistic expectations.

    • Assess the urgency and importance of each task

    • Create a to-do list and prioritize tasks accordingly

    • Communicate with my manager to ensure realistic expectations

    • Delegate tasks if possible

    • Avoid multitasking and focus on one task at a time

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and don't show your weaknesses and speak alot in front of them don't let them ask you too much questions make them realize that you're so confident and you're best for the position

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

The round was online. It had 3 coding questions to be solved.  Was asked about why are the javascript and jquery used? What is the difference between angular 8 and angular?

  • Q1. 

    Permutation In String Problem Statement

    Given two strings, str1 and str2, determine whether str2 contains any permutation of str1 as a substring.

    Input:

    str1 = “ab”
    str2 = “aoba”

    Output:

    True

    Example:

    ...
  • Ans. Permutation In String
    • Check for Base Case i.e if Length of str1 > Length of str2, return false.As substring length is always greater than or equal to permutation never small.
    • Generate all the permutations of the short string and then check for each permutation if this string is present as a substring of the second string or not.
    • Initialize a global boolean value named flag.
    • To generate all the permutations of the small ...
  • Answered Anonymously
  • Q2. 

    Minimum Time Problem Statement

    In a city with ‘N’ junctions and ‘M’ bi-directional roads, each junction is connected to other junctions with specified travel times. No road connects a junction to itself, ...

  • Ans. Depth First Search

    This approach will use DFS(Depth First Search) to make a recursive function in which we pass the currCost, which is the current cost. If the light is not green when we reach that junction, we have to add the waiting time in currCost. After that, we will call the recursive function on all the adjacent unvisited junctions by incrementing the currCost with the weight of the edge. We will maintain a vari...

  • Answered Anonymously
  • Q3. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. Bactracking

    Approach: We can start the traversal of the paths from the rat’s starting position, i.e. (0,0) keeping track of the visited cells during the traversal. We will recursively go through all the paths possible until the last index of the grid (destination) is reached, and add the path information using which the rat successfully reached the end.

     

    Algorithm is as follows:

     

    1. Take the starting position of th...
  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaNo criteriaPeopleStrong interview preparation:Topics to prepare for the interview - Arrays, string, oops, dbms, dyanamic programming, trees, graphsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : practice coding questions
Tip 2 : Search and study previous interview questions

Application resume tips for other job seekers

Tip 1 : Mention the things according to role
Tip 2 : just write a clear one page resume

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are the roles and responsibilities of HR
  • Q2. An hr department is asked with maximizing employee productivity and protecting the company from any issues that may rise within the workforce. Hr responsiilities include compensation and benifits, recruitm...

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview lasted for 20 minutes. Don't be panic try to answer the questions confidently.

I applied via Naukri.com and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Creative Hands HR Consultancy Civil Engineer interview:
  • Civil Engineering
Interview preparation tips for other job seekers - Market yourself. ...
Apply even if you're not fully qualified. ...
Job search like it's your job. ...
Use informational interviews to network. ...
Set yourself apart with letters of recommendation. ...
Know yourself and what you want. ...
Pump yourself up and stay positive.

I applied via Recruitment Consultant and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Related my job Experience.
  • Q2. What Safety Required During the LIFTING Activities ?
  • Ans. 

    Safety measures are crucial during lifting activities to prevent accidents and injuries.

    • Ensure proper rigging equipment is used

    • Inspect equipment before use

    • Secure the load properly

    • Use appropriate lifting techniques

    • Ensure adequate communication between team members

    • Clear the area of any obstacles or hazards

    • Follow all safety regulations and guidelines

    • Provide proper training to all personnel involved in lifting activities

  • Answered by AI
  • Q3. What is Suspended Load ?
  • Ans. 

    A suspended load is a load that is hanging or supported from above.

    • A suspended load is a load that is not resting on a surface but is instead hanging or supported from above.

    • Examples of suspended loads include chandeliers, cranes, and heavy machinery suspended from a crane.

    • Suspended loads can be dangerous if not properly secured or if the weight exceeds the capacity of the support system.

    • Rigging supervisors must ensure...

  • Answered by AI
  • Q4. How many Tone types of Mobile Crane ?
  • Ans. 

    There are several types of mobile cranes, including hydraulic cranes, crawler cranes, and rough terrain cranes.

    • Hydraulic cranes are the most common type of mobile crane and use hydraulic systems to lift and move heavy loads.

    • Crawler cranes have tracks instead of wheels, allowing them to move on rough terrain and lift heavier loads.

    • Rough terrain cranes are designed for off-road use and have large tires and a compact desi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Give Correct answers as per Client Questions.

Datawise Consultants Interview FAQs

How to prepare for Datawise Consultants 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 Datawise Consultants. The most common topics and skills that interviewers at Datawise Consultants expect are Analytics, Artificial Intelligence, Channel Management, Cocoa Touch and Data Management.

Tell us how to improve this page.

Interview Questions from Similar Companies

Randstad Interview Questions
3.8
 • 259 Interviews
ABC Consultants Interview Questions
3.9
 • 185 Interviews
LanceSoft Interview Questions
3.1
 • 57 Interviews
PeopleStrong Interview Questions
3.4
 • 50 Interviews
Experis IT Interview Questions
3.0
 • 48 Interviews
CIEL HR Interview Questions
4.0
 • 47 Interviews
eTeam Interview Questions
3.2
 • 40 Interviews
View all

Datawise Consultants Reviews and Ratings

based on 9 reviews

3.9/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

2.5

Salary

3.8

Job security

3.7

Company culture

1.8

Promotions

3.1

Work satisfaction

Explore 9 Reviews and Ratings
System Administrator
4 salaries
unlock blur

₹4 L/yr - ₹4.6 L/yr

Recruitment Lead
4 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Information Technology Support Engineer
4 salaries
unlock blur

₹1.2 L/yr - ₹3.3 L/yr

Assistant Manager
3 salaries
unlock blur

₹4.7 L/yr - ₹6 L/yr

Research Analyst
3 salaries
unlock blur

₹3 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Datawise Consultants with

Randstad

3.8
Compare

Innovsource Services

4.0
Compare

IMPACT Infotech

3.4
Compare

eTeam

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