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

Tech Vedika Interview Experiences

Popular Designations

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

QA Lead Interview Questions asked at other Companies

Q1. 1. Explain Bid bond guarantee, Advance payment guarantee, Performance guarantee. 2. What are different SWIFT messages generated as part of Letter of Credit? 3. Difference between LC and Guarantee. 4. Difference between Import LC and Export ... read more
View answer (1)

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. 

    An object in Java is an instance of a class that encapsulates data and behavior.

    • Objects have state and behavior

    • They are created from classes

    • They can be used to represent real-world entities or concepts

    • Objects can interact with each other through method calls

  • Answered by AI
  • Q2. 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.

  • Answered by AI
  • Q3. Creating multiple methods in a class with a same name and different arguments. The argument must be different type and length
  • 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

  • Answered by AI
  • Q4. What is inheritance in java?
  • Ans. 

    Inheritance in Java allows a class to inherit properties and methods from another class.

    • Inheritance is achieved using the 'extends' keyword.

    • The class that is being inherited from is called the superclass or parent class.

    • The class that inherits from the superclass is called the subclass or child class.

    • Subclasses can access the public and protected members of the superclass.

    • Inheritance promotes code reusability and allow...

  • Answered by AI
  • Q5. 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 of an...

  • Answered by AI
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

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)
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

Senior Software Engineer 1 Interview Questions asked at other Companies

Q1. Architecture Design for an e2e system that takes input from user to the response shown to the user
View answer (1)
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?

Senior Android Developer Interview Questions asked at other Companies

Q1. Binary Array Sorting Problem Statement You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting. Input: The first line contains an integer ‘T’ denoti... read more
View answer (1)

Tech Vedika interview questions for popular designations

 Software Engineer

 (1)

 QA Lead

 (1)

 Software Developer

 (1)

 Business Analyst

 (1)

 Java Developer

 (1)

 Senior Android Developer

 (1)

 Intern

 (1)

 Senior Software Engineer 1

 (1)

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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (212)

Jobs at Tech Vedika

View all

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

Interview Preparation Tips

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

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

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

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Interview questions from similar companies

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
  • 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
  • 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
  • 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
  • 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
  • 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
  • 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
  • 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
  • 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
  • Q10. Do you have any questions for us?
  • Q11. Which football club do you follow? (My answer: Real Madrid) (Que based on hobby)
  • 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
  • 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
  • Q14. The Horse Puzzle
  • Q15. 3 Ants triangle puzzle
  • Q16. 3 Jars puzzle (Apple/Orange puzzle)
  • 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)
  • Q18. A revolver with 2 bullets puzzle

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.

Interview Questionnaire 

2 Questions

  • Q1. Mostly puzzles and one case study
  • Q2. They asked me questions about my interests and hobbies

Interview Preparation Tips

Round: Test
Experience: There were three sets of question paper. We were sitting according to our roll number then question paper with rough sheet were distributed and we were allowed 1 hour to finish that. There was no negative marking.
Tips: For aptitude practice data interpretation and data sufficiency
Duration: 1 hour
Total Questions: 30

Round: Group Discussion
Duration: 15 minutes

Round: Technical Interview
Tips: Practice puzzles and case study for this round

Round: HR Interview
Tips: Be yourself

College Name: NIT Rourkela

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 Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
Affine Interview Questions
3.3
 • 49 Interviews
View all

Tech Vedika Reviews and Ratings

based on 31 reviews

3.3/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

3.1

Salary

3.2

Job security

3.7

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 31 Reviews and Ratings
System Reliability Engineer

Hyderabad / Secunderabad

2-5 Yrs

Not Disclosed

Junior Manual/Product Tester

Hyderabad / Secunderabad

1-3 Yrs

Not Disclosed

Dot net +Python

Hyderabad / Secunderabad,

Chennai

+1

5-10 Yrs

₹ 0.5-2.75 LPA

Explore more jobs
Senior Software Engineer
39 salaries
unlock blur

₹5.5 L/yr - ₹18.5 L/yr

Software Engineer
23 salaries
unlock blur

₹3.5 L/yr - ₹9.2 L/yr

Associate Software Analyst
16 salaries
unlock blur

₹8 L/yr - ₹17.5 L/yr

Software Developer
14 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Software Analyst
11 salaries
unlock blur

₹13 L/yr - ₹24.5 L/yr

Explore more salaries
Compare Tech Vedika with

PC Solutions

3.7
Compare

RNF Technologies

3.5
Compare

Hidden Brains InfoTech

3.8
Compare

Affine

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