Upload Button Icon Add office photos

Filter interviews by

Sylcon Interview Questions and Answers

Updated 6 Sep 2023

Sylcon Interview Experiences

2 interviews found

Accountant Interview Questions & Answers

user image Anonymous

posted on 6 Sep 2023

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 2 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 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What made you to consider for this role
  • Q3. What makes you different from other candidates

Accountant Interview Questions asked at other Companies

Q1. What journal is made when purchase requisition is created
View answer (24)

Accountant Interview Questions & Answers

user image Anonymous

posted on 16 Mar 2022

I applied via Walk-in

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 - Interview done by owner only 

(1 Question)

  • Q1. Personal questions only

Interview Preparation Tips

Interview preparation tips for other job seekers - Similer feild experience only looking by this firm

Abuse talk by owner

Accountant Interview Questions asked at other Companies

Q1. What journal is made when purchase requisition is created
View answer (24)

Jobs at Sylcon

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. TECHNICAL LINE, MECHANICAL BASIC AND PCB BOARD AND PLC PANEL
  • Q2. NON-TECHNICAL LINE AND MATHS BASIC AND VOLTAGE LINE AC OR DC LINE
Round 2 - One-on-one 

(2 Questions)

  • Q1. MY TECHNICAL SKILLS, MY POSITIVE MIND, HOW GROUP SALES AND SERVICE
  • Q2. MAINTENANCE WORK, AMC FORM,
Round 3 - HR 

(2 Questions)

  • Q1. CURRENT CTC PRE ANNUM
  • Ans. 

    My current CTC pre annum is $80,000.

    • My current CTC pre annum is $80,000

    • I am currently earning $80,000 per annum

    • My current annual salary is $80,000

  • Answered by AI
  • Q2. EXPERT CTC PER ANNAM

Interview Preparation Tips

Interview preparation tips for other job seekers - GET SMART WORK TECHNICAL OR NON-TECHNICAL IT HELPS YOUR HIGH POSITION
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Job responsibility
  • Q2. Current job description
Round 2 - One-on-one 

(2 Questions)

  • Q1. KRA &KPI about current job
  • Q2. Responsibility of current job
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2024. 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 - HR 

(2 Questions)

  • Q1. Profile interview
  • Q2. What are the key performance indicators (KPIs) for marketing and the role of marketing communications (Marcom)?
  • Ans. 

    KPIs for marketing include metrics like ROI, lead generation, brand awareness. Marcom plays a key role in achieving these KPIs.

    • Key performance indicators for marketing include ROI, lead generation, customer acquisition cost, customer lifetime value, brand awareness, and conversion rates.

    • Marketing communications (Marcom) plays a crucial role in achieving these KPIs by creating and delivering targeted messaging to the ri...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Team management and event management
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good 2 set of problems

Round 2 - Aptitude Test 

Elitmus test in second round

Round 3 - Technical 

(2 Questions)

  • Q1. Basic string questions
  • Q2. Sub array question , easy in leetcode

Asst Officer Pharmacist Interview Questions & Answers

Karuna Management Services user image Anonymous

posted on 12 Aug 2024

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

I applied via Job Portal and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Behavioral 

(2 Questions)

  • Q1. Describe yourself..
  • Q2. What is the responsibility of a pharmacist in a pharmacy
Round 2 - HR 

(1 Question)

  • Q1. Job responsibilities

Senior QA Tester Interview Questions & Answers

The TJX Companies user image ANKITA PRIYADARSHINI NAYAK

posted on 5 Aug 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. WHAT IS HASHMAP
  • Ans. 

    HashMap is a data structure in Java that stores key-value pairs and allows for fast retrieval of values based on keys.

    • HashMap is part of the Java Collections framework.

    • It uses hashing to store and retrieve elements efficiently.

    • Each key in a HashMap must be unique.

    • Example: HashMap map = new HashMap<>(); map.put("apple", 5); int value = map.get("apple");

  • Answered by AI
Round 2 - Coding Test 

WRITE A PROGRAM FOR FIBONACCI SERIES

Round 3 - Technical 

(1 Question)

  • Q1. STATIC VS FINAL
  • Ans. 

    STATIC vs FINAL - STATIC is used to define a class-level variable or method that can be accessed without creating an instance of the class. FINAL is used to define constants or prevent inheritance or method overriding.

    • STATIC variables and methods belong to the class itself, while FINAL variables cannot be changed once initialized.

    • STATIC variables are shared among all instances of a class, while FINAL variables are uniq...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

- write code for permutations & combination out of n numbers with k possibilities

Round 2 - Technical 

(3 Questions)

  • Q1. - diff between generator & decorator - write code for recursive decorator
  • Ans. 

    Generator produces a sequence of values while decorator adds functionality to an existing function. Recursive decorator calls itself within the decorator function.

    • Generator produces values lazily while decorator enhances functionality of a function.

    • Generators use 'yield' keyword to yield values one at a time.

    • Decorators use '@' symbol to apply additional functionality to a function.

    • Example of recursive decorator: def re...

  • Answered by AI
  • Q2. Explain generators
  • Ans. 

    Generators are functions in Python that allow you to pause and resume execution, yielding multiple values over time.

    • Generators are defined using a function with 'yield' statements instead of 'return'.

    • They can be iterated over using a for loop or by calling the next() function.

    • Generators are memory efficient as they do not store all values in memory at once.

    • They are useful for generating large sequences of values or pro...

  • Answered by AI
  • Q3. Sample application using flask
  • Ans. 

    A sample application using Flask, a Python web framework

    • Create a virtual environment for the project

    • Install Flask using pip

    • Create routes and views for different pages

    • Use templates to render HTML pages

    • Connect to a database using Flask-SQLAlchemy

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - HR 

(6 Questions)

  • Q1. Tell something about your self
  • Q2. About work experience
  • Q3. How did u know about the job
  • Q4. As delhi is new pace for u how will u manage
  • Q5. Salary expectation
  • Q6. What r u looking in the company future growth...

Sylcon Interview FAQs

How many rounds are there in Sylcon interview?
Sylcon interview process usually has 2 rounds. The most common rounds in the Sylcon interview process are Resume Shortlist and HR.
How to prepare for Sylcon 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 Sylcon. The most common topics and skills that interviewers at Sylcon expect are PDF, Data Stewardship, Bank Reconciliation, Book Keeping and Customer Service.

Tell us how to improve this page.

People are getting interviews through

based on 2 Sylcon interviews
WalkIn
Referral
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 784 Interviews
Cyient Interview Questions
3.7
 • 279 Interviews
MR.DIY Interview Questions
3.3
 • 27 Interviews
View all

Sylcon Reviews and Ratings

based on 13 reviews

3.5/5

Rating in categories

4.0

Skill development

3.3

Work-Life balance

4.1

Salary & Benefits

3.5

Job Security

3.3

Company culture

3.2

Promotions/Appraisal

3.9

Work Satisfaction

Explore 13 Reviews and Ratings
Accountants

Ernakulam

1-4 Yrs

Not Disclosed

Fashion Consultant Trainee

Ernakulam

0-1 Yrs

Not Disclosed

Food & Beverages

Ernakulam

2-5 Yrs

Not Disclosed

Explore more jobs
Accountant
4 salaries
unlock blur

₹1.4 L/yr - ₹3.3 L/yr

Account Assistant
4 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Assistant Manager- HR
4 salaries
unlock blur

₹3.6 L/yr - ₹5.1 L/yr

Inventory Controller
4 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

Accountant Cashier
4 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Sylcon with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview