Upload Button Icon Add office photos

CIENTRA TECHSOLUTION

Compare button icon Compare button icon Compare

Filter interviews by

CIENTRA TECHSOLUTION Interview Questions and Answers

Updated 30 Nov 2024

CIENTRA TECHSOLUTION Interview Experiences

Popular Designations

7 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Difference between l,xl and exl
  • Ans. 

    l, xl, and exl are sizes used in clothing to indicate small, extra large, and extra extra large respectively.

    • l stands for large size in clothing.

    • xl stands for extra large size in clothing.

    • exl stands for extra extra large size in clothing.

  • Answered by AI
  • Q2. Well proximity effect
  • Q3. Previous work and project
  • Q4. Basic concepts latch up and antenna

Analog Layout Engineer Interview Questions asked at other Companies

Q1. Why are semiconductors used in electronics?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Diode,transistos.Basics of analog techniques like matching,shielding,antenna,latchup,emir fixes.

Analog Layout Engineer Interview Questions asked at other Companies

Q1. Why are semiconductors used in electronics?
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Recruitment Consulltant

Round 1 - Technical 

(1 Question)

  • Q1. Basic SV , UVM concepts and coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare basic very nicely

Verification Engineer Interview Questions asked at other Companies

Q1. How do you ensure no data loss happens in HW to SW communication?
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Nov 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Embedded C related questions
  • Q2. Data structure and algorithm questions
  • Q3. Embedded related Protocols
Round 2 - Coding Test 

Some coding scenarios related C programming language

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tricky snippet code
  • Q2. Previous project discussion
Round 4 - HR 

(1 Question)

  • Q1. CTC part discussed

Senior Embedded Software Engineer Interview Questions asked at other Companies

Q1. difference between SPI and I2c protocol 2. difference between structure and union 3. What is bitfied in c and how to define them 4. What is 16.,32,64 bit microconroller means 5. How to define structure
View answer (1)

CIENTRA TECHSOLUTION interview questions for popular designations

 RTL Design Engineer

 (2)

 Analog Layout Engineer

 (2)

 Software Engineer

 (1)

 Verification Engineer

 (1)

 Senior Embedded Software Engineer

 (1)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Coding Test 

Questions on array, string and linked list

Round 3 - Technical 

(3 Questions)

  • Q1. 1.Difference between structure and union
  • Ans. 

    Structure and union are both used to store different types of data, but they differ in memory allocation and usage.

    • Structure is a user-defined data type that allows storing different types of data in a single variable.

    • Union is also a user-defined data type that allows storing different types of data in a single variable, but it shares the same memory location for all its members.

    • In a structure, each member has its own ...

  • Answered by AI
  • Q2. 2.Tell about memory layout in c
  • Ans. 

    Memory layout in C refers to the organization of memory for variables and data structures.

    • Memory is divided into 3 sections: Text segment, Data segment, and Heap segment.

    • Text segment contains the executable code.

    • Data segment contains global and static variables.

    • Heap segment contains dynamically allocated memory.

    • Stack segment contains function calls and local variables.

  • Answered by AI
  • Q3. Stack, heap, code, data

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on C and your projects did in previous organisation

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 (203)

RTL Design Engineer Interview Questions & Answers

user image suneetha jami

posted on 27 Jun 2021

Interview Questionnaire 

1 Question

  • Q1. Logic gates implementation using mux, definition of setup time and hold time, CDC synchronizers, calculation of setup time for given circuit, experience related questions

RTL Design Engineer Interview Questions asked at other Companies

Q1. Logic gates implementation using Mux, De-Mux.
View answer (1)

I applied via Recruitment Consultant and was interviewed in Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions are mentioned in the Interview advice

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview will be in 3 rounds. 1st one telephonic.
2nd & 3 rd will be Skype Round or F2F.
The topics which you should have knowledge on will be indepth basics of STA, how verilog code is converted into logic, and what could be implemented for so and so verilog code.
Knowledge of CDC and techniques used in CDC,
Techniques used to handle setup and hold time violation.
These things are necessary but not sufficient.

RTL Design Engineer Interview Questions asked at other Companies

Q1. Logic gates implementation using Mux, De-Mux.
View answer (1)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I applied via Walk-in and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is Excel what is vlookup what is your strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and bold

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

CIENTRA TECHSOLUTION Interview FAQs

How many rounds are there in CIENTRA TECHSOLUTION interview?
CIENTRA TECHSOLUTION interview process usually has 2 rounds. The most common rounds in the CIENTRA TECHSOLUTION interview process are Technical, Coding Test and One-on-one Round.
How to prepare for CIENTRA TECHSOLUTION 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 CIENTRA TECHSOLUTION. The most common topics and skills that interviewers at CIENTRA TECHSOLUTION expect are C++, Firmware, C, Embedded C and Linux Kernel.
What are the top questions asked in CIENTRA TECHSOLUTION interview?

Some of the top questions asked at the CIENTRA TECHSOLUTION interview -

  1. 1.Difference between structure and un...read more
  2. 2.Tell about memory layout i...read more
  3. Difference between l,xl and ...read more

Recently Viewed

INTERVIEWS

Molex

No Interviews

INTERVIEWS

Posist Technologies

No Interviews

INTERVIEWS

Hapag-Lloyd

No Interviews

INTERVIEWS

Hapag-Lloyd

No Interviews

INTERVIEWS

AdeptChip Services

No Interviews

JOBS

Hapag-Lloyd

No Jobs

INTERVIEWS

CV DESIGNERS INDIA

No Interviews

INTERVIEWS

Basecamp Startups

No Interviews

INTERVIEWS

AltCognito Systems

No Interviews

DESIGNATION

Tell us how to improve this page.

CIENTRA TECHSOLUTION Interview Process

based on 5 interviews

Interview experience

3.6
  
Good
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
HCL Infosystems Interview Questions
3.9
 • 140 Interviews
View all

CIENTRA TECHSOLUTION Reviews and Ratings

based on 81 reviews

3.6/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

3.3

Salary

3.2

Job security

3.4

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 81 Reviews and Ratings
Senior Software Engineer
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Verification Engineer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Physical Design Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CIENTRA TECHSOLUTION with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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