Upload Button Icon Add office photos
Engaged Employer

i

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

Nyx Wolves Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nyx Wolves Interview Questions and Answers

Updated 13 Feb 2024

Nyx Wolves Interview Experiences

Popular Designations

2 interviews found

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

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Develop application Based on mern stack on call
  • Ans. 

    Develop an application based on the MERN stack on call.

    • MERN stack includes MongoDB, Express.js, React, and Node.js.

    • Use MongoDB as the database to store data.

    • Use Express.js as the backend framework to handle HTTP requests and responses.

    • Use React for the frontend to create a user interface.

    • Use Node.js as the runtime environment for server-side JavaScript.

    • Ensure the application is responsive and follows best practices for

  • Answered by AI
  • Q2. Basic java questions

Skills evaluated in this interview

Mern Full Stack Developer Interview Questions asked at other Companies

Q1. What is the way to save large files (e.g. photos) into MongoDB database.
View answer (2)

I applied via LinkedIn and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Assignment 

Build Blog Website(add, edit, delete) using MERN

Round 2 - Technical 

(1 Question)

  • Q1. About previous projects
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Nyx Wolves Mern Stack Developer interview:
  • Javascript
Interview preparation tips for other job seekers - Be confident. Answer the questions honestly

Mern Stack Developer Interview Questions asked at other Companies

Q1. Middle of a Linked List You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list. If there is an odd number of elements, return the middle element. If there are an even ... read more
View answer (1)

Interview questions from similar companies

Intern Interview Questions & Answers

BYJU'S user image Anonymous

posted on 23 Jul 2021

I applied via Indeed and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are okay with traveling
  • Q2. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was a discussion with the manager

I was interviewed before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I was interviewed before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

I applied via Recruitment Consultant and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Why should we hire you?
  • Q2. Please tell me about the machine learning projects you have done
  • Ans. 

    I have worked on several machine learning projects, including image recognition and natural language processing.

    • Developed an image recognition model using convolutional neural networks

    • Implemented a natural language processing algorithm for sentiment analysis

    • Collaborated on a recommendation system using collaborative filtering

    • Applied machine learning techniques to predict customer churn in a telecom company

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Because I feel I have the skills and expertise for the position I have applied for. Also, be honest, and if you dont know something say that you are unaware but will learn the subject in the due course of time.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Question was moderate.based on logical reasoning and math.

Round 2 - Coding Test 

Coding test question based on sql and python.

Interview Preparation Tips

Interview preparation tips for other job seekers - if u have good knowledge on python ,machine learning and sql, then u can easily crack the exam.

I applied via LinkedIn and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. DS and algorithm questions
Round 2 - Technical 

(1 Question)

  • Q1. IOS /Skillset questions some tricky questions
Round 3 - HR 

(1 Question)

  • Q1. Personality and Compensation discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Study fundamentals of your profile/domain

I applied via LinkedIn and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Difference between var, let, const.
  • Ans. 

    var, let, and const are all used to declare variables in JavaScript, but they have different scoping rules and behaviors.

    • var has function scope and can be redeclared and reassigned

    • let has block scope and can be reassigned but not redeclared

    • const has block scope and cannot be reassigned or redeclared

    • Use const for values that won't change, let for values that will, and avoid var

  • Answered by AI
  • Q2. Explain CSS box model. Do padding and margin apply to inline elements?
  • Ans. 

    CSS box model defines the layout of elements on a webpage. Padding and margin can apply to block-level elements but not to inline elements.

    • CSS box model consists of content, padding, border, and margin around an element.

    • Padding adds space inside the border of an element.

    • Margin adds space outside the border of an element.

    • Padding and margin can apply to block-level elements like <div> but not to inline elements lik

  • Answered by AI
  • Q3. Difference between arrow functions and regular ones.
  • Ans. 

    Arrow functions are shorter syntax for writing function expressions.

    • Arrow functions do not have their own 'this' keyword.

    • Arrow functions cannot be used as constructors.

    • Arrow functions do not have the 'arguments' object.

    • Arrow functions are more concise and easier to read.

    • Regular functions are better for methods and constructors.

  • Answered by AI
  • Q4. How does JavaScript asynchronous model work
  • Ans. 

    JavaScript asynchronous model allows non-blocking code execution by using callbacks and promises.

    • JavaScript uses an event loop to handle asynchronous operations.

    • Callbacks are functions passed as arguments to other functions and executed when the operation is complete.

    • Promises are objects that represent the eventual completion or failure of an asynchronous operation.

    • Async/await is a newer syntax that allows writing asyn...

  • Answered by AI
Round 2 - Technical 

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough in HTML DOM traversal concepts, CSS box model and vanilla Javascript fundamentals like closure,

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Google sheet
  • Q2. Sql

Interview Preparation Tips

Interview preparation tips for other job seekers - learn google sheet and sql basic formulas

Nyx Wolves Interview FAQs

How many rounds are there in Nyx Wolves interview?
Nyx Wolves interview process usually has 2 rounds. The most common rounds in the Nyx Wolves interview process are Assignment, Technical and HR.
How to prepare for Nyx Wolves 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 Nyx Wolves. The most common topics and skills that interviewers at Nyx Wolves expect are Android, GIT, HTML, JSON and Javascript.
What are the top questions asked in Nyx Wolves interview?

Some of the top questions asked at the Nyx Wolves interview -

  1. develop application Based on mern stack on c...read more
  2. basic java questi...read more

Tell us how to improve this page.

Nyx Wolves Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Whitehat jr Interview Questions
3.4
 • 262 Interviews
Unacademy Interview Questions
3.0
 • 206 Interviews
upGrad Interview Questions
3.7
 • 198 Interviews
HCL Infosystems Interview Questions
3.9
 • 140 Interviews
Simplilearn Interview Questions
3.2
 • 101 Interviews
Testbook.com Interview Questions
3.6
 • 99 Interviews
Toppr Interview Questions
3.4
 • 64 Interviews
MeritNation Interview Questions
3.6
 • 7 Interviews
Vedant Interview Questions
4.2
 • 1 Interview
View all

Nyx Wolves Reviews and Ratings

based on 27 reviews

4.9/5

Rating in categories

4.8

Skill development

4.8

Work-life balance

4.9

Salary

4.8

Job security

4.8

Company culture

4.9

Promotions

4.9

Work satisfaction

Explore 27 Reviews and Ratings
Mern Stack Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HR Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Full Stack Web Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Nyx Wolves with

Whitehat jr

3.4
Compare

BYJU'S

3.1
Compare

upGrad

3.7
Compare

Unacademy

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