Upload Button Icon Add office photos

Filter interviews by

Decisivedge Interview Questions and Answers

Updated 25 May 2024

Decisivedge Interview Experiences

Popular Designations

5 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Basic question about C#
  • Q2. Oops about inheritance
  • Q3. Apps .net life cycle

Software Support Engineer Interview Questions asked at other Companies

Q1. what is IP? what is difference in anti-virus & firewall? how to check two pc are in network?
View answer (1)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 25 May 2024

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Good questions, basics or selenium testing

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)

I applied via Company Website

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 - HR 

(1 Question)

  • Q1. They try to understand more about me and why I want to change job
Round 3 - Technical 

(1 Question)

  • Q1. Asked technical detail about project I have done in my past experience
Round 4 - Behavioral 

(1 Question)

  • Q1. Question to see if candidate is a good fit for the team

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about company before you go to interview. They will ask what you know about company and what they do.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 8 May 2024

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

I applied via Job Portal and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

They gave online test . Some question were aptitude and some were technical questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Had a call with some senior person. He asked me few questions like introduction and what are my expectations from job as a fresher

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)

Decisivedge interview questions for popular designations

 QA Engineer

 (2)

 Senior Business Analyst

 (1)

 Senior Software Engineer

 (1)

 Software Support Engineer

 (1)

I applied via Newspaper Ad and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Functional Questions
  • Q2. Functional questions asked
Round 2 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - If anyone wants to grow with organization and need job security then only join here.

Senior Business Analyst Interview Questions asked at other Companies

Q1. Difference between annuity and pension, types of annuity and pension, actions done on a policy, policy flow, RI insurance and it’s types and difference between them. Coinsurance, what are the charges when u cancel policy in 1st year vs 3rd ... read more
View answer (1)

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was fulfilling their criteria of 60% through out the academics.

Round: Test
Experience: Aptitude was easy. It contained basics of Quants & Logic . Verbal or English part was bit difficult and length. There was a sectional time and sectional cut off.

Round: Interview
Experience: There was only one interview. Both Technical and HR questions were asked in the same interview. Prepare puzzles from the book Puzzles to puzzle you by Shakuntala Devi. This book helped me a lot. Technical questions were very basic but nearly from every subject.

General Tips: BE CONFIDENT. Speak Confident in Interview even if you are not good with ur english.
Skills: English language, Communication Skills, Reasoning Abilities
College Name: Jawaharlal Nehru Engineering College Aurangabad

Assistant Trainee Interview Questions & Answers

TCS user image YATISH KUMAR KESHWANI

posted on 9 Feb 2015

Interview Questionnaire 

22 Questions

  • Q1. What are the subjects you have command in?
  • Q2. Tell me about your final year project?
  • Q3. Tell me about the industrial training you had?
  • Q4. How does an induction motor works?
  • Q5. Why motor is rated in KW whereas Transformer and generator in KVA?
  • Ans. 

    Motors are rated in KW because they consume power, while transformers and generators are rated in KVA because they produce power.

    • Motors convert electrical energy into mechanical energy, so they consume power and are rated in KW.

    • Transformers and generators produce electrical energy, so they are rated in KVA based on their apparent power.

    • KVA takes into account both the real power (KW) and the reactive power (KVAR) produc...

  • Answered by AI
  • Q6. What is the type of motor used in ceiling fans?
  • Ans. 

    The type of motor used in ceiling fans is an induction motor.

    • Ceiling fans typically use single-phase induction motors.

    • These motors are designed to provide a constant speed and are efficient in converting electrical energy into mechanical energy.

    • The motor consists of a stator and a rotor, with the stator being the stationary part and the rotor being the rotating part.

    • The stator contains windings that create a rotating m...

  • Answered by AI
  • Q7. Hoe does a thermal power plant works?
  • Ans. 

    A thermal power plant generates electricity by converting heat energy into mechanical energy.

    • Thermal power plants use fossil fuels or nuclear energy to heat water and produce steam.

    • The steam drives a turbine, which is connected to a generator that produces electricity.

    • The heat source can be coal, natural gas, oil, or nuclear reactions.

    • The steam is condensed back into water and recycled in a closed-loop system.

    • Thermal p...

  • Answered by AI
  • Q8. Write a program to make a GP
  • Ans. 

    A program to generate a geometric progression (GP).

    • Take the first term, common ratio and number of terms as input.

    • Use a loop to calculate each term of the GP.

    • Print the generated GP as output.

  • Answered by AI
  • Q9. Write a program to print factorial using recursion
  • Ans. 

    A program to print factorial using recursion

    • Define a function to calculate factorial recursively

    • Base case: if the number is 0 or 1, return 1

    • Recursive case: multiply the number with factorial of (number - 1)

    • Print the factorial of a given number

  • Answered by AI
  • Q10. Write the logic to reverse a string without using string fnctions
  • Ans. 

    Logic to reverse a string without using string functions

    • Iterate through the string from the last character to the first

    • Create a new string and append each character to it in reverse order

  • Answered by AI
  • Q11. Tell me about yourself?
  • Q12. What are your hobbies?
  • Q13. Apart from your technical pat and studies what have you done in college?
  • Q14. What do you prefer, ethics or values?
  • Q15. Suppose you are working in office and somebody came and slapped you, what will you do?
  • Q16. Tell me about yourself for 5 minutes
  • Q17. What are your views about Mr. Narendra Modi as PM of India
  • Q18. Any extra curricular activities you have participated in school or college
  • Q19. What are your strengths?
  • Q20. What are your weaknesses?
  • Q21. Being an Electrical engineer why do you want to join an IT company
  • Q22. What do you know about TCS?

Interview Preparation Tips

Round: Test
Experience: In email writing one question was given describing the situation and maximum word limit. It has the keywords given to be used. 1 question, 10 minutes.This section is generally used to check your verbal ability. Make sure to use all the keywords given and complete it within time, with no spelling mistakes of course. Missing a keyword or a spelling mistake could be your goodbye to qualified list.The second section had 30 questions of quantitative aptitude. Duration 70 mins. There are questions from various sections, such as Time and speed, Time and distance, Data interpretation,etc.There are 2-3 star marked questions which have more weight-age. There my also be a dummy question who doesn't have any matching answer. Make sure uh don't attempt these questions.26-27 questions is the cut-off for qualified list.But you have to do the email writing part correctly.
Tips: Practice email writing online from various websites such as technicalbaba.com, indiageeks.comPractice quantitative aptitude as it is a must in any interview you will face. you can use R.S.Agarwal or CAT material.
Duration: 90 minutes
Total Questions: 30 + 1

Round: Interview
Experience: Greeting the interviewer is a must. Be confident and enthusiastic. Have your resume properly ready. Technical questions from your subject will be asked. Not a must that you should know any programming language like C, C++, JAVA.
Tips: Prepare 3-4 subjects of your core branch. Never try to flatter the interviewer. Be confident and answer the questions appropriately. Dont say directly " I DON'T KNOW". Atleast try even if you dont know the answer.

Round: Interview
Experience: There are certain questions which doesnt have direct answers. You have to be diplomatic about them. You should be able to see all the possible situation when a question like that is asked.

Round: Interview
Experience: The HR head may manipulate you, try to stress you, etc. Be calm and confident.Think before you speak. Prepare your answers before hand for general questions. Write your introduction on a paper and prepare it well so that you speak it confidently...
Tips: Be yourself. Be confident. Never argue with the interviewer.All the best

General Tips: Be presentable in the interview. Wear a watch. Show respect to the interviewer. Prepare 3-4 technical subjects well. Read last 15 days newspaper. Be confident when you speak. Improve your English if you are weak in it.
Skill Tips: ""
Skills: Verbal ability, Attitude, Technical knowledge, General knowledge
College Name: IMS ENGINEERING COLLEGE, GHAZIABAD
Motivation: TCS is a semi government company with a decent package and high job security.

Skills evaluated in this interview

Interview Questionnaire 

7 Questions

  • Q1. Say something about yourself?
  • Q2. Asked on college project
  • Q3. Which programming language do you know?
  • Ans. 

    I know multiple programming languages including Java, Python, and C++.

    • Proficient in Java with experience in developing web applications using Spring framework

    • Familiar with Python for data analysis and machine learning

    • Experience in C++ for developing high-performance applications

    • Also familiar with HTML, CSS, and JavaScript for front-end development

  • Answered by AI
  • Q4. What is class, encapsulation and other feature of OOP?
  • Ans. 

    Class is a blueprint for creating objects, encapsulation is the process of hiding data and methods within a class.

    • Class is a template or blueprint that defines the properties and behaviors of an object.

    • Encapsulation is the process of bundling data and methods together within a class, hiding the internal details from the outside world.

    • Other features of OOP include inheritance, polymorphism, and abstraction.

    • Inheritance a...

  • Answered by AI
  • Q5. Write a program to find the sum of the squares of each term of Fibonacci series
  • Ans. 

    Program to find the sum of squares of each term of Fibonacci series

    • Generate Fibonacci series using loop or recursion

    • Calculate square of each term

    • Add all squares to get the sum

  • Answered by AI
  • Q6. What can I do for you?
  • Q7. Why would you like to join Cognizant?
  • Ans. 

    I would like to join Cognizant because of its reputation as a leading global technology and consulting company.

    • Cognizant has a strong presence in the industry and is known for its innovative solutions.

    • I am impressed by Cognizant's commitment to digital transformation and its ability to deliver value to clients.

    • The company offers excellent career growth opportunities and a supportive work environment.

    • Cognizant's diverse...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions were simple but demanded faster solving ability especially the Quantitative ability section.
Tips: Solve every bit of R.S.Aggarwal for Aptitude problems. www.indiabix.com is a good site to solve questions from all the sections.
Duration: 90 minutes

Round: Interview
Experience: Started with self description to explaining what projects I was involved in. Talked about my role in the project. Then answered questions from C++ programming language and then wrote the program that the interviewer gave me to do.
Tips: Be Confident. Have the problem solving & "Yes I can Do" attitude. Go with a open mind. Listen to the interviewer carefully. Do not stammer. Keep yourself calm and cool. Be honest.

Round: Interview
Experience: Faced normal questions
Tips: Be confident & keep smiling. Keep track of your body language. Be fluent in speaking English.

General Tips: Be confident and a "can do" attitude will help you grab the job.
Skill Tips: """"
Skills: Communication Skill, Proficiency in English, Basic Computer Progamming Knowledge, Learning ability, Aptitude
College Name: IIT Madras

Skills evaluated in this interview

Interview Preparation Tips

Round: Resume Shortlist
Experience: CGPA + resume + online test - based shortlisting

Round: Test
Experience: Online Test:Quant, DI, verbal, and coding45 minutes coding + 15 minutes verbal + 30 minutes quant
Tips: Time constraint will be the major problem. CAT preparation would sufficeBrush up your coding skills- concentrate in either C or C++ or whichever language you're comfortable withE.g.: The coding question- Write a function to find if a number is palindromeBrush up through basic data structuresGraph theory and few sorting algorithms
Duration: 90 minutes

Round: Interview
Experience: (2 interviews, 20 minutes each)Resume- basedCoding skills and the approach towards the problem will also be tested
Tips: Be thorough with the work done in your internships and projects. Be ready to answer why you are interested in the company.Maintain your confidence level in the interviews. They also look for good communication skills, and even leadership, which is evident from the way you conduct yourself through the interview.Practice quant questions, prepare answers for all the basic HR questions.Coding, go through sorting algorithms, FOR, Graph theory.Digital IC design is very important courses. You should be through with this courses if you are interested in digital profile.

College Name: IIT Madras

Interview Preparation Tips

Round: Interview
Experience: Quizzed on opinions of the Construction Industry.

General Tips: 1. Be prepared on the courses and project works that you mention in your resume2. Read newspapers, blogs about the construction industry and keep yourself updated
Skill Tips: """"
Skills: Infrastructure Planning, Infrastructure Management, Construction Management, Project Management
College Name: VIT Chennai

Decisivedge Interview FAQs

How many rounds are there in Decisivedge interview?
Decisivedge interview process usually has 2 rounds. The most common rounds in the Decisivedge interview process are One-on-one Round, Technical and HR.
How to prepare for Decisivedge 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 Decisivedge. The most common topics and skills that interviewers at Decisivedge expect are Javascript, Healthcare, HTML, CSS and Production Support.
What are the top questions asked in Decisivedge interview?

Some of the top questions asked at the Decisivedge interview -

  1. Question to see if candidate is a good fit for the t...read more
  2. Good questions, basics or selenium test...read more
  3. Oops about inherita...read more

Tell us how to improve this page.

Decisivedge Interview Process

based on 3 interviews in last 1 year

Interview experience

4.7
  
Excellent

People are getting interviews through

based on 5 Decisivedge interviews
Job Portal
Company Website
40%
20%
40% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.7
 • 221 Interviews
Tiger Analytics Interview Questions
3.6
 • 209 Interviews
Fractal Analytics Interview Questions
4.0
 • 194 Interviews
Tredence Interview Questions
3.6
 • 121 Interviews
Axtria Interview Questions
3.0
 • 112 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

Decisivedge Reviews and Ratings

based on 30 reviews

3.6/5

Rating in categories

3.0

Skill development

3.4

Work-Life balance

3.2

Salary & Benefits

2.8

Job Security

3.4

Company culture

2.7

Promotions/Appraisal

3.1

Work Satisfaction

Explore 30 Reviews and Ratings
UI/UX Designer & Developer

Pune

2-4 Yrs

Not Disclosed

Junior DevOps Engineer

Pune

1-3 Yrs

Not Disclosed

Oracle ADF Developer

Pune

3-5 Yrs

Not Disclosed

Explore more jobs
Software Developer
22 salaries
unlock blur

₹3 L/yr - ₹6.3 L/yr

QA Analyst
11 salaries
unlock blur

₹3.2 L/yr - ₹7.5 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹8.4 L/yr - ₹16.2 L/yr

Junior Software Developer
8 salaries
unlock blur

₹3.6 L/yr - ₹4.3 L/yr

Senior Software Developer
7 salaries
unlock blur

₹7 L/yr - ₹11 L/yr

Explore more salaries
Compare Decisivedge with

Fractal Analytics

4.0
Compare

Mu Sigma

2.7
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

3.7
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