Upload Button Icon Add office photos

Filter interviews by

Famic Technologies Interview Questions and Answers

Updated 14 May 2023

Famic Technologies Interview Experiences

Popular Designations

3 interviews found

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

I applied via Campus Placement

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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Basics about hydraulics and pneumatics
  • Q2. Fundamentals related to your project and questions related to resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and talk more about similarities between your job profile and project you did in your final year

Product Support Engineer Interview Questions asked at other Companies

Q1. What is DSP (Demand Side Platform) and SSP ( Sell side platform?
View answer (1)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview
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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. The interview mostly revolves around about yourself, your academics , the projects you have done, some basics of hydraulics. Communication and written skills are tested.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep looking in the careers section of the company's website for openings, drop your resume on the email id mentioned on the company's website. Relevant resumes will get contacted as and when openings are available.

Product Support Interview Questions asked at other Companies

Q1. Define subnet mask and its used
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at College of Engineering ( Formerly Pune Instiute of Enginering and Technology ), Pune and was interviewed before May 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Technical and HR round would be same 1. What are your strengths and weeknesses? ( be prepared with examples for each strengths)
  • Q2. What is your carrer aspirations?, means you want to be in technical domain or project management domain

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, do not try to project something else

Product Support Engineer Interview Questions asked at other Companies

Q1. What is DSP (Demand Side Platform) and SSP ( Sell side platform?
View answer (1)

Interview questions from similar companies

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

I was interviewed in Sep 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program in .NET that outputs the characters appearing more than two times consecutively in a given string.
  • Q2. If there are five microservices, labeled as microservice one, microservice two, microservice three, microservice four, and microservice five. Microservice three breaks. Requests from microservice two to ...
  • Q3. What is an abstract class, and why is it necessary to use an abstract class when interfaces already exist?
  • Q4. What design patterns have you utilized in your projects?
  • Q5. Can you illustrate the architecture of your application?
Round 2 - Technical 

(10 Questions)

  • Q1. Given a list of strings that may contain duplicates, return a list of the duplicate strings using the most efficient approach.
  • Q2. Could you explain what your application does and the types of technology it utilizes?
  • Q3. When should we use MS SQL and NoSQL databases?
  • Q4. Which NoSQL database would you choose as an alternative to Elasticsearch, and what are your reasons for that choice?
  • Q5. What are the differences between MongoDB and PostgreSQL?
  • Q6. What are the differences between conventional URLs and attribute URLs in .NET Core Web API?
  • Q7. What is the working mechanism of OAuth authorization?
  • Q8. What steps do you take to ensure that an application remains maintainable?
  • Q9. Which design patterns have you utilized in your work?
  • Q10. How does Repository Pattern help in maintaining your codebase
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

A question regarding mechanical concepts and other inquiries related to amplitude.

Round 2 - Technical 

(5 Questions)

  • Q1. Questions related to resume uploaded and other technical like manufacturing and cad software related
  • Q2. Material selection and discussion about company
  • Q3. Difficulty where you are structed during the project
  • Ans. 

    I faced difficulty in managing conflicting priorities and deadlines during a project.

    • Prioritize tasks based on urgency and importance

    • Communicate with team members and stakeholders to manage expectations

    • Break down tasks into smaller, manageable chunks to stay on track

    • Seek help or guidance from mentors or supervisors when needed

  • Answered by AI
  • Q4. Discussion and deep introduction about me and project
  • Q5. Discussion about Certificate which achieved in field

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience to sharing the knowledge and technical reviews
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Group Discussion 

Difference between online study and offline study

Round 2 - Technical 

(2 Questions)

  • Q1. All types of testing one by one (System, integration, usability, black box, white box)
  • Q2. Question on gaming like are you a mobile game player or pc or console game player, what's the difference between them.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(7 Questions)

  • Q1. Basic Javascript questions were asked like Hoisting, Event Loop, Closure.
  • Q2. What are semantic tags? << HTML based question
  • Ans. 

    Semantic tags in HTML are specific tags that provide meaning to the content they enclose.

    • Semantic tags help search engines and screen readers understand the structure of a webpage.

    • Examples of semantic tags include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <figure>, <figcaption>.

    • Using semantic tags improves SEO and accessibility of a website.

  • Answered by AI
  • Q3. What is currying in js?
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying helps in creating reusable functions and partial application.

    • It allows you to create new functions by fixing some parameters of an existing function.

    • Example: const add = (a) => (b) => a + b; add(2)(3) will return 5.

  • Answered by AI
  • Q4. What is the difference between Map and Filter?
  • Ans. 

    Map is used to transform each element of an array, while Filter is used to select elements based on a condition.

    • Map returns a new array with the same length as the original array, but with each element transformed based on a provided function.

    • Filter returns a new array with only the elements that pass a provided condition function.

    • Example for Map: [1, 2, 3].map(num => num * 2) will result in [2, 4, 6].

    • Example for Fi...

  • Answered by AI
  • Q5. What is the difference between Map and ForEach?
  • Ans. 

    Map creates a new array with the results of calling a provided function on every element, while forEach executes a provided function once for each array element.

    • Map returns a new array with the same length as the original array, while forEach does not return anything.

    • Map does not mutate the original array, while forEach can mutate the original array.

    • Map is more suitable for transforming data and creating a new array, w...

  • Answered by AI
  • Q6. What is the difference between Authentication and Authorization?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines the user's access rights.

    • Authentication confirms the user's identity through credentials like username and password.

    • Authorization determines what actions the authenticated user is allowed to perform.

    • Authentication precedes authorization in the security process.

    • Example: Logging into a website (authentication) and then accessing specific pages

  • Answered by AI
  • Q7. What is the difference between Local storage and Session storage?
  • Ans. 

    Local storage persists even after the browser is closed, while session storage is cleared when the browser is closed.

    • Local storage has no expiration date, while session storage expires when the browser is closed.

    • Local storage stores data with no limit, while session storage has a limit of around 5MB.

    • Local storage data is available across all windows/tabs for that domain, while session storage data is only available wit...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. This was the Final round, it lasted for around 30 mins and the interviewer gave me a coding question to build a Countdown Timer app.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for Live coding round that's the important one.
Also prepare the questions based on HTML, CSS
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Java coding output predict related questions , try catch , string concept
  • Q2. Switch case
  • Q3. Inheritance
  • Q4. What challanges faced in automation
  • Ans. 

    Challenges in automation include dynamic UI elements, data synchronization, and maintenance of test scripts.

    • Dynamic UI elements can be challenging to automate as they may change frequently.

    • Data synchronization between different systems can be difficult to achieve in automation.

    • Maintenance of test scripts can be time-consuming, especially when application changes frequently.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How to read the data and assert with db value in api automation
  • Ans. 

    To read data and assert with db value in API automation, use API response to extract data and compare with database query result.

    • Extract data from API response using JSON parsing libraries like Gson or Jackson

    • Execute database query to retrieve expected value

    • Compare the extracted data with the database value using assertion libraries like TestNG or JUnit

  • Answered by AI
  • Q2. 401 & 403 status code
Round 3 - HR 

(1 Question)

  • Q1. Managerial behavioural questions

Senior Analyst Interview Questions & Answers

FIS user image Sarita Rajaram Rahate

posted on 28 Feb 2025

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

I was interviewed in Aug 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Tell me about yourself?
  • Q2. What is corporate action?
  • Q3. Which date is important in divided?
Round 2 - HR 

(1 Question)

  • Q1. What's the reason of leaving previous organisation?
Round 3 - Face to face 

(1 Question)

  • Q1. Salary discussion
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 in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the different sizes available for a virtual warehouse in Snowflake, and which sizes are currently being utilized in your current project?
  • Q2. What are stored procedures in Snowflake, and how did you utilize them?
Round 2 - Technical 

(2 Questions)

  • Q1. How did you verify the data after transferring it from one database to another?
  • Q2. What are the different types of duplicate checks that can be performed using SQL queries?
Round 3 - HR 

(2 Questions)

  • Q1. Are you open to relocating to Hyderabad?
  • Q2. What information do you have about ValueLabs?

Interview Preparation Tips

Topics to prepare for ValueLabs Senior Software Engineer interview:
  • Snowflake
  • SQL
  • Python
Contribute & help others!
anonymous
You can choose to be anonymous

Famic Technologies Interview FAQs

How many rounds are there in Famic Technologies interview?
Famic Technologies interview process usually has 2 rounds. The most common rounds in the Famic Technologies interview process are Resume Shortlist and One-on-one Round.
How to prepare for Famic Technologies 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 Famic Technologies. The most common topics and skills that interviewers at Famic Technologies expect are Information Technology, Antivirus, ISO, IT Infrastructure and MS Office.

Recently Viewed

INTERVIEWS

Boeing

85 interviews

INTERVIEWS

Apexon

135 interviews

INTERVIEWS

Xogene

8 interviews

INTERVIEWS

OpenBet

3 interviews

INTERVIEWS

ABB

233 interviews

INTERVIEWS

Hinduja Renewables

No Interviews

INTERVIEWS

Waaree Energies

No Interviews

INTERVIEWS

Sphera Solutions

No Interviews

INTERVIEWS

AdamsBridge Global

No Interviews

INTERVIEWS

Schlumberger

No Interviews

Tell us how to improve this page.

Famic Technologies Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

Interview Questions from Similar Companies

Siemens Interview Questions
4.1
 • 416 Interviews
Bosch Interview Questions
4.2
 • 329 Interviews
ABB Interview Questions
4.1
 • 233 Interviews
Yokogawa Interview Questions
3.7
 • 34 Interviews
View all

Famic Technologies Reviews and Ratings

based on 11 reviews

3.8/5

Rating in categories

3.6

Skill development

4.5

Work-life balance

3.4

Salary

3.8

Job security

3.5

Company culture

3.2

Promotions

4.2

Work satisfaction

Explore 11 Reviews and Ratings
Product Support Engineer
31 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Product Engineer
7 salaries
unlock blur

₹6 L/yr - ₹8 L/yr

Programmer Analyst
5 salaries
unlock blur

₹7 L/yr - ₹8 L/yr

Production Support Engineer
5 salaries
unlock blur

₹6 L/yr - ₹7.9 L/yr

Product Developer
3 salaries
unlock blur

₹7 L/yr - ₹8.9 L/yr

Explore more salaries
Compare Famic Technologies with

Siemens

4.1
Compare

ABB

4.1
Compare

Schneider Electric

4.1
Compare

Honeywell Automation

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent