Upload Button Icon Add office photos
Engaged Employer

i

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

CognitiveClouds Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

CognitiveClouds Java Developer Interview Questions and Answers

Updated 4 Sep 2024

CognitiveClouds Java Developer Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
No response

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

The HR who contacted me was polite and guided mt through the test, the mcq section was easy(13 questions, java, sql, springboot, RestAPI), but the coding platform (CodeJudge-Proctoring) they chose to give test was very bad, had multiple errors in it, No proper description and unclear input and output examples, type mismatch in the code, method which returns was int, which was irrelevant to check for a palindrome question where expected output was String(worst way to display ) which coding asks such ridicules way of displaying output, Very Unclear Output formatting, have spoken to the HR regarding the same as this was not them evaluating me, It was I finding out this stupid proctoring errors, Insufficient time to submit correcting the code.

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearly communicate with the HR while taking the test, as I was asked to take the test after leaving the meet and It was ridicules to take stress figuring out the assessment requirement.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

The coding test of 45 mins where one of the senior manager along with the HR joined the call. He asked core java theory questions , followed by 2 easy DSA questions which I solved sharing the screen , the interview went well and I did no mistakes. I was confident that I will get the HR call soon after , but they didn't reached out to me , and when I called the HR she said I was rejected in the coding round which makes no sense.

Interview Preparation Tips

Interview preparation tips for other job seekers - Even if your interview goes well don't expect much from this company , for me its a waste of time.

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions around oops concepts, spring and hibernate basics
  • Q2. What design pattern you used?
  • Ans. 

    I have used the Singleton design pattern in my Java projects.

    • Singleton pattern ensures that only one instance of a class is created and provides a global point of access to it.

    • It is useful when we want to limit the number of instances of a class to one.

    • Example: Creating a Logger class as a Singleton to ensure only one instance is used throughout the application.

  • Answered by AI
  • Q3. Java 8 features

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall difficulty was average

Skills evaluated in this interview

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic java concepts like collection frame work, exception handling

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics well, be confident, show you are flexible enough to learn

I applied via Company Website

Interview Questionnaire 

1 Question

  • Q1. Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Yes

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

Round 1 - Technical 

(1 Question)

  • Q1. 1 . Oops concept in detail 2 DBMS 3. Data base query
Round 2 - HR 

(1 Question)

  • Q1. Document verification

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers should be clear on basic concepts.
For experienced should be detailed knowledge on their domain.

I applied via Campus Placement and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is encapsulation ?
  • Ans. 

    Encapsulation is the process of hiding implementation details and providing access to only necessary information.

    • Encapsulation helps in achieving data abstraction and information hiding.

    • It allows for better control over data and prevents unauthorized access.

    • In Java, encapsulation is achieved through the use of access modifiers such as private, public, and protected.

    • For example, a class may have private variables that c...

  • Answered by AI
  • Q2. What is the meaning of string.
  • Ans. 

    A string is a sequence of characters used to represent text in programming.

    • Strings are often used for storing and manipulating text data.

    • In Java, strings are represented by the String class.

    • Strings can be concatenated using the + operator.

    • Strings are immutable, meaning they cannot be changed once created.

    • Examples of string literals include "hello world" and "42".

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - do not tell about salary expectations

Skills evaluated in this interview

I was interviewed in Jul 2017.

Interview Questionnaire 

6 Questions

  • Q1. What is autoboxing and unboxing
  • Ans. 

    Autoboxing is the automatic conversion of primitive data types to their corresponding object wrapper classes.

    • Autoboxing is useful when working with collections that require objects instead of primitives.

    • Example: int i = 5; Integer j = i; //autoboxing

    • Unboxing is the opposite of autoboxing, where an object of a wrapper class is converted back to its corresponding primitive type.

    • Example: Integer j = 5; int i = j; //unboxi

  • Answered by AI
  • Q2. What is typecasting UP AND DOWN
  • Ans. 

    Typecasting up and down refers to converting a variable of one data type to another data type of higher or lower precision.

    • Typecasting up involves converting a variable of lower precision to a variable of higher precision, such as converting an int to a double.

    • Typecasting down involves converting a variable of higher precision to a variable of lower precision, such as converting a double to an int.

    • Typecasting can resul...

  • Answered by AI
  • Q3. How do you iterate map
  • Ans. 

    To iterate a map in Java, use a for-each loop or an iterator.

    • Use the entrySet() method to get a set of key-value pairs

    • For-each loop: for(Map.Entry entry : map.entrySet())

    • Iterator: Iterator> iterator = map.entrySet().iterator();

    • Use hasNext() and next() methods to iterate through the map

  • Answered by AI
  • Q4. Types of synchronisation in java
  • Ans. 

    Types of synchronization in Java

    • Synchronized methods

    • Synchronized statements

    • ReentrantLock

    • Semaphore

    • CountDownLatch

  • Answered by AI
  • Q5. Access modifiers in method overriding
  • Ans. 

    Access modifiers in method overriding

    • Access modifiers in the overriding method cannot be more restrictive than the overridden method

    • The access modifier can be less restrictive or the same as the overridden method

    • Private methods cannot be overridden

    • Examples: public method can be overridden by public or protected method, but not by private method

  • Answered by AI
  • Q6. Covarient return type

Skills evaluated in this interview

I was interviewed in Jun 2017.

Interview Preparation Tips

Round: Technical Interview
Experience: They asked java basics,
what we wrote in resume will ask
about project
Tips: please prepare basics things

Interview Preparation Tips

Round: Test
Experience: I almost sove 130 question
Duration: 2 hours
Total Questions: 150

Round: Group Discussion
Experience: Problem Solving Algorithms
Duration: 3 hours

CognitiveClouds Interview FAQs

How many rounds are there in CognitiveClouds Java Developer interview?
CognitiveClouds interview process usually has 1 rounds. The most common rounds in the CognitiveClouds interview process are Coding Test.
How to prepare for CognitiveClouds Java Developer 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 CognitiveClouds. The most common topics and skills that interviewers at CognitiveClouds expect are Java, Hibernate, Spring, API and OOAD.

Tell us how to improve this page.

CognitiveClouds Java Developer Interview Process

based on 2 interviews

Interview experience

1
  
Bad
View more
CognitiveClouds Java Developer Salary
based on 4 salaries
₹3.8 L/yr - ₹8 L/yr
At par with the average Java Developer Salary in India
View more details
Software Engineer
65 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
42 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IOS Developer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CognitiveClouds with

TO THE NEW

3.7
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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