11+ PRINCE2 Jobs in Mumbai | PRINCE2 Job openings in Mumbai
Apply to 11+ PRINCE2 Jobs in Mumbai on CutShort.io. Explore the latest PRINCE2 Job opportunities across top companies like Google, Amazon & Adobe.
Responsibilities:
- Contribute to managing end-to-end implementation project life cycle, driving optimization of operating models
- Determine Project Scope, Objectives and Dependencies
- Develop and manage a detailed project schedule, work plan and key milestones
- Determine and Define Project Resource Allocations
- Manage Risks, Issues, Assumptions and Dependencies on Project by assigning appropriate ownership and escalations
- Capture project health metrics, maintaining a central repository for all projects and project information that provide insights into processes and frameworks that work
- Establish and execute Project Governances viz., Steerco Meetings, Weekly Cadences and Track Action Items to closure
- Conduct governance calls for ongoing projects and ensuring project commitments are being met by Darwinbox’s implementation team as well as the Client’s implementation team
- Develop and manage a detailed project schedule and work plan
- Collaborate with Client on requirement changes and initiate change management process
- Identify, document and update the project scope for changes
- Initiate appropriate review and approvals on the changes
- Evaluate and analyze the impact of changes and communicate with stakeholders
- Seek approvals and commitments on the scope, cost and schedule
- Ensure SOP adherence, time-logging, effectively making use/ driving adoption of Project Management tools and methodologies
- Review/prepare Project Plans for implementation projects and monitor resource allocation
- Identify Stakeholder Communication Requirements on project performance metrics
- Collaborate with Product Teams on Product enhancements
- Document impact and prioritize changes to Product Backlog and timelines
- Stakeholder Reporting - Preparing status reports, highlighting risks to the project timelines, proactively escalating potential red flags, and recommending mitigation solutions
- Track Project Closure / Handover activities to downstream teams.
General Requirements:
- B. Tech or an equivalent degree
- MBA or an equivalent degree is preferred but not mandatory
- Excellent written and verbal communication skills
- Ability to work under pressure and adaptable to change
- Excellent time management and problem-solving skills
- Proficiency in MS Office tool.
- Any experience in MS SharePoint, MS Power Automate, Excel Macros, and Project Management Tools like JIRA, and Zoho Projects is an added advantage
- Any Project Management (PMP/ Prince2/Agile CSM) or Agile certification is mandatory
- 8-10 years of prior experience in a project management role is preferred with strong experience in HRMS implementation.
About the role:
Unico Connect is an Al-first technology partner that builds custom mobile, web, and AI products for clients across multiple geographies. We are hiring a Senior Al Engineer for a dedicated client engagement focused on building an Al-powered application builder platform - a product where users describe software in plain English and the system generates, previews, and iteratively refines working code. The mandatory requirement for this role is hands-on production experience shipping LLMpowered systems with agent architectures, with experience in code generation or developer tooling contexts a strong advantage. The role is product-focused and deeply hands-on. You will own everything between the user's prompt and correct code landing in the project: the agentic loop, code generation pipeline, context management, evaluation suite, and model cost strategy. You will work alongside the Senior MLOps Engineer who operationalises the infrastructure around your system, and collaborate closely with backend, frontend, and DevOps engineers.
Responsibilities:
Agent architecture: Design and own the agentic loop for the platform - request interpretation, planning, tool-calling sequence (read file, edit file, run build, search code, install package), and stop conditions. Make and revisit architectural decisions on singleagent vs. multi-agent designs, including planner/executor splits and dedicated buildrepair sub-agents.
Code generation pipeline: Own the end-to-end generation flow: task classification, context gathering, planning, targeted edits, verification, and commit. Implement diff/search-replace-based file editing with fuzzy matching and fallback strategies. Enforce scope discipline so the agent makes minimal diffs and does not modify code it was not asked to touch.
Self-repair loop: Build and tune the automated repair loop that pipes compiler, lint, build, and runtime errors back to the model with retry budgets and model escalation. This loop is the primary quality lever - the difference between 60-70% and 90%+ build success rates.
Context management: Build file-relevance retrieval so the agent sees the right files, not the whole codebase: dependency graphs, AST/tree-sitter-based chunking, embeddings, recency signals, and hybrid retrieval. Implement conversation summarisation and memory for long sessions, and address long-project degradation through codebase summaries and periodic consistency passes. Own token budgeting and prompt caching strategy.
Prompt engineering as a discipline: Own the system prompt and per-task prompt variants (new feature, bug fix, styling change). Maintain few-shot examples and enforce coding conventions, stack rules, and prohibited behaviours such as no hardcoded secrets and no whole-file rewrites. Version prompts like code with changelogs and rollback capability.
Evaluation and quality measurement: Design and own the evaluation suite: representative test prompts run on every prompt and model change, scored on build success rate, instruction adherence, and output quality including LLM-as-judge and visual/screenshot checks where relevant. Define regression gates that block qualitydegrading changes from shipping. Treat evals the way engineers treat automated testing: versioned, automated, and tracked over time. This responsibility is nonnegotiable at this level.
Model strategy and cost: Design model routing - cheap and fast models for classification and small edits, frontier models for complex generation. Drive cost optimisation through prompt caching, diff-based edits over full-file rewrites, and tighter context selection. Track cost per agent run and tokens per task; evaluate new model releases against the eval suite and lead migrations when results justify it.
Safety and reliability of agent behaviour: Defend against prompt injection from user content and fetched web content. Ensure secrets never appear in generated client code. Define what the agent's tools may and may not do in collaboration with the platform team. Contribute to output moderation and abuse-pattern awareness.
Mentorship and engineering standards: Run code reviews, define engineering conventions for Al work, and raise the engineering bar across the Al team. Work closely with the Senior MLOps Engineer on handoff of eval design, prompt configurations, and model routing logic.
Requirements:
Hands-on production ownership of LLM-powered systems with agent architectures (mandatory). Must have personally shipped and operated at least one complex production Al system - agentic, multi-step, or code generation - with end-to-end ownership of architecture, evaluation, and cost. POCs, internal demos, and tutorialgrade work do not qualify.
5+ years of professional software or Al engineering experience, with at least 3 years focused on LLM applications, Al engineering, or production Al systems. Candidates with strong backend backgrounds and a clear, substantive pivot into LLM systems qualify.
Strong Python proficiency and service development. Production-grade Python with FastAPI or equivalent: type hints, async patterns, streaming responses, testing, and packaging. Not notebook-only.
Depth across LLM APIs and agent systems. Production experience with at least two of OpenAl, Anthropic Claude, Google Gemini, or open-weight models (vLLM, Ollama, Together). Production experience with at least one agent framework (LangGraph, CrewAI, AutoGen, Llamalndex Agents) or hand-rolled equivalent. Hands-on with tool calling, structured outputs, and multi-step reasoning.
Demonstrated, systematic evaluation practice - non-negotiable. Must have built evaluation harnesses that gate production releases, not ad-hoc testing. Hands-on with at least one of LangSmith, Langfuse, Promptfoo, Ragas, or DeepEval. Candidates with no systematic answer to evaluation should not be considered at senior level regardless of other strengths.
Cost discipline for production Al. Track record of measurable cost optimisation on production Al features. Able to speak in specifics: cost per request, savings achieved through caching or model routing, context reduction decisions.
AWS working knowledge. Hands-on with EC2, S3, IAM, and Docker. Comfort with CI/CD workflows and deploying Al services.
Awareness of LLM security failure modes. Familiar with prompt injection patterns, understands that system prompt rules alone are insufficient, and has experience with output validation and content safety in production.
Nice to have: experience with AST/tree-sitter tooling, diff-based editing systems, or compiler-adjacent work; MCP server authoring; open-source Al contributions; published technical writing on LLM systems; multi-modal model experience; fine-tuning exposure (LORA, QLORA, PEFT).
Experience: 8-15 Years
Qualification: BE / B. Tech
Location: Pune, Remote
Technical Know -How: React.js/ReactJs, Java Spring Boot, Spring Framework, Java Spring developers, Rest API, Microservices, front end and Back-end technologies etc.
Key Responsibilities
- Work with team of Java & Springboot Developers in the design, development, and maintenance of applications.
- Work with business stakeholders and technical teams to gather and analyze requirements for Java & Springboot applications.
- Lead a team of developers in building scalable, secure, and high-performance applications using React and Spring Boot.
- Drive end-to-end ownership of application development including requirement analysis, design, coding, testing, and deployment.
- Collaborate with product owners, architects, and cross-functional teams to define and deliver high-quality solutions.
- Ensure adherence to coding standards, best practices, and agile development methodologies.
- Mentor and guide team members, conduct code reviews, and encourage technical excellence.
- Oversee application performance tuning, debugging, and troubleshooting in production and non-production environments.
- Participate in architectural discussions and contribute to technology roadmaps.
Required Skills & Experience
- Bachelor’s degree in computer science, computer engineering or similar.
- Excellent communication skills.
- Critical thinker and good problem-solver.
- 8–15 years of overall software development experience, with at least 3 + years in a lead/mentorship role.
- Strong proficiency in React.js, JavaScript/TypeScript, HTML5, CSS3, Redux, and related libraries/frameworks.
- Solid backend development experience using Spring Boot, Spring Security, REST APIs, and Microservices architecture.
- Strong understanding of Test Driven Development ( Junit)
- Write efficient and well-structured code to implement business logic and functionality on the Java platform.
- Perform unit testing and debugging to ensure the quality and reliability of developed applications.
- Maintain and enhance existing Java & Springboot applications by troubleshooting issues, implementing bug fixes, and optimizing performance.
- Strong understanding of RDBMS/NoSQL databases (e.g., MySQL, MongoDB / Azure Cosmos DB).
- Experience with cloud platforms (AWS / Azure / GCP) and containerization (Docker, Kubernetes).
- Proficiency in version control (Git), CI/CD pipelines, and DevOps practices.
- Strong problem-solving skills, debugging expertise, and performance optimization experience.
- Excellent communication and leadership skills with the ability to drive technical discussions
- Good knowledge of security best practices (OAuth2, JWT, SSO, etc.).
- Good to have experience with message brokers (Kafka, Azure Service Bus).
Position - HR
Experience - 1-2 Years
Who are we
Based out of IIT Bombay, HaystackAnalytics is a HealthTech company creating clinical genomics products, which enable diagnostic labs and hospitals to offer accurate and personalized diagnostics. Supported by India's most respected science agencies (DST, BIRAC, DBT), we created and launched a portfolio of products to offer genomics in infectious diseases. Our genomics based diagnostic solution for Tuberculosis was recognized as one of top innovations supported by BIRAC in the past 10 years, and was launched by the Prime Minister of India in the BIRAC Showcase event in Delhi, 2022.
What we want you to do
- This role will comprise 70% TA & 30% of either functions (Admin/HR-Ops/Employee Engagement) depending upon the candidates skill set..
- Work with different department heads to understand the hiring requirement
- Curate Job posts on Various platform
- Recording keeping of resumes
- Maintain database of candidates
- Screen Resume as per requirement of the role.
- Speaking to potential candidates & explaining them the JD
- Schedule Interviews via online meeting portals or face to face interviews.
- Ensure timely feedback from the interview panels.
- Keep good rapport with the candidates.
- Closing the hiring process
What are we looking in you
- Graduate or PG degree in Human Resources Management or a relevant field
- Prior experience as an HR Recruiter
- Sound knowledge of all HR processes (e.g. recruitment, training, talent management ,etc.)
- Experience with resume databases and ATS
- Sound knowledge of the end to end recruitment process.
- Strong verbal as well as written communication skills. Good proficiency in English.
- Exceptional time-management and organizational skills
· To engage regularly with the Imperia customers as defined by the contact policy and provide a Consistent & a Superior Digital Experience. Ensuring that customers get world-class services and their needs are understood and met through financial products that the Bank has to offer.
· To enhance Customer Relationship & while doing so, Educate, Encourage & Induce the customers to use the Digital mediums for their banking transactions/ needs, while keeping a "window' to talk to the bank whenever customer needs.
· Responsible for meeting the scorecard targets and portfolio benchmarks set and that all guidelines and regulatory requirements are followed.
Skills
- Strong proficiency in JavaScript, including DOM manipulation and the JavaScript object model.
- Expertise in backend programming with Node.js and MongoDB.
- Experience with React.js and redux.
- Material UI and 3rd party libraries.
- Experience with clean code writing practices like avoiding callback hell like promises, async.
- Thorough understanding of Node.js and its core principles.
- Experience with popular React.js workflows (such as Flux or Redux).
- Familiarity with newer specifications of ECMAScript.
- Experience with data structure libraries (e.g., Immutable.js).
- Familiarity with RESTful APIs.
- Knowledge of modern authorization mechanisms, such as JSON Web Token.
- Familiarity with modern front-end builds pipelines and tools.
- A knack for benchmarking and optimization.
- Familiarity with code versioning tools (such as Git, SVN, and Mercurial).
Responsibilities:
- Build Node.js APIs using microservices.
- Rewriting backend code with microservices architecture & Unit tests.
- Developing new user-facing features using React.js.
- Building reusable components and front-end libraries for future use.
- Translating designs and wireframes into high-quality code.
- Optimizing components for maximum performance across a vast array of web-capable devices and browsers.
Job Responsibilities :
· Design, Development, Testing and Implementation of new customization in D365 & NAVISION with writing code in C/AL programming
· Addressing support issues for all locations
Essential Skills:
· Strong Technical Experience on Dynamic Nav
· Having good technical knowledge in D365 Business Central
· Strong Technical C/AL Language Skill
· MS SQL query writing
· SQL reports
· Basic Process Data Flow Understanding in NAV
· Knowledge of designing, testing, development inhouse for Navision
· Good communication skills
· Good team player
Experience :- Minimum 2 - 8 years or any.
- Analyze highly complex business requirements;
- generate technical specifications to design or redesign complex software components and applications;
- Acts as an expert technical resource for modeling, simulation and analysis efforts;
- Adapt to change quickly and adjust work accordingly in a positive manner;
- Be flexible and thrive in an evolving environment;
- Individual contributor to build the application for e-commerce platform;
- Assures quality, security and compliance requirements are met for supported areas;
- Working in cloud data stores to include S3, DynamoDB and/or Amazon RDS;
- Perform test automation in a test-driven development environment;
- Implement DevOps concepts, tools and continuous delivery pipelines - Bamboo, Jenkins, Maven, Bitbucket, Jira, etc;
- Implement instrumentation to gather business-specific metrics around consumer usage patterns;

Product based ,125 years Old US Based MNC
Essential Duties and Responsibilities
- Contribute in all phases of the development lifecycle
- Write well designed, testable, efficient code
- Ensure designs are in compliance with specifications
- Prepare and produce releases of software components
- Support continuous improvement by investigating alternatives and technologies and presenting these for architectural review
Adhere to Experian policies and procedures
- Work under the Experian behaviors and values
- Facilitate and drive performance management processes
- Champion a culture where the fair treatment of customers is at the heart of the Experian business
- Ensure that by leading by example, you adhere to all regulatory requirements and apply appropriate controls in the interests of customers
- Through the adoption of a top down approach, demonstrate a culture where all our people understand their regulatory obligations, including what the fair treatment of customer’s means to them and our organization
Qualifications
- Should have years of experience in developing and supporting Java/J2EE based application
- Should provide consultation on new development, enhancements, bug fixes and deployment and involve in complete product life cycle
- Should undertake any development/coding activities that might require during project life cycle
- Should have good core java concept like Collection, Multi-Threading JDBC File handling etc.
- Should have experience in Spring, Spring Boot, JPA, Hibernate
- Should have experience in Web service testing tool like SOAP UI, PostMan
- Should have working experience with database like Oracle, MSSQL Server, MySQL
- Should have enriched experience in client interfacing
- Should have good communication skills
Technologies
- Java, Java EE
- Spring, Spring Boot, JPA, Hibernate
- Java Multi-Threading
- Web service using SOAP/REST
- JIRA, Confluence, Bitbucket
- Oracle, SQL Server, MySQL
- WebLogic, Tomcat , JBOSS
What you will do:
- Owning responsibility for defining and driving operational/business goals.
- Managing Day-to-day operations of the ecommerce platform.
- Building on the existing business by adding new categories and product portfolio listings on the marketplaces.
- Product Portfolio management – Assisting the team with product sales and category and performance inputs to optimize the product portfolio from time to time.
- Overseeing the day-to-day marketplace eCommerce operations, customer service, updates, post listings, promotions, merchandising, maintenance and performance.
- Staying up-to-date with the promotional calendars and plans of eCommerce platforms. Driving category interventions.
- Supporting the eCommerce Manager on campaigns and programs.
- Supporting integrations of eCommerce platform with main website as well as backend systems and applications.
- Guiding internal teams and vendor teams on development & implementation issues.
- Coordinating with Marketing, Sales, Supply Chain, and Operations on Day-to-day management of the eCommerce platform.
What you need to have:
- Minimum 5 years of experience within an ecommerce operations role
- Experience handling ecommerce platforms, online sales and website content management
- Excellent communication and organizational skills in addition to project management experience
- Financial acumen- ability to reconcile accounts receivables with payments received from sales partners
- Ability to manage tasks simultaneously
- Experience working on Google and web analytics
- Experience evaluating and executing SEO strategies
About the Role:
The candidate will be Senior Backend Developer at HelpNow and should have solid experience in REST API development in Go. The individual should be self-motivated, team player, possess creative problem-solving skills, and have the ability to handle multiple projects at the same time. The candidate should have developed multiple tiered web applications with familiarity with modern web-based technologies.
Job Responsibilities:
Mandatory 4+ years of hands-on experience implementing REST services in Go.
Must have worked with REST frameworks and know latest tools like Docker, Kubernetes, and should be able to CI pipelines with Github actions.
Highly experienced in RDBMS (MySQL/Postgres) and NoSQL DB's(MongoDB).
Oriented towards automating and scalable solution approaches.
Strong technical development experience on effectively writing code, code reviews, best practices code refactoring.
Experience with various source control tools like GIT, Jenkins CI/CD, and Maven.
Strong experience with containers and container management platforms (Dockers, Kubernetes, etc.).
Experience in developing software in golang.
Experience in Agile development lifecycle methodology.
Proven problem solving and analytical skills.
Minimum of 4 years of work experience required.
Salary range: ₹ 80,000- 1,20,000/month Equity: As per experience





