Upload Button Icon Add office photos

Filter interviews by

CogniTensor Technology Interview Questions and Answers

Updated 19 Jun 2024

CogniTensor Technology Interview Experiences

Popular Designations

3 interviews found

Interview Questionnaire 

5 Questions

  • Q1. What is axios and why you used in your project
  • Q2. React fundamental
  • Q3. Javascript fundamental
  • Q4. Question based on projects
  • Q5. Question based on real world scenario

Fullstack Developer Intern Interview Questions asked at other Companies

Q1. Shortest Path in an Unweighted Graph The city of Ninjaland is represented as an unweighted graph with houses and roads. There are 'N' houses numbered 1 to 'N', connected by 'M' bidirectional roads. A road connecting two houses 'X' and 'Y' a... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Via email using link and craeet crud app assignment

Round 2 - Technical 

(2 Questions)

  • Q1. Class compoennet functional componnet
  • Ans. 

    Class components are ES6 classes that extend from React.Component and have a render method. Functional components are simple functions that take props as an argument and return JSX.

    • Class components are used for stateful components and have lifecycle methods like componentDidMount, componentDidUpdate, etc.

    • Functional components are used for stateless components and are simpler and easier to read.

    • Example: Class component ...

  • Answered by AI
  • Q2. Hooks in detail
  • Ans. 

    Hooks are functions that allow developers to use state and other React features in functional components.

    • Hooks were introduced in React 16.8 to allow state and lifecycle methods in functional components.

    • useState() is a hook that allows functional components to use state.

    • useEffect() is a hook that allows functional components to perform side effects.

    • Custom hooks can be created to reuse logic across multiple components.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good

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)

Interview Questionnaire 

1 Question

  • Q1. I was asked if I am available for a 6 month unpaid internship.

Data Science Intern Interview Questions asked at other Companies

Q1. Rotate Matrix by 90 Degrees Problem Statement Given a square matrix 'MATRIX' of non-negative integers, rotate the matrix by 90 degrees in an anti-clockwise direction using only constant extra space. Input: The first line of input contains a... read more
View answer (1)

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Speak 5 minutes on Delhi metro, Women empowerment, Facebook, Social media, Politics, motivation, trending Etc.
  • Q2. Tell me about your previous day that what you have done from morning to evening?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident because if you are not confident in front of the interviewed then you can't reply properly to any question of him, You should have to be confident.

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. It's was basic testing questios, specific to selenium and Java.
  • Q2. Explain framework
  • Ans. 

    A framework is a set of guidelines, standards, and tools used to develop software applications.

    • A framework provides a structure for developers to build upon

    • It includes pre-written code and libraries to simplify development

    • Frameworks can be specific to a programming language or platform

    • Examples include React for web development and TensorFlow for machine learning

  • Answered by AI
  • Q3. Basic java programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared, basically on manual testing, Selenium and Java

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Basically in any interview most common question is Biodata, next the things included in resume..... nothing more than that
  • Q2. Literally my answer is empty.....I started saying out of box so that the interviewer might get impressed but end of day I got rejected...😂😂😂
  • Q3. Not only these I faced more than 79 interview....not less than 250-300 rounds....but none has picked me

I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Swap two number with and without temporary variable
  • Ans. 

    Swap two numbers with and without temporary variable

    • Without temporary variable: Use addition and subtraction

    • With temporary variable: Use a third variable to store the value of one of the numbers

    • Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;

    • Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be afraid. It companies take interview to select you. And if you are selected in this company you are not lucky enough so try hard.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Normal Accounts related question like describe Depreciation, ammortization, and what do you mean by Reporting (RTR Activity).
  • Q2. Some interviewer may ask what do you mean by EBITDA as in my case be prepared for this type of bouncers as well .
  • Q3. Then they will ask you your previous work related question. In my case they ask if there is GL to SL mismatch what will you do to solve it.
  • Q4. Then why do we do depreciation of companies what is the need for it
  • Ans. 

    Depreciation is necessary to allocate the cost of an asset over its useful life.

    • Depreciation helps in matching the cost of an asset with the revenue it generates.

    • It allows for the recognition of the wear and tear, obsolescence, and loss of value of assets over time.

    • Depreciation expense reduces taxable income, resulting in tax savings for companies.

    • It helps in determining the true profitability and financial position of...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident remember it's not that the interviewer knows everything but be convincing don't say blah blah if you don't know anything .
Read the basics and if you are experienced be sure to explain every detail of how you used to do work.
Best of luck.

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What is second level cache?How to implement second level cache?How to optimize sql query?what are solid principles?
  • Ans. 

    Second level cache is a caching mechanism used to improve performance by storing frequently accessed data in memory.

    • Second level cache is implemented at the application level and can be configured using frameworks like Hibernate.

    • To optimize SQL queries, one can use indexes, avoid using SELECT *, and use JOINs instead of subqueries.

    • SOLID principles are a set of design principles for writing maintainable and scalable cod...

  • Answered by AI
  • Q2. Mostly FAQ but somewhat in depth?
  • Q3. How to deploy application in aws?
  • Ans. 

    To deploy an application in AWS, you need to create an EC2 instance, configure security groups, install necessary software, and upload your application code.

    • Create an EC2 instance in the desired region and select the appropriate instance type

    • Configure security groups to allow traffic to and from the instance

    • Install necessary software and dependencies on the instance

    • Upload your application code to the instance

    • Start the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic faq but in depth,Interview level is easy to medium.They will ask only theory .No practical algorithm test.

Skills evaluated in this interview

I applied via Referral and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About pointers and their types

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy one so we can take with only basic knowledge

CogniTensor Technology Interview FAQs

How many rounds are there in CogniTensor Technology interview?
CogniTensor Technology interview process usually has 2 rounds. The most common rounds in the CogniTensor Technology interview process are Coding Test and Technical.
How to prepare for CogniTensor Technology 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 CogniTensor Technology. The most common topics and skills that interviewers at CogniTensor Technology expect are Python, Full Stack, AWS, Node.Js and React.Js.
What are the top questions asked in CogniTensor Technology interview?

Some of the top questions asked at the CogniTensor Technology interview -

  1. class compoennet functional compon...read more
  2. hooks in det...read more
  3. Question based on real world scena...read more

Tell us how to improve this page.

CogniTensor Technology Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.7k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Amazon Interview Questions
4.0
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
View all

CogniTensor Technology Reviews and Ratings

based on 10 reviews

2.4/5

Rating in categories

2.3

Skill development

2.6

Work-life balance

2.2

Salary

2.6

Job security

1.9

Company culture

1.8

Promotions

2.0

Work satisfaction

Explore 10 Reviews and Ratings
Data Analyst
9 salaries
unlock blur

₹2.2 L/yr - ₹4.8 L/yr

Data Scientist
6 salaries
unlock blur

₹4 L/yr - ₹12.9 L/yr

Full Stack Developer
6 salaries
unlock blur

₹3.6 L/yr - ₹9.5 L/yr

Front end Developer
5 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

HR Manager
4 salaries
unlock blur

₹4.6 L/yr - ₹6 L/yr

Explore more salaries
Compare CogniTensor Technology with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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