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 was interviewed 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
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I was interviewed in Dec 2024.

Round 1 - Coding Test 

2 coding questions,20 mcq-from coderbyte

Round 2 - One-on-one 

(1 Question)

  • Q1. They told selected, but still not scheduled 1:1 round, never wait, they gave mail also selected, but not scheduled 1:1 , its having 2 months
Round 3 - HR 

(1 Question)

  • Q1. Still now not scheduled
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Aptitude Test 

The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflicts in a team project?
  • Ans. 

    I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Seek compromise and find common ground to resolve conflicts effectively

  • Answered by AI
  • Q2. What is the difference between an interface and an abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while an abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and implemented methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company, practice technical skills, communicate, showcase problem-solving abilities, stay confident, and demonstrate enthusiasm for the role
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Mintu Babu lives in a smaller house than her brother and in a larger house than her parents. Her children reside with her, and she has no other relatives. If Mintu Babu's relative U lives in a larger house than her relative S, then all the following may be true except: \n\n1) S is U's father \n\n2) S is U's mother \n\n3) U is younger than S \n\n4) S is younger than U

Round 2 - Technical 

(2 Questions)

  • Q1. 1. merge two linked list
  • Ans. 

    Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

    • Traverse both linked lists simultaneously

    • Compare the values of nodes and rearrange pointers accordingly

    • Continue until one of the lists is fully traversed

  • Answered by AI
  • Q2. 2. reverse a linked list.
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating pointers to reverse the direction.

    • Update the head of the linked list to be the previous node once iteration is complete.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is the full stack development?
  • Q2. Involves working n both the frontend and backend(server) of a web application.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Manjara Charitable Trust's Rajiv Gandhi Institute of Technology, Mumbai and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Test was of 1.5 hrs and it was online. It was completely based on technical questions.

Round 2 - Coding Test 

This test was offline and it was a pen paper test wherein 10 questions will be given you have to write code or spot the error and correct them.

Round 3 - Technical 

(2 Questions)

  • Q1. Asked questions about React
  • Q2. Question based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - For interview focus more on Resume. Prepare about project, skills, tech stack mentioned in resume. For coding prepare basic data structures and SQL
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Assignment 

Give 10 questions from node js backend

Round 2 - One-on-one 

(6 Questions)

  • Q1. Ask about angular and node js
  • Q2. What is package.json
  • Ans. 

    package.json is a file used in Node.js projects to manage dependencies, scripts, and metadata.

    • It is a JSON file that contains information about the project, such as name, version, dependencies, and scripts.

    • It is used to manage project dependencies by listing them in the 'dependencies' and 'devDependencies' fields.

    • It allows developers to define scripts for tasks like building, testing, and running the project.

    • Example: {...

  • Answered by AI
  • Q3. What is components in angular,how share data to component
  • Ans. 

    Components in Angular are building blocks of an application. Data can be shared between components using input properties and output events.

    • Components in Angular are reusable, self-contained units of code that define a part of the user interface.

    • Data can be shared to a component using input properties, where data is passed from the parent component to the child component.

    • Data can also be shared from a child component t...

  • Answered by AI
  • Q4. What is === and == ,and wher use === is real time projects
  • Ans. 

    === is strict equality operator, while == is loose equality operator. === is commonly used in real-time projects for accurate comparisons.

    • === is a strict equality operator that checks both value and type of operands

    • == is a loose equality operator that only checks the value of operands

    • === is commonly used in real-time projects to ensure accurate comparisons and prevent unexpected type coercion issues

  • Answered by AI
  • Q5. Write arrow function syntax
  • Ans. 

    Arrow function syntax in JavaScript

    • Arrow functions are concise syntax for writing function expressions in JavaScript

    • They have a shorter syntax compared to traditional function expressions

    • They do not have their own 'this', 'arguments', 'super', or 'new.target' keywords

  • Answered by AI
  • Q6. What is difference between arrow function and anonymous function
  • Ans. 

    Arrow functions are concise syntax for writing function expressions, while anonymous functions do not have a name.

    • Arrow functions have a shorter syntax compared to anonymous functions.

    • Arrow functions do not have their own 'this' keyword, while anonymous functions do.

    • Arrow functions do not have 'arguments' object, while anonymous functions do.

    • Arrow functions are not hoisted, while anonymous functions are hoisted.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about ur role

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
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?
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 Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Pen and paper test
C and C++ output questions
Basic flowchart question
Only 3 out of 60 students were selected

Round 2 - One-on-one 

(1 Question)

  • Q1. After writing about your project CFO will take interview my tech stack didn't meet companies requirement hence all three students were rejected.

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.

Interview Questions from Similar Companies

Zeus Learning Interview Questions
3.4
 • 34 Interviews
ENH iSecure Interview Questions
4.0
 • 29 Interviews
XenonStack Interview Questions
3.3
 • 25 Interviews
Moris Media Interview Questions
4.5
 • 24 Interviews
Big Oh Notation Interview Questions
2.9
 • 23 Interviews
View all
Software Support Engineer
33 salaries
unlock blur

₹2.3 L/yr - ₹5.1 L/yr

Assistant Manager
7 salaries
unlock blur

₹6 L/yr - ₹6.8 L/yr

Software Engineer
6 salaries
unlock blur

₹3.1 L/yr - ₹4.1 L/yr

Software Developer
6 salaries
unlock blur

₹3.5 L/yr - ₹10 L/yr

Senior Software Support Engineer
6 salaries
unlock blur

₹4.2 L/yr - ₹5 L/yr

Explore more salaries
Compare Teckinfo Solutions with

Ameyo

3.3
Compare

Ozonetel Communications

3.5
Compare

Voxco

4.6
Compare

Aavaz

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