Upload Button Icon Add office photos

Zinier

Compare button icon Compare button icon Compare

Filter interviews by

Zinier Sde1 Interview Questions and Answers

Updated 13 Mar 2024

Zinier Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Ayush Vaishnav

posted on 13 Mar 2024

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

(1 Question)

  • Q1. Implement map Stl in Javascript
  • Ans. 

    Implementing map STL in JavaScript involves creating a key-value pair data structure.

    • Create a Map class with methods like set, get, delete, and has.

    • Use an object to store key-value pairs.

    • Implement a hashing function to handle collisions.

    • Example: const myMap = new Map(); myMap.set('key', 'value'); console.log(myMap.get('key'));

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Zinier?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. System Design and Ds and algo questions

Sde1 Interview Questions Asked at Other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and Arra ... read more
asked in Park Plus
Q2. 1. What is a doubly-linked list? And real-world applications.
asked in Amazon
Q3. Given process IDs (pid) and parent process IDs (ppid), and a proc ... read more
Q4. Given a point and a circle, how would you determine if the point ... read more
asked in Amazon
Q5. Given an array, determine if there exists a subarray with a given ... read more

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Test was conducted in the evening time .It was an online test with remote-proctoring consisted of 2 coding questions and 20 MCQS .The environment was quite good on the day of the test.

  • Q1. 

    Balanced Sequence After Replacement

    Given a string of length 'N' containing only the characters: '[', '{', '(', ')', '}', ']'. At certain places, the character 'X' appears in place of any bracket. Your go...

  • Ans. 

    Determine if a valid balanced sequence can be achieved by replacing 'X's with suitable brackets.

    • Iterate through the string and keep track of the count of opening and closing brackets.

    • If at any point the count of closing brackets exceeds the count of opening brackets, return False.

    • If all 'X's can be replaced to form a valid balanced sequence, return True.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

This was technical+hr round
The interviewer was very friendly. He helped me in all questions.

  • Q1. 

    String Palindrome Verification

    Given a string, your task is to determine if it is a palindrome considering only alphanumeric characters.

    Input:

    The input is a single string without any leading or trailing...
  • Ans. 

    Check if a given string is a palindrome considering only alphanumeric characters.

    • Remove non-alphanumeric characters from the input string.

    • Convert the string to lowercase for case-insensitive comparison.

    • Compare characters from start and end of the string to determine if it is a palindrome.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteriaAbove 6 CGPAVeritas Technologies LLC interview preparation:Topics to prepare for the interview - Data Structures, Object Oriented programming concepts , Algorithms , Web development , Android developmentTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Communication is very important in interviews. So, Take mock interviews on DSA to understand your communication skills and improve your communication
Tip 2 : In the preparation phase, Try to cover as many standard problems as possible in each and every DSA topic.
Tip 3 : Prepare 2-3 good innovative projects so that there will be an opportunity to express our learning ability in various domains along with DSA and coding skills

Application resume tips for other job seekers

Tip 1 : Add at least 2 good projects with all the details mentioned such as the technologies used and sole purpose of the project
Tip 2 : Make sure to include your previous company projects (can be internship project as well) and the achievements made through those projects.
Tip 3 : Add your genuine achievements that are related to coding competitions and can be related to project domains
such as google summer of code.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before May 2021. There were 3 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 - Aptitude Test 

Mathematical thinking Analytical Thinking

Round 3 - HR 

(1 Question)

  • Q1. Career intro, Mathematics

Interview Preparation Tips

Topics to prepare for Vyapar Sales Executive interview:
  • Aptitude
  • Basic mathematics
  • Accounting
Interview preparation tips for other job seekers - Organisation is good learnings will be there

I applied via Naukri.com and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. My first question is tell me about yourself then they ask what you do after graduation. Then ask some technical question like oops concept and collections and map and some question in sql and jdbc also.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a product base MNC and it is good for fresher.

I appeared for an interview in Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. Questions related to Java Programming OOPS
  • Q2. Questions related to Internships

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes
Total Questions: 90

Round: Group Discussion
Duration: 25 minutes

Skills: Programming Skills In Any Language Like C, Object Oriented Programming (OOP) Basics, Data Structures And Algorithms, Operating Systems
College Name: NIT Raipur

I appeared for an interview in Dec 2016.

Interview Questionnaire 

7 Questions

  • Q1. Questions on linked list
  • Q2. Implement LRU
  • Ans. 

    LRU (Least Recently Used) is a caching algorithm that removes the least recently used item when the cache is full.

    • LRU uses a combination of a doubly linked list and a hash map.

    • The doubly linked list keeps track of the order of recently used items.

    • The hash map allows for efficient lookup of items in the cache.

    • When a new item is accessed, it is moved to the front of the list.

    • If the cache is full, the item at the end of t...

  • Answered by AI
  • Q3. Questions on C, c++
  • Q4. Questions on DBMS
  • Q5. Questions on Operating Systems
  • Q6. Tell all things that happen inside a system when we press 'k' on the notepad.
  • Ans. 

    Pressing 'k' on Notepad triggers a series of events including key press event, character insertion, and potential text manipulation.

    • When 'k' is pressed, a key press event is triggered

    • The key press event is captured by the Notepad application

    • The character 'k' is inserted at the current cursor position

    • If any text is selected, it may be replaced by the character 'k'

    • The cursor position is updated to the next position

    • If aut...

  • Answered by AI
  • Q7. Basic HR questions

Interview Preparation Tips

Round: Technical Interview
Tips: Prepare Data Structure and Algorithms well

Round: Technical Interview
Tips: Have decent knowledge of technical subjects.

Skills: Programming, Data Structures, Algorithm, Operating System Basics, Knowledge About Database Managements Systems
College Name: IIT Roorkee

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview before Nov 2019.

Interview Questionnaire 

1 Question

  • Q1. SQL questions based on joins and previous projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round pure technical
2nd round based on previous projects experienc
3rd HR round salary and all.

I applied via LinkedIn and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Advanced SQL, Python, ML and NLP.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with the basics

I applied via Recruitment Consultant and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How many clients you deal with at a time

Zinier Interview FAQs

How many rounds are there in Zinier Sde1 interview?
Zinier interview process usually has 1 rounds. The most common rounds in the Zinier interview process are Technical.

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Interview Questions from Similar Companies

Innovaccer Interview Questions
3.5
 • 85 Interviews
Cohesity Interview Questions
3.9
 • 81 Interviews
NoBrokerHOOD Interview Questions
3.1
 • 61 Interviews
Vyapar Interview Questions
3.5
 • 60 Interviews
Fleetx.io Interview Questions
3.6
 • 29 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
View all
Zinier Sde1 Salary
based on 9 salaries
₹5 L/yr - ₹15 L/yr
52% less than the average Sde1 Salary in India
View more details

Zinier Sde1 Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

1.0

Job security

3.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Technical Lead
28 salaries
unlock blur

₹24 L/yr - ₹34 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹8.5 L/yr - ₹22 L/yr

Sde1
9 salaries
unlock blur

₹5 L/yr - ₹15 L/yr

Software Developer
8 salaries
unlock blur

₹7.5 L/yr - ₹16 L/yr

Software Development Engineer
8 salaries
unlock blur

₹5 L/yr - ₹14.2 L/yr

Explore more salaries
Compare Zinier with

Intellect Design Arena

3.9
Compare

Cohesity

3.9
Compare

Celebal Technologies

3.1
Compare

NoBrokerHOOD

3.1
Compare
write
Share an Interview