Upload Button Icon Add office photos

Filter interviews by

Teckinfo Solutions Softwaretest Engineer Interview Questions and Answers

Updated 24 May 2022

Teckinfo Solutions Softwaretest Engineer Interview Experiences

1 interview found

I appeared for an interview before May 2021.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is a WebAPI and how to add security in a Wb API
  • Ans. 

    A WebAPI is an interface that allows communication between different software systems over the internet. Security can be added by implementing authentication and authorization mechanisms.

    • WebAPI stands for Web Application Programming Interface

    • It allows different software systems to communicate with each other over the internet

    • Security can be added by implementing authentication and authorization mechanisms such as OAuth...

  • Answered by AI
  • Q2. How many types of indexes are there in SQL
  • Ans. 

    There are two types of indexes in SQL: clustered and non-clustered.

    • Clustered indexes determine the physical order of data in a table.

    • Non-clustered indexes create a separate structure that contains a copy of the indexed columns.

    • Clustered indexes are faster for retrieving large ranges of data.

    • Non-clustered indexes are faster for retrieving small ranges of data or specific values.

    • A table can have only one clustered index,

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare of SQL , WebAPI, C#, MVC, JQuery, JavaScript

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the D/W Rest and GraphQL APIS?
  • Ans. 

    D/W Rest and GraphQL APIs are two different types of APIs used for communication between software systems.

    • D/W Rest API is a standard protocol for accessing and manipulating data over the web using HTTP.

    • GraphQL API is a query language for APIs and a runtime for executing those queries with your existing data.

    • Rest APIs are more commonly used and follow a stateless client-server architecture.

    • GraphQL APIs allow clients to ...

  • Answered by AI
  • Q2. REST uses fixes endpoint;..............etc.
  • Ans. 

    REST uses fixed endpoints to define the resources that can be accessed through the API.

    • RESTful APIs use fixed URLs to access resources

    • Each endpoint corresponds to a specific resource or action

    • Endpoints are defined in the API documentation

    • Example: GET /users retrieves a list of users

  • Answered by AI

I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

They have an Online Aptitude cum coding test which contains some 20-30 Question to be done in 3Hrs.
20 Questions of Aptitude and 10 Questions of coding(Which includes Display output and correct the program Questions)

Round 2 - Coding Test 

Easy Interview lasting about 30-45 Mins
They mostly ask questions based on projects and they like to see some certifications.
DSA questions were easy to medium.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare for DSA and have some good projects to speak about them.

I applied via Campus Placement and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. What were you stressed last time?
  • Q2. Explain C language to a non technical person?
  • Ans. 

    C is a programming language used to create software and operating systems.

    • C is a low-level language that allows direct access to computer hardware.

    • It is used to create efficient and fast programs.

    • C is the foundation for many other programming languages such as C++, Java, and Python.

    • Examples of C programs include operating systems, device drivers, and video games.

  • Answered by AI
  • Q3. Why you want to join XenonStack?
  • Q4. Why should we hire your?
  • Q5. What are your weekness?
  • Q6. Introduce yourself?
  • Q7. Asked about project i have done
  • Q8. Your Hobbies
  • Ans. 

    My hobbies include hiking, photography, and cooking.

    • Hiking: I enjoy exploring nature trails and challenging myself physically.

    • Photography: I love capturing beautiful moments and landscapes through my camera lens.

    • Cooking: I find joy in experimenting with new recipes and creating delicious meals for my friends and family.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a smartness test. How to tackle things. How you aproch or deal with senior. Also you need to know deep basics of technical things.
Don't lie in any way.
Say no to things ypu don't know about.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. 1. Assignment
  • Q2. 2. Bunch of python questions.
  • Q3. 3. coding questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear with basics.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Technical mcq from basic of dsa

Round 2 - Coding Test 

Question from DSA and time will given to solve it

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical HR and the next is general HR
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy to medium level questions were asked

Round 2 - Coding Test 

Questions were given asked to explain the concept

Round 3 - Technical 

(1 Question)

  • Q1. Basics of c++,java,oops
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Assignment 

DSA MCQ in online platform

Round 2 - Coding Test 

Basic closings like lists/array/string

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Online MCQs - 15 Questions (Aps, DSA, Output Prediction)

Round 2 - Coding Test 

1 Question (with 3 Enhancement)

Round 3 - Technical 

(2 Questions)

  • Q1. Delete Middle Element from a stack of Odd Length
  • Ans. 

    Remove middle element from a stack with odd length

    • Find the middle index of the stack by dividing the length by 2

    • Remove the element at the middle index

    • Adjust the stack by shifting elements if necessary

  • Answered by AI
  • Q2. Resume Based Questions
Round 4 - HR 

(2 Questions)

  • Q1. Self Introduction but without the details in the resume
  • Q2. Asked whether ok with the bond

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure and aptitude

Round 2 - Coding Test 

10 mins given for prepare for the problem and after completing the problem (program ) they asked to explain and asked to upgrade the program by reduce time complexity

Round 3 - Technical 

(2 Questions)

  • Q1. Topic given and want to explain
  • Q2. Reverse string without buildin funtion and for loop
  • Ans. 

    Reverse a string without using built-in functions or for loops

    • Use recursion to reverse the string

    • Pass the substring excluding the first character to the recursive function

    • Base case: return the character itself if the length of the string is 1

    • Concatenate the last character of the string with the result of the recursive call

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Skilled in web development technologies like HTML, CSS, and JavaScript

    • Worked on projects involving database management with SQL

  • Answered by AI
  • Q2. Are you ok with agreement
  • Ans. 

    Yes, I am okay with agreement.

    • I am comfortable with signing agreements related to software development projects.

    • I understand the importance of agreements in protecting both parties involved in a project.

    • I am willing to review and negotiate agreements to ensure they are fair and reasonable.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidence

Teckinfo Solutions Interview FAQs

How many rounds are there in Teckinfo Solutions Softwaretest Engineer interview?
Teckinfo Solutions interview process usually has 1 rounds. The most common rounds in the Teckinfo Solutions interview process are One-on-one Round.
What are the top questions asked in Teckinfo Solutions Softwaretest Engineer interview?

Some of the top questions asked at the Teckinfo Solutions Softwaretest Engineer interview -

  1. What is a WebAPI and how to add security in a Wb ...read more
  2. How many types of indexes are there in ...read more

Tell us how to improve this page.

Software Support Engineer
35 salaries
unlock blur

₹2.3 L/yr - ₹6 L/yr

Software Developer
8 salaries
unlock blur

₹3.2 L/yr - ₹10 L/yr

Assistant Manager
7 salaries
unlock blur

₹6 L/yr - ₹6.8 L/yr

Senior Software Support Engineer
7 salaries
unlock blur

₹4.2 L/yr - ₹5 L/yr

Software Engineer
6 salaries
unlock blur

₹3.1 L/yr - ₹4.1 L/yr

Explore more salaries
Compare Teckinfo Solutions with

Northcorp Software

4.3
Compare

Apex CoVantage

3.1
Compare

Appsierra

4.4
Compare

Teleindia Networks

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