Upload Button Icon Add office photos
Engaged Employer

i

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

ClaySys Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 115 Reviews

Filter interviews by

ClaySys Junior .NET Developer Interview Questions and Answers

Updated 7 Aug 2024

ClaySys Junior .NET Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Oops interview questions
  • Q2. SQL based interview questions
Round 2 - Coding Test 

Reverse string ,palindrome,dsa problem

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Java related questions asked
  • Q2. System design
Round 3 - Ghosted 

(1 Question)

  • Q1. Ghosted by recuriter
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Socail Media affecting

Interview Preparation Tips

Interview preparation tips for other job seekers - rf
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain process for SDE
  • Ans. 

    The process for Software Development Engineer involves planning, designing, coding, testing, and deploying software solutions.

    • Gather requirements from stakeholders

    • Create a design based on requirements

    • Write code to implement the design

    • Test the software for bugs and issues

    • Deploy the software for users to use

    • Iterate on feedback and make improvements

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Online test which consists of java, angular, micro services related questions

Round 2 - Technical 

(1 Question)

  • Q1. Difference between static and default methods
  • Ans. 

    Static methods belong to the class itself, while default methods are part of an interface in Java.

    • Static methods can be called without creating an instance of the class, while default methods are used to provide a default implementation in interfaces.

    • Static methods are defined using the 'static' keyword, while default methods are defined using the 'default' keyword in Java.

    • Static methods cannot be overridden in subclas...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
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 tips
Round 2 - HR 

(1 Question)

  • Q1. General questions
Round 3 - Technical 

(1 Question)

  • Q1. Deep details regarding the application
Round 4 - One-on-one 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

It placed in hackerRank.question difficulty level was medium.

Round 3 - Technical 

(1 Question)

  • Q1. The difficulty depends upon who is taking your interview. But mostly asked questions were related to string and hashmap.
Round 4 - HR 

(1 Question)

  • Q1. It was more like a little bit technical and hr round. Mostly talk about personal profile like education,family background, hobbies and etc.

I applied via Naukri.com and was interviewed in Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. What is an object in java ?
  • Ans. 

    An object in Java is an instance of a class that encapsulates data and behavior.

    • Objects have state and behavior

    • They are created from classes

    • They can be used to represent real-world entities or concepts

    • Objects can interact with each other through method calls

  • Answered by AI
  • Q2. What is method overloading?
  • Ans. 

    Method overloading is when multiple methods have the same name but different parameters.

    • Method overloading allows for more flexibility in method calls.

    • The methods must have different parameters, such as different data types or different numbers of parameters.

    • Example: public void print(int num) and public void print(String str)

    • Overloading constructors is also common in Java.

  • Answered by AI
  • Q3. Creating multiple methods in a class with a same name and different arguments. The argument must be different type and length
  • Ans. 

    Method overloading allows creating multiple methods with the same name but different arguments.

    • Method signature must differ in number, type, or order of parameters

    • Return type can be different but not the only difference

    • Example: public void print(int num), public void print(String str), public void print(int[] arr)

    • Overloading improves code readability and reusability

  • Answered by AI
  • Q4. What is inheritance in java?
  • Ans. 

    Inheritance in Java allows a class to inherit properties and methods from another class.

    • Inheritance is achieved using the 'extends' keyword.

    • The class that is being inherited from is called the superclass or parent class.

    • The class that inherits from the superclass is called the subclass or child class.

    • Subclasses can access the public and protected members of the superclass.

    • Inheritance promotes code reusability and allow...

  • Answered by AI
  • Q5. What is Type casting in java ?
  • Ans. 

    Type casting in Java is the process of converting one data type into another.

    • Type casting can be done implicitly or explicitly.

    • Implicit type casting is done automatically by the compiler when there is no loss of data.

    • Explicit type casting is done manually by the programmer when there is a possibility of data loss.

    • Type casting is useful when we want to use a variable of one data type in an expression or assignment of an...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Who is ur favourite cricket palyer ?
  • Ans. Ms dhoni because he is good captain and best finisher and world best wicket keeper
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Tech Vedika Java Developer interview:
  • In javaa basic programs, oops, s
Interview preparation tips for other job seekers - Ther is no critical rounds there was a simple interviews

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. They are asking Inheritance program
  • Q2. How to call rest api's
  • Ans. 

    To call REST APIs, use HTTP methods like GET, POST, PUT, DELETE with the API endpoint URL.

    • Use a HTTP client library like Apache HttpClient or OkHttp

    • Pass any required parameters in the request body or as query parameters

    • Handle the response returned by the API

    • Add appropriate headers like Authorization or Content-Type if required

  • Answered by AI
  • Q3. Using with hitting postman

Interview Preparation Tips

Interview preparation tips for other job seekers - That interview is technical and it is 1 hour test.finally I got the job

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jun 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. 1. Ask all questions related laravel
  • Q2. 1. Ask questions related database mysql

ClaySys Interview FAQs

How many rounds are there in ClaySys Junior .NET Developer interview?
ClaySys interview process usually has 2 rounds. The most common rounds in the ClaySys interview process are One-on-one Round and Coding Test.
What are the top questions asked in ClaySys Junior .NET Developer interview?

Some of the top questions asked at the ClaySys Junior .NET Developer interview -

  1. oops interview questi...read more
  2. SQL based interview questi...read more

Tell us how to improve this page.

ClaySys Junior .NET Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.7
 • 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 793 Interviews
HCL Infosystems Interview Questions
3.9
 • 141 Interviews
View all
Software Engineer
180 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Software Analyst
61 salaries
unlock blur

₹1 L/yr - ₹5.3 L/yr

Softwaretest Engineer
44 salaries
unlock blur

₹1.5 L/yr - ₹4.3 L/yr

RPA Developer
39 salaries
unlock blur

₹1.2 L/yr - ₹5 L/yr

Senior Software Engineer
34 salaries
unlock blur

₹4.4 L/yr - ₹11.4 L/yr

Explore more salaries
Compare ClaySys with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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