AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

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

Tech Vedika Verified Tick

Compare button icon Compare button icon Compare
3.3

based on 33 Reviews

Play video Play video Video summary
  • About
  • Reviews
    33
  • Salaries
    316
  • Interviews
    8
  • Jobs
    12
  • Benefits
    6
  • Photos
    -

Filter interviews by

Tech Vedika Interview Questions and Answers

Updated 16 Sep 2024
Popular Designations

14 Interview questions

A QA Lead was asked 9mo ago
Q. How can you reverse the order of words in a string without using built-in functions?
Ans. 

Reverse the words in a string without using built-in functions.

  • Split the string into an array of words using a space as the delimiter.

  • Create a new array and iterate over the words array in reverse order, adding each word to the new array.

  • Join the new array of words back into a single string with spaces between each word.

View all QA Lead interview questions
A QA Lead was asked 9mo ago
Q. How do you write a POST query in RestAssured?
Ans. 

To write a post query in RestAssured, use the given() method to set request parameters and body, then use the post() method to send the request.

  • Use given() method to set request parameters and body

  • Use post() method to send the request

  • Example: given().param("key", "value").body("{\"name\": \"John\"}").post("/endpoint")

View all QA Lead interview questions
A QA Lead was asked 9mo ago
Q. What is the difference between path and query parameters?
Ans. 

Path params are part of the URL path, while query params are appended to the URL after a '?'

  • Path params are used to identify a specific resource in the URL path, while query params are used to filter or sort the results

  • Path params are defined in the URL path itself, like /users/{id}, while query params are added after a '?' like /users?role=admin

  • Path params are typically used for required parameters, while query p...

View all QA Lead interview questions
A QA Lead was asked 9mo ago
Q. What are the different types of parameters used in API testing?
Ans. 

Parameters in API testing include path parameters, query parameters, header parameters, and body parameters.

  • Path parameters are used to identify a specific resource in the URL path, e.g. /users/{id}

  • Query parameters are used for filtering or sorting data, e.g. /users?status=active

  • Header parameters contain additional information for the request, e.g. Content-Type: application/json

  • Body parameters are used to send dat...

View all QA Lead interview questions
A QA Lead was asked 9mo ago
Q. Given a URL, what is your understanding of it in the context of API testing?
Ans. 

Understanding a URL in API testing involves analyzing its structure, parameters, and expected responses.

  • Identify the HTTP method (GET, POST, PUT, DELETE) used in the API call.

  • Examine the endpoint to understand the resource being accessed, e.g., '/users' for user data.

  • Check query parameters for filtering or sorting, e.g., '?sort=asc' or '?id=123'.

  • Review the expected response format (JSON, XML) and status codes (200...

View all QA Lead interview questions
A Java Developer was asked
Q. What is type casting in Java?
Ans. 

Type casting in Java is the process of converting one data type into another.

  • Type casting can be done implicitly or explicitly.

  • Implicit type casting is done automatically by the compiler when there is no loss of data.

  • Explicit type casting is done manually by the programmer when there is a possibility of data loss.

  • Type casting is useful when we want to use a variable of one data type in an expression or assignment ...

View all Java Developer interview questions
A Java Developer was asked
Q. What is method overloading?
Ans. 

Method overloading is when multiple methods have the same name but different parameters.

  • Method overloading allows for more flexibility in method calls.

  • The methods must have different parameters, such as different data types or different numbers of parameters.

  • Example: public void print(int num) and public void print(String str)

  • Overloading constructors is also common in Java.

View all Java Developer interview questions
Are these interview questions helpful?
A Java Developer was asked
Q. Explain the concept of method overloading in Java, including how to create multiple methods in a class with the same name but different argument types and lengths.
Ans. 

Method overloading allows creating multiple methods with the same name but different arguments.

  • Method signature must differ in number, type, or order of parameters

  • Return type can be different but not the only difference

  • Example: public void print(int num), public void print(String str), public void print(int[] arr)

  • Overloading improves code readability and reusability

View all Java Developer interview questions
An Intern was asked
Q. Given an array of candidates and their votes, find the candidate with the majority of votes.
Ans. 

A program that determines the candidate with the highest number of votes.

  • The program should take in the number of candidates and their respective vote counts.

  • It should then compare the vote counts and determine the candidate with the highest number of votes.

  • The program should output the name of the candidate with the highest number of votes.

View all Intern interview questions
A Software Engineer was asked
Q. What are some basic questions you were asked about JavaScript?
Ans. 

Basic questions about JavaScript in a software engineering interview

  • Explain the difference between '==' and '===' operators

  • What is closure in JavaScript?

  • How does prototypal inheritance work in JavaScript?

  • What is event delegation in JavaScript?

  • How do you handle asynchronous operations in JavaScript?

View all Software Engineer interview questions
1 2

Tech Vedika Interview Experiences

8 interviews found

QA Lead Interview Questions & Answers

user image automation engineer selenium

posted on 16 Sep 2024

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Reverse the words in string. 1st word will be coming last and last to the first.with out using builtin functions
  • Ans. 

    Reverse the words in a string without using built-in functions.

    • Split the string into an array of words using a space as the delimiter.

    • Create a new array and iterate over the words array in reverse order, adding each word to the new array.

    • Join the new array of words back into a single string with spaces between each word.

  • Answered by AI
    Add your answer
  • Q2. Given some url asked what i have understood from that url in api testing.
  • Ans. 

    Understanding a URL in API testing involves analyzing its structure, parameters, and expected responses.

    • Identify the HTTP method (GET, POST, PUT, DELETE) used in the API call.

    • Examine the endpoint to understand the resource being accessed, e.g., '/users' for user data.

    • Check query parameters for filtering or sorting, e.g., '?sort=asc' or '?id=123'.

    • Review the expected response format (JSON, XML) and status codes (200, 404...

  • Answered by AI
    Add your answer
  • Q3. Difference between path and querry params
  • Ans. 

    Path params are part of the URL path, while query params are appended to the URL after a '?'

    • Path params are used to identify a specific resource in the URL path, while query params are used to filter or sort the results

    • Path params are defined in the URL path itself, like /users/{id}, while query params are added after a '?' like /users?role=admin

    • Path params are typically used for required parameters, while query params...

  • Answered by AI
    Add your answer
  • Q4. Types of parameters in the api testing
  • Ans. 

    Parameters in API testing include path parameters, query parameters, header parameters, and body parameters.

    • Path parameters are used to identify a specific resource in the URL path, e.g. /users/{id}

    • Query parameters are used for filtering or sorting data, e.g. /users?status=active

    • Header parameters contain additional information for the request, e.g. Content-Type: application/json

    • Body parameters are used to send data in ...

  • Answered by AI
    Add your answer
  • Q5. How do you write post querry in restassured
  • Ans. 

    To write a post query in RestAssured, use the given() method to set request parameters and body, then use the post() method to send the request.

    • Use given() method to set request parameters and body

    • Use post() method to send the request

    • Example: given().param("key", "value").body("{\"name\": \"John\"}").post("/endpoint")

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Java Developer Interview Questions & Answers

user image Anonymous

posted on 17 Sep 2022

I applied via Naukri.com and was interviewed in Aug 2022. There were 3 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 - Technical 

(5 Questions)

  • Q1. What is an object in java ?
  • Ans. It is a real word entity it has state and behaviour and object is created for the non static variables. Variable declared the state. Method declared the behaviour
  • Answered Anonymously
    View 3 more answers
  • Q2. What is method overloading?
  • Add your answer
  • Q3. Creating multiple methods in a class with a same name and different arguments. The argument must be different type and length
  • Add your answer
  • Q4. What is inheritance in java?
  • Ans. Aquiring the properties of parent class to child class without changing the properties of parent class
  • Answered Anonymously
    View 1 more answer
  • Q5. What is Type casting in java ?
  • Ans. Converting one data type to another datatype is known as type casting . They are two types primitive and non primitive. Widening and castening
  • Answered Anonymously
    View 1 more answer
Round 3 - HR 

(1 Question)

  • Q1. Who is ur favourite cricket palyer ?
  • Ans. Ms dhoni because he is good captain and best finisher and world best wicket keeper
  • Answered Anonymously
    Add your answer

Interview Preparation Tips

Topics to prepare for Tech Vedika Java Developer interview:
  • In javaa basic programs, oops, s
Interview preparation tips for other job seekers - Ther is no critical rounds there was a simple interviews

Skills evaluated in this interview

Anonymous

Senior Software Engineer 1 Interview Questions & Answers

user image Anonymous

posted on 26 Mar 2024

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 before Mar 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Frontend technology
  • Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical questions based on html, css, js framework
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Basic questions
  • Add your answer
Round 4 - Behavioral 

(1 Question)

  • Q1. Basic questions casual round
  • Add your answer
Anonymous

Senior Android Developer Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. What was my role in previous company?
  • Add your answer
  • Q2. Why I am looking for job change?
  • Add your answer
  • Q3. What is my salary expectation?
  • Add your answer
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Coding Round:
Questions -3
Time- 90 min
Topic- DP, Array, String

  • Q1. 

    Left Rotations of an Array

    Given an array of size N and Q queries, each query requires left rotating the original array by a specified number of elements. Return the modified array for each query.

    Input:

    ...
  • Ans. 

    Rotate an array left by a specified number of elements for each query.

    • Iterate through each query and rotate the array left by the specified number of elements using array slicing.

    • Handle cases where the number of rotations exceeds the length of the array by taking the modulo of the rotations.

    • Return the modified array after each query is processed.

  • Answered by AI
    Add your answer
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the number of ways to make change for each value up to the specified value.

    • Iterate through each denomination and update the array accordingly.

    • The final answer will be stored in the last cell of the array.

    • Example: For N=3, D=[1, 2...

  • Answered by AI
    Add your answer
  • Q3. 

    String Transformation Problem

    Given a string (STR) of length N, you are tasked to create a new string through the following method:

    Select the smallest character from the first K characters of STR, remov...

  • Ans. 

    Given a string and an integer K, create a new string by selecting the smallest character from the first K characters of the input string and repeating the process until the input string is empty.

    • Iterate through the input string, selecting the smallest character from the first K characters each time.

    • Remove the selected character from the input string and append it to the new string.

    • Continue this process until the input ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from SR Institute of Management & Technology. I applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 7 CGPA, Career camp student of coding ninjasTech Vedika interview preparation:Topics to prepare for the interview - :Data Structures, Algorithms, Database, OOPS, javascriptTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip1 : Practice at least 250 Questions based on DSA 
Tip2 : Practice at least 50 Basic Javascript Questions
Tip3 : Practice at least 50 SQL query Questions 
Tip4 : Do at least 2 projects ( full stack-based technology )

Application resume tips for other job seekers

Tip 1 : Keep it short. Mention the academic and professional projects you've done.
Tip 2 : Add your educational details properly with the percentage or CGPA obtained.
Tip 3 : Have some projects on a resume.
Tip 4 : Do not put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2021

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

In this round 3 coding question were asked. 
1 - algorithm based ( medium) 
2- array based ( easy) 
3- string based (easy)

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to determine the total number of ways to make change for a specified value using given denominations.

    • Create a dynamic programming table to store the number of ways to make change for each value up to the target value.

    • Iterate through each denomination and update the table accordingly based on the current denomination.

    • The final value in the table will represent the total number of ways to make change for the ...

  • Answered by AI
    Add your answer
  • Q2. 

    Left Rotations of an Array

    You are given an array consisting of N elements and need to perform Q queries on that array. Each query consists of an integer indicating the number of elements by which the arr...

  • Ans. 

    Perform left rotations on an array based on given queries.

    • Create a function that takes the array, number of elements, number of queries, and the queries as input.

    • For each query, rotate the array by the specified number of elements to the left.

    • Return the final array after each rotation query.

  • Answered by AI
    Add your answer
  • Q3. 

    Chocolate Distribution Problem

    You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...

  • Ans. 

    The task is to distribute chocolates among students such that the difference between the largest and smallest number of chocolates is minimized.

    • Sort the array of chocolates packets

    • Use sliding window technique to find the minimum difference between the largest and smallest number of chocolates distributed to students

    • Return the minimum difference

  • Answered by AI
    Add your answer
Round 2 - Video Call 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Involved some basic question based on DSA and Java script framework and project discussion

  • Q1. What are some basic questions you were asked about JavaScript?
  • Ans. 

    Basic questions about JavaScript in a software engineering interview

    • Explain the difference between '==' and '===' operators

    • What is closure in JavaScript?

    • How does prototypal inheritance work in JavaScript?

    • What is event delegation in JavaScript?

    • How do you handle asynchronous operations in JavaScript?

  • Answered by AI
    Add your answer
  • Q2. MYSQL query

    Questions on mysql and database.

  • Ans. 

    The question is about MYSQL query and database.

    • Understand the database schema before writing the query

    • Use proper indexing to optimize query performance

    • Avoid using SELECT * and only fetch necessary columns

    • Use WHERE clause to filter results based on conditions

  • Answered by AI
    Add your answer
  • Q3. Can you describe the projects listed on your resume?
  • Add your answer
  • Q4. Node js basic question

    Questions on basic node js concepts.

  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript on the server side.

    • Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient.

    • It is commonly used for building server-side applications, APIs, and real-time web applications.

    • Node.js is built on the V8 JavaScript engine and uses an event loop for handling asynchronous operations.

    • Modules in Node.js are reusable pieces of ...

  • Answered by AI
    Add your answer
Round 3 - Video Call 

Round duration - 30 minutes
Round difficulty - Easy

It was the CTO round involving some technology based questions

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from SR Institute of Management & Technology. Eligibility criteriaStudents of career camp of coding ninjasTech Vedika interview preparation:Topics to prepare for the interview - Data structure, algorithm, JavaScript, OOPS, MYSQL, PythonTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 250+ coding question based on all data structure and algorithm. 
Tip 2 : Make proficiency in any one language like python or java or JavaScript. 
Tip 3 : Learn at least one framework familiar like : Django, Nodejs, React js, spring boot. And at least two project based on fronted and backend technology mixture.

Application resume tips for other job seekers

Tip 1 : Practise on online coding profile is must like Hackerrank... Etc 
Tip 2 : Project is necessary based on trending technology like nodejs, react, Django... Etc.

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous

Business Analyst Interview Questions & Answers

user image Anonymous

posted on 8 Apr 2021

I applied via Indeed and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Describe about roles and responsibilities
  • Ans. 

    As a Business Analyst, I bridge the gap between stakeholders and IT, ensuring project requirements align with business goals.

    • Gather and analyze business requirements through stakeholder interviews and workshops.

    • Create detailed documentation, including business requirements documents (BRD) and functional specifications.

    • Facilitate communication between technical teams and business stakeholders to ensure clarity and align...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be familar with the points that we have mentioned in the Resume
Anonymous

Intern Interview Questions & Answers

user image Anonymous

posted on 19 May 2021

I applied via Campus Placement and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Candidate with majority votes program
  • Ans. 

    A program that determines the candidate with the highest number of votes.

    • The program should take in the number of candidates and their respective vote counts.

    • It should then compare the vote counts and determine the candidate with the highest number of votes.

    • The program should output the name of the candidate with the highest number of votes.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Oncampus:
First round: 5 low to high level programming questions
Second round: technical interview
Third round : technical interview
Final round: managerial includes technical

Skills evaluated in this interview

Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Tech Vedika?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Business Analyst Interview Questions & Answers

Affine user image Tilak Agarwal

posted on 16 Mar 2015

Interview Preparation Tips

Round: Test
Experience: It was nice set of mixed bag questions each challenging your brain to scratch more and find the trick.
Tips: Be calm in solving the questions, Practice few tricks to solve

work,time,distance,number series problem etc. quickly to help save the

time.
Duration: 20 minuntes minutes
Total Questions: 25

Round: Resume Shortlist
Experience: I think resume played a important role in selection processes.
Tips: Make it simple and HIGHLIGHT your good work and experiences.Interviewer don't have time to go through whole crap what we write so basically focus on highlighting your achievements and internships.

Round: Group Discussion
Experience: People are dying to take the opportunity and speak.You will be facing a fish market in few cases, rest it is calm and everyone is given a chance to put forward there point.
Tips: Generally u have to decide which side of the boat u want to be on.

Either go against the topic or in favor whichever you are more

comfortable with.

College Name: IIT ROORKEE
Anonymous
company Logo

Business Analyst Interview Questions & Answers

Affine user image Ankit Sah

posted on 5 Oct 2015

Interview Questionnaire 

18 Questions

  • Q1. Tell me about your yourself
  • Ans. 

    I am a detail-oriented business analyst with experience in data analysis and process improvement.

    • I have a Bachelor's degree in Business Administration

    • I have worked with various stakeholders to identify business needs and requirements

    • I am proficient in SQL and Excel for data analysis

    • I have experience in process improvement and project management

    • I am a strong communicator and collaborator

  • Answered by AI
    Add your answer
  • Q2. Tell us about your training and internships
  • Ans. 

    I have completed a business analyst certification course and have interned at a software development company.

    • Completed a business analyst certification course from XYZ Institute

    • Interned at ABC Software Development Company for 6 months

    • Worked on requirement gathering, documentation and analysis for a project

    • Assisted senior business analysts in creating project plans and reports

  • Answered by AI
    Add your answer
  • Q3. What is the role of Instrumentation Department? (my training)
  • Ans. 

    The Instrumentation Department is responsible for designing, installing, and maintaining control systems and instruments used in industrial processes.

    • Designing and implementing control systems for industrial processes

    • Installing and maintaining instruments used in industrial processes

    • Ensuring accuracy and reliability of instruments and control systems

    • Collaborating with other departments to optimize processes and improve...

  • Answered by AI
    Add your answer
  • Q4. Why do you want to join Affine Analytics?
  • Ans. 

    I am excited to join Affine Analytics because of their reputation for delivering innovative solutions and their focus on employee growth.

    • Affine Analytics has a strong track record of delivering cutting-edge solutions to clients across industries.

    • I am impressed by the company's commitment to employee growth and development, as evidenced by their training and mentorship programs.

    • I am excited about the opportunity to work...

  • Answered by AI
    View 1 more answer
  • Q5. Why Data anayltics? Why not a technical job in your field?
  • Ans. 

    Data analytics allows me to use my technical skills to solve business problems and make data-driven decisions.

    • Data analytics helps me to identify patterns and trends in data that can be used to improve business processes.

    • It allows me to work with large datasets and use statistical methods to extract insights.

    • I can use my technical skills to develop and implement data models and algorithms.

    • Data analytics is a growing fi...

  • Answered by AI
    Add your answer
  • Q6. If I keep two diodes in series will it work as a transistor? (EC branch)
  • Ans. 

    No, two diodes in series cannot work as a transistor.

    • Transistors have three terminals while diodes have two.

    • Transistors can amplify signals while diodes cannot.

    • Transistors can be used as switches while diodes cannot.

    • Diodes in series will only increase the voltage drop.

    • Transistors have different modes of operation such as common emitter, common base, and common collector.

  • Answered by AI
    Add your answer
  • Q7. What exactly have you accomplished with the drone? (my final year project)
  • Ans. 

    I developed a drone that can detect and monitor forest fires.

    • Designed and built a drone with thermal imaging camera

    • Integrated machine learning algorithm to detect fire

    • Tested and validated the drone in a controlled forest environment

    • Presented the project at a national engineering conference

  • Answered by AI
    Add your answer
  • Q8. How frequently do you play Badminton? (Hobby)
  • Ans. 

    I play badminton twice a week as a hobby.

    • I enjoy playing badminton as a way to stay active and relieve stress.

    • I usually play with friends or family members at a local community center.

    • I have been playing badminton for several years and have improved my skills over time.

  • Answered by AI
    Add your answer
  • Q9. Do you have any problem working in Bangalore?
  • Ans. 

    No, I don't have any problem working in Bangalore.

    • I am familiar with the city and its culture

    • I have worked in Bangalore before and enjoyed my experience

    • I am open to new experiences and challenges

    • I am willing to adapt to the local environment and work culture

  • Answered by AI
    Add your answer
  • Q10. Do you have any questions for us?
  • Add your answer
  • Q11. Which football club do you follow? (My answer: Real Madrid) (Que based on hobby)
  • Add your answer
  • Q12. Why is Real Madrid your favorite?
  • Ans. 

    Real Madrid is my favorite because of their rich history, success, and style of play.

    • Real Madrid has won a record 13 Champions League titles, which is a testament to their success

    • Their style of play is attractive and entertaining to watch

    • The club has a rich history and has had some of the greatest players in football history, such as Cristiano Ronaldo and Zinedine Zidane

  • Answered by AI
    Add your answer
  • Q13. Assume you are the CEO of Flipkart. Your board has decided to go App only. What factors would you consider before making your final decision. (You have the relevant data from your website of last 7 years ...
  • Ans. 

    Factors to consider before going App only as CEO of Flipkart

    • Analyze the data from website and app to understand user behavior

    • Evaluate the impact on sales and revenue

    • Consider the potential loss of customers who prefer website over app

    • Assess the cost of developing and maintaining the app

    • Evaluate the competition and their strategies

    • Consider the impact on brand image and customer loyalty

    • Assess the feasibility of providing ...

  • Answered by AI
    View 1 more answer
  • Q14. The Horse Puzzle
  • Add your answer
  • Q15. 3 Ants triangle puzzle
  • Add your answer
  • Q16. 3 Jars puzzle (Apple/Orange puzzle)
  • Add your answer
  • Q17. I have two jars of 5 litres and 3 litres. How can I measure 4 litres? (Assume: Infinite supply of water and no third jar is present)
  • View 3 more answers
  • Q18. A revolver with 2 bullets puzzle
  • Add your answer

Interview Preparation Tips

Round: Test
Experience: The first 10 questions were Data Interpretation type. There were around 4 to 5 logic questions. The rest were quantitative questions.
The questions were pretty basic.
Tips: The aim is to check the speed of your calculations.
Duration: 30 minutes
Total Questions: 23

Round: Group Discussion
Tips: Speak relevant points and you will be fine.
High proficiency in English is a must.
Duration: 10 minutes

Round: Puzzle Interview
Experience: The interview was great and lasted around 35-40 minutes. The interviewer gave ample amount of time to solve the questions.
To answer the questions was ofcourse important but approach to your final answer is very important as well. If you already know the answer but fail to explain the approach to the interviewer, you will get rejected.
Tips: Keep the interviewer in the loop and keep explaining him what you are thinking.
Fluent English is very important as well.

Round: HR Interview
Experience: The interviewers were very friendly and the interview lasted around 15 min.
Tips: Have one or two favorite subject/s from which you can answer any question thrown at you.
Be well versed about your final year project.
Do not put rubbish in your resume as they read the entire resume.

Skills: Enthusiasm, Projects, Proficiency In English, Logical Puzzles, Logical Thinking
College Name: NIT Surat
Funny Moments: As the HR interviewer is an alumni of my college, we had some chat about the college. This made the interview mood very light.
Anonymous
More about working at Tech Vedika
  • HQ - San Jose, California, United States (USA)
  • IT Services & Consulting
  • 51-200 Employees (India)
  • Software Product

Tech Vedika Interview FAQs

How many rounds are there in Tech Vedika interview?
Tech Vedika interview process usually has 2-3 rounds. The most common rounds in the Tech Vedika interview process are Technical, HR and Resume Shortlist.
How to prepare for Tech Vedika 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 Tech Vedika. The most common topics and skills that interviewers at Tech Vedika expect are Python, Javascript, SQL, Product Engineering and Agile.
What are the top questions asked in Tech Vedika interview?

Some of the top questions asked at the Tech Vedika interview -

  1. What is an object in jav...read more
  2. Creating multiple methods in a class with a same name and different arguments. ...read more
  3. What is Type casting in jav...read more

Tell us how to improve this page.

Tech Vedika Interviews By Designations

  • Tech Vedika Software Engineer Interview Questions
  • Tech Vedika QA Lead Interview Questions
  • Tech Vedika Software Developer Interview Questions
  • Tech Vedika Business Analyst Interview Questions
  • Tech Vedika Java Developer Interview Questions
  • Tech Vedika Senior Android Developer Interview Questions
  • Tech Vedika Intern Interview Questions
  • Tech Vedika Senior Software Engineer 1 Interview Questions
  • Show more

Interview Questions for Popular Designations

  • Executive Interview Questions
  • Analyst Interview Questions
  • Team Lead Interview Questions
  • Intern Interview Questions
  • Business Analyst Interview Questions
  • Senior Engineer Interview Questions
  • Sales Executive Interview Questions
  • Consultant Interview Questions
  • Show more
  • Graduate Engineer Trainee (Get) Interview Questions
  • Accountant Interview Questions

Overall Interview Experience Rating

4.7/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

Affine
Affine Interview Questions
3.3
 • 51 Interviews
RNF Technologies
RNF Technologies Interview Questions
3.3
 • 35 Interviews
JMR Infotech
JMR Infotech Interview Questions
4.2
 • 33 Interviews
360 Degree Cloud Technologies
360 Degree Cloud Technologies Interview Questions
2.7
 • 21 Interviews
Truminds Software Systems
Truminds Software Systems Interview Questions
3.7
 • 19 Interviews
PC Solutions
PC Solutions Interview Questions
3.7
 • 18 Interviews
OptiSol Business Solutions
OptiSol Business Solutions Interview Questions
3.9
 • 17 Interviews
Flexsin Technologies
Flexsin Technologies Interview Questions
2.9
 • 16 Interviews
Ahana Systems & Solutions
Ahana Systems & Solutions Interview Questions
3.8
 • 15 Interviews
Data Template Infotech
Data Template Infotech Interview Questions
3.2
 • 14 Interviews
View all

Tech Vedika Reviews and Ratings

based on 33 reviews

3.3/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

3.0

Salary

3.2

Job security

3.5

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 33 Reviews and Ratings
Jobs at Tech Vedika
Tech Vedika
L3 Support/ Infra Cloud Engineer/VM Ware

Hyderabad / Secunderabad

2-2 Yrs

Not Disclosed

Tech Vedika
Presales

Hyderabad / Secunderabad

4-8 Yrs

Not Disclosed

Tech Vedika
Tech Vedika - L3 Support Engineer - IT Infrastructure (7-12 yrs)

7-12 Yrs

Not Disclosed

Explore more jobs
Tech Vedika Salaries in India
Senior Software Engineer
42 salaries
unlock blur

₹9 L/yr - ₹16.6 L/yr

Software Engineer
26 salaries
unlock blur

₹3.5 L/yr - ₹9.2 L/yr

Associate Software Analyst
16 salaries
unlock blur

₹7.5 L/yr - ₹17.5 L/yr

Software Analyst
12 salaries
unlock blur

₹13 L/yr - ₹27.5 L/yr

Software Developer
11 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Explore more salaries
Compare Tech Vedika with
PC Solutions

PC Solutions

3.7
Compare
JMR Infotech

JMR Infotech

4.2
Compare
RNF Technologies

RNF Technologies

3.3
Compare
Ahana Systems & Solutions

Ahana Systems & Solutions

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Tech Vedika Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter