Upload Button Icon Add office photos
Engaged Employer

i

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

Tescra Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tescra Interview Questions and Answers

Updated 14 Jun 2024

Tescra Interview Experiences

Popular Designations

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2023. 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 - Aptitude Test 

Technical questions with some apptitude

Round 3 - Technical 

(1 Question)

  • Q1. What is Api testing? Testing the interface of two different applications w. R. T. To their security performance
  • Ans. 

    API testing is a type of software testing that involves testing APIs to ensure they meet functional, performance, and security requirements.

    • API testing involves testing the functionality of APIs by sending requests and verifying responses

    • API testing can be done manually or using automated tools

    • API testing includes testing for performance, security, and reliability

    • API testing is important for ensuring that APIs work as ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

Skills evaluated in this interview

Manual Testing Interview Questions asked at other Companies

Q1. A man have 3 things [grain,chicken and fox] and he has to cross a river and he can carry only one thing at a time. And there are some conditions: 1.He can not leave grain and chicken at a place. 2.He can not leave chicken and fox together. ... read more
View answer (3)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Coding question like find duplicates in array
  • Q2. Core question such as oops, CN, dbms

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 (42)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Aws and Devops technical questions

Senior Devops Engineer Interview Questions asked at other Companies

Q1. What are Terraform life cycles ? and how do we use them ?
View answer (3)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2023. There were 5 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 - Coding Test 

Basic coding and mcq test

Round 3 - Technical 

(1 Question)

  • Q1. Oops, c#, DataStructures and Algo
Round 4 - One-on-one 

(1 Question)

  • Q1. Project details
Round 5 - HR 

(1 Question)

  • Q1. Employment details

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, watch questpond videos

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Tescra interview questions for popular designations

 Software Developer

 (1)

 Senior Devops Engineer

 (1)

 Senior Software Engineer

 (1)

 Manual Testing

 (1)

Interview questions from similar companies

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

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

Round 1 - Aptitude Test 

It was online 60min test.

Round 2 - Aptitude Test 

It was offline 30 min test.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,dbms,css,html,dsa,java.
  • Q2. It was very friendly .

Interview Preparation Tips

Topics to prepare for Apmosys Technologies Software Developer interview:
  • Java
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic java questions along with aptitude questions.

Round 2 - Technical 

(1 Question)

  • Q1. Basic oops concept, java functionalities, spring framework.
Round 3 - HR 

(1 Question)

  • Q1. Basic Hr questions, when you can join, expected ctc...
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 principles of oops?
  • Ans. 

    The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components within a class, protecting the data.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class.

  • Answered by AI
  • Q2. What is the difference between string buffer and string builder?
  • Ans. 

    String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.

    • String buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String builder is not synchronized, providing better performance in single-threaded applications.

    • String builder is faster than string buffer due to lack of synchronization overhead.

    • Example: StringBuffer sb = new StringBuffer(); Str

  • Answered by AI
  • Q3. Why strings are immutable?
  • Ans. 

    Strings are immutable in order to ensure data integrity and security.

    • Immutable strings prevent accidental data modification, ensuring data integrity.

    • Immutable strings enhance security by preventing unauthorized access or tampering.

    • Immutable strings allow for more efficient memory management and optimization.

    • Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.

  • Answered by AI
  • Q4. What are the different types of exception in java?
  • Ans. 

    There are two types of exceptions in Java: checked exceptions and unchecked exceptions.

    • Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.

    • Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.

    • Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.

    • Examples of unchecked exceptions include...

  • Answered by AI
  • Q5. Explain linear search algorithm.
  • Ans. 

    Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.

    • Iterate through each element in the list

    • Compare the current element with the target value

    • Return the index if a match is found, otherwise return -1

  • Answered by AI
  • Q6. Difference between JDK jvm and jre
  • Ans. 

    JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.

    • JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.

    • JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.

    • JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.

    • JDK is used for developing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the skills which you are mentioned in your cv.

Skills evaluated in this interview

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - Technical 

(1 Question)

  • Q1. 1 Project Explanation 2 SDLC & STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile
  • Ans. 

    Interview questions for Software Engineer position

    • Project explanation should include details on the project's purpose, scope, and technologies used

    • SDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively

    • Smoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity tes...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. All basic HR questions and salary discussion.

I applied via Recruitment Consulltant and was interviewed in Oct 2021. 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 

(1 Question)

  • Q1. Completely on java
Round 3 - Technical 

(1 Question)

  • Q1. Asked java questiona

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Tell me if you have any past experience
Round 3 - HR 

(1 Question)

  • Q1. Technical Question and basic knowledge in post which you are applied

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid while speaking to HR and be confident while answering asked questions

Tescra Interview FAQs

How many rounds are there in Tescra interview?
Tescra interview process usually has 2-3 rounds. The most common rounds in the Tescra interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Tescra 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 Tescra. The most common topics and skills that interviewers at Tescra expect are Data Management and Javascript.
What are the top questions asked in Tescra interview?

Some of the top questions asked at the Tescra interview -

  1. What is Api testing? Testing the interface of two different applications w. R. ...read more
  2. Coding question like find duplicates in ar...read more
  3. Core question such as oops, CN, d...read more

Tell us how to improve this page.

Tescra Interview Process

based on 6 interviews

Interview experience

2.8
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k 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
 • 791 Interviews
View all

Tescra Reviews and Ratings

based on 32 reviews

3.9/5

Rating in categories

3.8

Skill development

3.8

Work-life balance

3.8

Salary

3.6

Job security

3.7

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 32 Reviews and Ratings
Senior Software Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

android Framework Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Information Technology Recruiter
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Architect
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Tescra with

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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