Upload Button Icon Add office photos
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

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

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

Skills evaluated in this interview

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
  • Q2. What is method overloading?
  • Q3. Creating multiple methods in a class with a same name and different arguments. The argument must be different type and length
  • 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
  • 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
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

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

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
Round 2 - One-on-one 

(1 Question)

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

(1 Question)

  • Q1. Basic questions
Round 4 - Behavioral 

(1 Question)

  • Q1. Basic questions casual round
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?
  • Q2. Why I am looking for job change?
  • Q3. What is my salary expectation?

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

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

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
  • 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
  • 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
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
  • 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
  • Q3. Can you describe the projects listed on your resume?
  • 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
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

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

Interview Preparation Tips

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

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

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

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

I applied via LinkedIn and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Write a c++ program to implement the basic functions of queue using linked list and class?
  • Ans. 

    C++ program to implement queue using linked list and class

    • Create a class for queue and node

    • Implement enqueue, dequeue, and display functions

    • Use pointers to link nodes in the linked list

  • Answered by AI
  • Q2. Questions related to the projects .

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have good command over the language you chose and the tech stack you are working upon. You should be able to explain your role.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Salesforce Admin Question and what do you know about the work of Business Analyst.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through all the admin stuff and BA knowledge before appearing for the interview. It is not tough.

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.

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 Interview Questions
3.3
 • 51 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
PC Solutions Interview Questions
3.7
 • 18 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
L3 Support/ Infra Cloud Engineer/VM Ware

Hyderabad / Secunderabad

2-2 Yrs

Not Disclosed

Presales

Hyderabad / Secunderabad

4-8 Yrs

Not Disclosed

Explore more jobs
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

3.7
Compare

JMR Infotech

4.2
Compare

RNF Technologies

3.3
Compare

Ahana Systems & Solutions

3.7
Compare
write
Share an Interview