Upload Button Icon Add office photos
Engaged Employer

i

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

Fidel Softech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Fidel Softech Project Coordinator Interview Questions and Answers

Updated 26 Jun 2021

Fidel Softech Project Coordinator Interview Experiences

1 interview found

I applied via Referral and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How will you manage job pressure ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont be afraid. Be confident even if you are lying. And always study little bit about the company whome your are going to interview.

Interview questions from similar companies

I applied via Referral and was interviewed before Dec 2019. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me some thing about the region you live in.
  • Q2. What's your area of improvement?
  • Q3. Name the good qualities you posses.
  • Q4. Why should I hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident enough to give the answers very calmly and perfectly. Make proper use of gestures and face the interviewer with the smiling face.

Interview Questionnaire 

2 Questions

  • Q1. All types of questions
  • Q2. The right answer and not the fluke one

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not lie about your achievements. The interviewer may be tricked but you have to work on the organization for long. Also, its a career that you want to make for yourself. Exaggerating may increase your chances to land a job but to excel in your career, ethics play a major role. Saying no about knowing something shows ethics and no better way to win a job opportunities tha. To prove that on an ethics front you are the best. Think long term, not short term. Dont impress, try and understand the job requirement and match your skills. Nothing worse than an ill fitting job.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and Aptitude

Round 2 - Coding Test 

Functions with Pointers and strings concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly on Pointers and Dynamic Memory Allocation of 2-D Array
  • Q2. Structure Padding and Packing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth in C and mainly on Bit-Manipulation.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I appeared for an interview in Nov 2022.

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 

Strong appitude knowledge is required.

Round 3 - Technical 

(1 Question)

  • Q1. String , arrays, oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Have strong basic concepts.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Strecture of sql statement
  • Ans. 

    SQL statements are used to interact with databases by performing operations like querying, updating, and deleting data.

    • SQL statements are made up of keywords like SELECT, INSERT, UPDATE, DELETE, etc.

    • They are structured in a specific order, with clauses like WHERE, ORDER BY, GROUP BY, etc.

    • Tables are referenced using their names, and conditions are specified to filter data.

    • Joins can be used to combine data from multiple

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. 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 - Technical 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Walk-in and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is interface ?
  • Ans. 

    An interface in software development defines a contract for classes to implement, specifying methods and properties.

    • Interfaces in programming languages like Java and C# allow for multiple inheritance by defining a set of methods that a class must implement.

    • Interfaces provide a way to achieve abstraction and polymorphism in object-oriented programming.

    • Interfaces are used to define common behavior that multiple classes c...

  • Answered by AI
  • Q2. Hat is encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation promotes code reusability and makes the code easier to maintain.

    • Example: In a class representing a car, the variables lik...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with ur basics

Skills evaluated in this interview

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

10 apti questions and 10 technical mcq on cpp

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concept question
  • Q2. Sql queries on join
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Oops topic and aptitude

Fidel Softech Interview FAQs

How to prepare for Fidel Softech Project Coordinator 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 Fidel Softech. The most common topics and skills that interviewers at Fidel Softech expect are German Language, Administrative Skills, Communication Skills, Gujarati and Interpersonal Skills.

Tell us how to improve this page.

Interview Questions from Similar Companies

CGS Interview Questions
3.5
 • 25 Interviews
Monotype Interview Questions
3.7
 • 23 Interviews
Pitney Bowes Interview Questions
3.7
 • 21 Interviews
Xactly Corp Interview Questions
3.9
 • 17 Interviews
Dataflow Group Interview Questions
3.0
 • 15 Interviews
Commerce Pundit Interview Questions
4.2
 • 14 Interviews
View all
Fidel Softech Project Coordinator Salary
based on 18 salaries
₹2 L/yr - ₹4.5 L/yr
35% less than the average Project Coordinator Salary in India
View more details

Fidel Softech Project Coordinator Reviews and Ratings

based on 2 reviews

2.2/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

1.2

Salary

4.2

Job security

4.2

Company culture

1.4

Promotions

2.8

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
51 salaries
unlock blur

₹2 L/yr - ₹10.3 L/yr

Java Developer
21 salaries
unlock blur

₹3.2 L/yr - ₹4.9 L/yr

Project Coordinator
18 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Software Developer
17 salaries
unlock blur

₹2 L/yr - ₹7.5 L/yr

Recruitment Consultant
13 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Fidel Softech with

Primus Global Technologies

3.9
Compare

Pitney Bowes

3.7
Compare

Ricoh

3.8
Compare

Dataflow Group

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