Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Synchronous Project Engineering Consultancy Team. If you also belong to the team, you can get access from here

Filter interviews by

Synchronous Project Engineering Consultancy Interview Questions and Answers

Updated 23 Jan 2023

Synchronous Project Engineering Consultancy Interview Experiences

1 interview found

Project Manager Interview Questions & Answers

user image Swarup Dutta

posted on 23 Jan 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2022. 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 - Technical 

(2 Questions)

  • Q1. Questions pertaining to specific experience
  • Q2. Names of the client side managers in renowned sites worked
Round 3 - One-on-one 

(3 Questions)

  • Q1. How about your Managerial skills
  • Q2. Tell me an incident at your job where you felt you have done your best until now
  • Q3. How about an incident where you think the solution could have been better and why it couldn't be done?
  • Ans. 

    An incident where a better solution could have been implemented

    • During a software development project, we faced a delay due to a miscommunication between the development and testing teams

    • The solution was to extend the testing timeline, but it resulted in a delay in the project delivery

    • A better solution would have been to have a clear communication plan and regular meetings between the teams to avoid such delays

    • However, ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and true to exactly what you have done. They accept honest persons willing to learn but not liars.

Project Manager Interview Questions asked at other Companies

Q1. What is success & what is failure to you? How do you handle failure? - not much interviewer asks such questions, but I believe these are very important questions, if you want to succeed.
View answer (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(6 Questions)

  • Q1. Introduction of yourself
  • Q2. Tell me about ? your qualification and career and job
  • Q3. Tell me ? How did you find this job
  • Q4. Tell me about what you have skills
  • Q5. Tell me aboutyour hobbies
  • Q6. How much you expecting regarding salary
Round 2 - Group Discussion 

About environment and population

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be strees while infront of interviewer
And don't be worry
Be friendly with your interviewer
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Are you familiar with Object-Oriented Programming (OOP)?
  • Q2. What is the definition of a constant in PHP?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the subject of SAP Material Management?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is scatter gather?
  • Q2. What is RAML? What are traits?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. How Angular application works?
  • Ans. 

    Angular applications work by utilizing TypeScript to create components, services, and modules that interact with the DOM.

    • Angular applications are built using TypeScript, a superset of JavaScript.

    • Components are the building blocks of Angular applications, representing different parts of the UI.

    • Services are used to share data and functionality across components.

    • Modules help organize the application into cohesive blocks o...

  • Answered by AI
  • Q2. What are components and directives?
  • Ans. 

    Components and directives are key concepts in Angular framework for building dynamic web applications.

    • Components are the basic building blocks of Angular applications, representing a part of the user interface.

    • Directives are markers on a DOM element that tell Angular to attach a specific behavior to that element or transform it.

    • Components are directives with a template.

    • Examples: ngIf, ngFor, ngStyle, ngClass

  • Answered by AI
  • Q3. What are dependency injection in angular
  • Ans. 

    Dependency injection in Angular is a design pattern where components are given their dependencies rather than creating them.

    • In Angular, dependencies are injected into a component's constructor using TypeScript.

    • This allows for better modularity, reusability, and testability of code.

    • Dependencies can be provided at the module level or at the component level.

    • Example: constructor(private userService: UserService) {}

  • Answered by AI
  • Q4. How do you call an api in angular
  • Ans. 

    To call an API in Angular, you can use the HttpClient module to make HTTP requests.

    • Import the HttpClientModule in your app module

    • Inject the HttpClient service in your component/service

    • Use HttpClient's methods like get(), post(), put(), delete() to make API calls

    • Subscribe to the Observable returned by the HTTP request to get the response data

  • Answered by AI
Round 2 - HR 

(3 Questions)

  • Q1. Why do you want to get placed in Accenture?
  • Q2. What are ur strengths and weakness?
  • Ans. 

    My strengths include problem-solving skills, attention to detail, and strong communication. My weakness is that I can be overly critical of my own work.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Strengths: strong communication

    • Weakness: overly critical of my own work

  • Answered by AI
  • Q3. If there is a task and someone comes for your help what will be your approach?

Interview Preparation Tips

Interview preparation tips for other job seekers - Well it depends on interviewer how easy or tough he/she wants to take, but prepare well

Skills evaluated in this interview

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

I applied via campus placement at Gayatri Vidya Parishad College of Engineering, Visakhapatnam and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Most of the questions on verbal,logical,numerical aptitude

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Could you explain the project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare about the resume and do background work on company
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Easy round anyone with basic maths can clear the round.

Round 2 - Group Discussion 

The topic given to us is online education system,and the round was easy to clear.

Round 3 - One-on-one 

(1 Question)

  • Q1. Call by value vs call by reference
  • Ans. 

    Call by value passes a copy of the variable, while call by reference passes the actual variable.

    • Call by value: changes to the parameter inside the function do not affect the original variable.

    • Call by reference: changes to the parameter inside the function affect the original variable.

    • Example: Call by value - int x = 5; func(x); // x remains 5. Call by reference - int x = 5; func(&x); // x changes to the value set i

  • Answered by AI
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 May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Linux Question

Round 2 - Technical 

(3 Questions)

  • Q1. What is ftp port number?
  • Ans. 

    FTP port number is 21.

    • FTP port number is used for transferring files over a network.

    • It is a default port number for FTP protocol.

    • FTP clients connect to port 21 on the server to initiate a file transfer.

    • FTP servers listen on port 21 for incoming connections.

  • Answered by AI
  • Q2. What is DHCP and how its working?
  • Ans. 

    DHCP stands for Dynamic Host Configuration Protocol. It is a network protocol that automatically assigns IP addresses to devices on a network.

    • DHCP server assigns IP addresses to devices on a network

    • It also provides other network configuration information such as subnet mask and default gateway

    • DHCP uses a lease mechanism to manage IP address assignments

    • DHCP operates on the client-server model

    • Example: When a device conne...

  • Answered by AI
  • Q3. What is Domain name System?
  • Ans. 

    Domain Name System (DNS) is a system that translates domain names to IP addresses, allowing users to access websites using human-readable names.

    • DNS is like a phone book for the internet, translating domain names (like google.com) to IP addresses (like 172.217.3.206).

    • DNS servers store records of domain names and their corresponding IP addresses.

    • DNS helps users access websites by resolving domain names to IP addresses in...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Tell us about yourself
  • Q2. How much do you know about inspection and what would you refer for doing inspection work
  • Ans. 

    I have a strong understanding of inspection processes and recommend thorough documentation, attention to detail, and adherence to regulations.

    • Understanding of inspection procedures and protocols

    • Attention to detail in identifying issues and discrepancies

    • Thorough documentation of findings and recommendations

    • Adherence to regulations and standards

    • Utilization of appropriate tools and equipment for inspections

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic HR questions, understand basic terminology that goes in inspection duties and be confident in showing your learning ability and communication skills

Synchronous Project Engineering Consultancy Interview FAQs

How many rounds are there in Synchronous Project Engineering Consultancy interview?
Synchronous Project Engineering Consultancy interview process usually has 3 rounds. The most common rounds in the Synchronous Project Engineering Consultancy interview process are Resume Shortlist, Technical and One-on-one Round.

Tell us how to improve this page.

Synchronous Project Engineering Consultancy Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Pie Infocomm Interview Questions
4.5
 • 39 Interviews
Ricoh Interview Questions
3.9
 • 9 Interviews
View all

Synchronous Project Engineering Consultancy Reviews and Ratings

based on 3 reviews

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

4.5

Salary

3.9

Job security

5.0

Company culture

4.5

Promotions

4.1

Work satisfaction

Explore 3 Reviews and Ratings
Compare Synchronous Project Engineering Consultancy with

Ricoh

3.9
Compare

Netaxis IT Solutions

4.0
Compare

Pie Infocomm

4.5
Compare

Zovian Technologies

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