Upload Button Icon Add office photos
Engaged Employer

i

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

Zilogic Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Zilogic Systems Engineer Interview Questions and Answers

Updated 20 Nov 2022

7 Interview questions

An Engineer was asked
Q. In C, what does the keyword 'static' do?
Ans. 

The keyword Static is used to declare a variable or method that belongs to the class and not to the instance of the class.

  • Static variables are shared by all instances of the class.

  • Static methods can be called without creating an instance of the class.

  • Static variables and methods are accessed using the class name instead of the instance name.

  • Static variables are initialized only once, at the start of the program.

  • Ex...

An Engineer was asked
Q. What are the differences between the programming languages listed on your resume?
Ans. 

Programming languages differ in syntax, features, and applications.

  • Syntax: how code is written and structured

  • Features: built-in functions, libraries, and capabilities

  • Applications: what the language is commonly used for

  • Examples: Java for enterprise applications, Python for data science, C++ for system programming

Engineer Interview Questions Asked at Other Companies

asked in Eaton
Q1. ❖ If a team member is unable to carry out his work, he is doing i ... read more
Q2. Divide a trapezium into 4 equal parts of the same shape, where on ... read more
Q3. Draw a state diagram to find the pattern 1011. Is overlap allowed ... read more
Q4. What is neutonian fluid ? , Stages of fracture, working of engine ... read more
Q5. What is inheritance? Demonstrate it with code in any language.
An Engineer was asked
Q. What is the difference between post-increment and pre-increment in C?
Ans. 

Post-increment returns the value before incrementing, while pre-increment increments first and then returns the value.

  • Post-increment: a++ returns the value of a and then increments it

  • Pre-increment: ++a increments the value of a and then returns it

An Engineer was asked
Q. In C, what does the keyword 'extern' do?
Ans. 

Keyword Extern is used to declare a variable or function that is defined in another file.

  • Extern keyword is used to tell the compiler that the variable or function is defined in another file.

  • It is commonly used in header files to declare variables or functions that are defined in source files.

  • Extern keyword is not used when defining the variable or function, only when declaring it.

  • Example: extern int x; // declares...

An Engineer was asked
Q. Which framework do you like the most and why?
Ans. 

I prefer the React framework because of its component-based architecture and efficient rendering.

  • React's virtual DOM allows for faster rendering and updates compared to traditional DOM manipulation.

  • The component-based architecture promotes reusability and modularity, making it easier to maintain and scale applications.

  • React's large and active community provides a wealth of resources and support.

  • Examples of popular...

An Engineer was asked
Q. What framework did you use in your previous job?
Ans. 

We used the Angular framework for our web application.

  • We chose Angular because of its robustness and ease of use.

  • It allowed us to create a single-page application with dynamic content.

  • We also utilized Angular Material for UI components.

  • We followed the MVC architecture pattern for our codebase.

An Engineer was asked
Q. In C, how do you define a function that can take variable arguments like 'printf'?
Ans. 

Define a function in C that accepts a variable number of arguments using stdarg.h.

  • Use stdarg.h library for handling variable arguments.

  • Define the function with an ellipsis (...) to indicate variable arguments.

  • Use va_list, va_start, va_arg, and va_end macros to process the arguments.

  • Example: int myPrintf(const char *format, ...) { /* implementation */ }

Are these interview questions helpful?

Zilogic Systems Engineer Interview Experiences

1 interview found

Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Nov 2022

I applied via Walk-in and was interviewed in May 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 - Coding Test 

Python - Strings Parsing (For loop, Split, Len)

Round 3 - Technical 

(10 Questions)

  • Q1. What are different between programming languages that you know which were listed on your resume
  • Ans. 

    Programming languages differ in syntax, features, and applications.

    • Syntax: how code is written and structured

    • Features: built-in functions, libraries, and capabilities

    • Applications: what the language is commonly used for

    • Examples: Java for enterprise applications, Python for data science, C++ for system programming

  • Answered by AI
  • Q2. Exception (Programming) you faced in your project
  • Q3. Which framework you like the most and why?
  • Ans. 

    I prefer the React framework because of its component-based architecture and efficient rendering.

    • React's virtual DOM allows for faster rendering and updates compared to traditional DOM manipulation.

    • The component-based architecture promotes reusability and modularity, making it easier to maintain and scale applications.

    • React's large and active community provides a wealth of resources and support.

    • Examples of popular appl...

  • Answered by AI
  • Q4. What are source of learning such and such skills are on your resume?
  • Q5. What are the projects you have done? If it's a group project what was your responsibility?
  • Q6. What framework did you use in your previous job?
  • Ans. 

    We used the Angular framework for our web application.

    • We chose Angular because of its robustness and ease of use.

    • It allowed us to create a single-page application with dynamic content.

    • We also utilized Angular Material for UI components.

    • We followed the MVC architecture pattern for our codebase.

  • Answered by AI
  • Q7. C - What does keyword Extern do?
  • Ans. 

    Keyword Extern is used to declare a variable or function that is defined in another file.

    • Extern keyword is used to tell the compiler that the variable or function is defined in another file.

    • It is commonly used in header files to declare variables or functions that are defined in source files.

    • Extern keyword is not used when defining the variable or function, only when declaring it.

    • Example: extern int x; // declares vari...

  • Answered by AI
  • Q8. C - What does keyword Static do?
  • Ans. 

    The keyword Static is used to declare a variable or method that belongs to the class and not to the instance of the class.

    • Static variables are shared by all instances of the class.

    • Static methods can be called without creating an instance of the class.

    • Static variables and methods are accessed using the class name instead of the instance name.

    • Static variables are initialized only once, at the start of the program.

    • Example...

  • Answered by AI
  • Q9. C - How do you define a function that could take variable arguments like 'printf'?
  • Ans. 

    Define a function in C that accepts a variable number of arguments using stdarg.h.

    • Use stdarg.h library for handling variable arguments.

    • Define the function with an ellipsis (...) to indicate variable arguments.

    • Use va_list, va_start, va_arg, and va_end macros to process the arguments.

    • Example: int myPrintf(const char *format, ...) { /* implementation */ }

  • Answered by AI
  • Q10. C - Post-increment vs Pre-Increment?
  • Ans. 

    Post-increment returns the value before incrementing, while pre-increment increments first and then returns the value.

    • Post-increment: a++ returns the value of a and then increments it

    • Pre-increment: ++a increments the value of a and then returns it

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic loop problems in python and site a references which you used to learn those skills on your resume.

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 Zilogic Systems?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Fsmo roles
  • Q2. Office 365

Engineer Interview Questions Asked at Other Companies

asked in Eaton
Q1. ❖ If a team member is unable to carry out his work, he is doing i ... read more
Q2. Divide a trapezium into 4 equal parts of the same shape, where on ... read more
Q3. Draw a state diagram to find the pattern 1011. Is overlap allowed ... read more
Q4. What is neutonian fluid ? , Stages of fracture, working of engine ... read more
Q5. What is inheritance? Demonstrate it with code in any language.

Interview Questionnaire 

1 Question

  • Q1. SOLID principles examples in depth,given to design user management database in sql(just flow diagram,and in which table which value is used),some basic c# questions related to how you log in c#
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Duration was 1 hour, Topics covered were DSA, Concurrency in golang, Databse questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep learing DSA everyday and Master tthe most important topics in your programming language

I applied via Naukri.com and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Informatica scenario based questions
  • Q2. Told to write complex sql queries based on some informations.
  • Q3. Agile methodology
  • Q4. What do you know about Saama

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience and good hike.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. About the project. and asked what i did in project. how to create schema in pyspark. what is ADE. what are the difficulties i faced in project. what is spark submit command how we write sparksubmit command...
  • Q2. No of occurrences of letter in a string.
  • Ans. 

    Count occurrences of a letter in a string.

    • Iterate through each character in the string and count occurrences of the specified letter.

    • Use a hashmap to store the count of each letter.

    • Handle both uppercase and lowercase letters to ensure accurate counting.

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. How soon would you like to start working?
  • Ans. 

    I am eager to start working as soon as possible, ideally within two weeks, to contribute effectively to the team.

    • Immediate Availability: I can start immediately if needed, as I am ready to transition from my current role.

    • Two Weeks Notice: If required, I can provide a two-week notice to my current employer, ensuring a smooth handover.

    • Flexible Start Date: I am open to discussing a start date that aligns with the team's n...

  • Answered by AI
  • Q2. What is the formula for calculating Net Asset Value (NAV)?
  • Ans. 

    Net Asset Value (NAV) represents the value of an investment fund's assets minus its liabilities, indicating its per-share value.

    • Formula: NAV = (Total Assets - Total Liabilities) / Total Outstanding Shares.

    • Example: If a fund has $10 million in assets and $2 million in liabilities with 1 million shares outstanding, NAV = ($10M - $2M) / 1M = $8.

    • Importance: NAV is crucial for investors to assess the value of their investme...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you receive the offer letter, it might be wise to disregard it, as your future could be filled with risks and uncertainties stemming from inadequate management. Akhil Jain, a troubled individual, is trying to run the organization with limited resources while contending with considerable office politics and ineffective strategies. Furthermore, there is another individual, Ashish Jain, a sarcastic person who operates behind the scenes, leading the company under the guidance of a mannerless and insecure managers.. This is just a glimpse of these two people there are more like them.so think before joining rest ur wish.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Mostly on OOP's basic and some tricky questions related SOLID concepts
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - HR 

(2 Questions)

  • Q1. Why do u want to leave your previous company
  • Q2. When can you join

Interview Preparation Tips

Interview preparation tips for other job seekers - Run Away NOW, do not join
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Form based JS questions. String questions in javascript
  • Q2. React interview questions with some state management follow up questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up on js ,es6, node.js

Zilogic Systems Interview FAQs

How many rounds are there in Zilogic Systems Engineer interview?
Zilogic Systems interview process usually has 3 rounds. The most common rounds in the Zilogic Systems interview process are Resume Shortlist, Coding Test and Technical.
How to prepare for Zilogic Systems Engineer 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 Zilogic Systems. The most common topics and skills that interviewers at Zilogic Systems expect are 802.11, Bsp, C, C++ and Embedded Linux.
What are the top questions asked in Zilogic Systems Engineer interview?

Some of the top questions asked at the Zilogic Systems Engineer interview -

  1. What are different between programming languages that you know which were liste...read more
  2. C - How do you define a function that could take variable arguments like 'print...read more
  3. What framework did you use in your previous j...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
ConsultAdd Interview Questions
3.6
 • 37 Interviews
View all
Zilogic Systems Engineer Salary
based on 16 salaries
₹1.8 L/yr - ₹8 L/yr
7% less than the average Engineer Salary in India
View more details

Zilogic Systems Engineer Reviews and Ratings

based on 9 reviews

4.7/5

Rating in categories

4.9

Skill development

4.6

Work-life balance

4.2

Salary

4.4

Job security

4.6

Company culture

3.7

Promotions

4.5

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
23 salaries
unlock blur

₹3.2 L/yr - ₹8.4 L/yr

Wlan Testing Engineer
19 salaries
unlock blur

₹2.5 L/yr - ₹8.1 L/yr

Embedded Software Engineer
18 salaries
unlock blur

₹3 L/yr - ₹9.6 L/yr

Engineer
16 salaries
unlock blur

₹1.8 L/yr - ₹8 L/yr

Senior Software Engineer
13 salaries
unlock blur

₹6.4 L/yr - ₹11 L/yr

Explore more salaries
Compare Zilogic Systems with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview