Upload Button Icon Add office photos
Engaged Employer

i

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

Nexivo Consulting Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nexivo Consulting UI Developer Interview Questions and Answers

Updated 24 Apr 2023

Nexivo Consulting UI Developer Interview Experiences

1 interview found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 24 Apr 2023

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

I applied via Internshala and was interviewed before Apr 2022. There were 4 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. Questions on frontend tech like html css js bootstrap
Round 3 - Assignment 

Build a template given in the pic with responsive using html css

Round 4 - One-on-one 

(1 Question)

  • Q1. Manager round checks your presence of mind and how you handle pressure ,things u dont know

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain steps of SDLC?
  • Ans. 

    SDLC stands for Software Development Life Cycle, which is a process used by software developers to design, develop, and test software applications.

    • 1. Planning: Define the scope, requirements, and objectives of the project.

    • 2. Analysis: Gather and analyze requirements from stakeholders.

    • 3. Design: Create a detailed design of the software based on requirements.

    • 4. Implementation: Develop the software according to the design...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Sep 2023. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Medium level coding questions

Round 3 - Group Discussion 

Topic related to the domain is the main focus, communication is checked.

Round 4 - Technical 

(1 Question)

  • Q1. Here the experts going to ask the questions and purely technical questions.
Round 5 - HR 

(1 Question)

  • Q1. The HR Round is the easiest one to tackle they would try to know your personality.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Timea and work,time and distance

Round 2 - Coding Test 

Mettl , easyrotate array , reverse strign

Interview Preparation Tips

Interview preparation tips for other job seekers - keep on working
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 

Its very good the give a scenario and according to that you have to develop a project

Round 3 - Technical 

(2 Questions)

  • Q1. What is inhertance and its type
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • It allows the new class to inherit the properties and methods of the existing class.

    • There are 4 types of inheritance: Single, Multiple, Hierarchical, and Multilevel.

    • Example: A class 'Car' can inherit properties and methods from a class 'Vehicle'.

  • Answered by AI
  • Q2. What is Polymorpism and thier type
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. There are two types: compile-time and runtime polymorphism.

    • Compile-time polymorphism is achieved through function overloading and operator overloading.

    • Runtime polymorphism is achieved through virtual functions and function overriding.

    • Polymorphism allows for code reusability and flexibility in object-oriented programming.

    • Example of compile-time polymorphism...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare and trust yourself, practice with coding
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 were 2 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 

(2 Questions)

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

I applied via E-mail and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Process of job I'm going to do need same guide from you mam
Round 2 - Technical 

(1 Question)

  • Q1. How to install links so I can go ahead start working hard
  • Ans. 

    To install links, you need to follow a few simple steps.

    • Determine the type of link you want to install (e.g. hyperlink, internal link, external link)

    • Highlight the text or image you want to turn into a link

    • Click on the link icon in your editing software or use the HTML code

    • Insert the URL or file path for the link

    • Test the link to make sure it works properly

  • Answered by AI

Interview Preparation Tips

Topics to prepare for India Data Entry Services Consultant interview:
  • Computer
  • Data Entry
Interview preparation tips for other job seekers - Thank you so much waiting for best response

Interview Questionnaire 

1 Question

  • Q1. Questions on the concept of oops and SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is easy to solve the Aptitude question and some identifying outputs of program.

Round 2 - HR 

(2 Questions)

  • Q1. What is class?and write a logic for object in a class.
  • Ans. 

    A class is a blueprint for creating objects in object-oriented programming.

    • A class defines the properties and behaviors of objects.

    • An object is an instance of a class.

    • Example: Class 'Car' can have properties like 'color' and 'model', and behaviors like 'drive' and 'stop'.

  • Answered by AI
  • Q2. 1.swap two numbers without using temp variable 2.Reverse the string.
  • Ans. 

    Swap two numbers without using temp variable and reverse a string without using built-in functions.

    • To swap two numbers without using temp variable, use bitwise XOR operation.

    • To reverse a string without using built-in functions, use two pointers approach.

    • Example for swapping numbers: a = a ^ b; b = a ^ b; a = a ^ b;

    • Example for reversing a string: use two pointers to swap characters from start and end of the string.

  • Answered by AI
Round 3 - Coding Test 

Now, I am preparing for the third round.
So, I don't know the Coding Question.

Interview Preparation Tips

Topics to prepare for ClaySys Software Developer interview:
  • Java, SQL
Interview preparation tips for other job seekers - What you have given in your Resume that will be your Question.
Must Strong in Basics of Java and SQL commands.

Nexivo Consulting Interview FAQs

How many rounds are there in Nexivo Consulting UI Developer interview?
Nexivo Consulting interview process usually has 4 rounds. The most common rounds in the Nexivo Consulting interview process are Resume Shortlist, Technical and Assignment.

Tell us how to improve this page.

Nexivo Consulting UI Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 140 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
DynPro Interview Questions
3.8
 • 18 Interviews
AIT Global Interview Questions
3.4
 • 13 Interviews
Greytrix Interview Questions
3.9
 • 11 Interviews
Bangmetric Interview Questions
3.6
 • 10 Interviews
View all
Business Analyst
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Web Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Lead
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Zoho Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Nexivo Consulting with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

DynPro

3.8
Compare

ClaySys

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