SShortSingh.
Back to feed

India Tech Hiring Falls 8% in April 2026, Marks Second-Weakest FY Start in Six Years

0
·3 views

India's technology sector opened fiscal year 2027 with a notable hiring slowdown, recording 110,000 active job openings in April 2026 — an 8% drop from March and the second-lowest fiscal-year start in over six years, per Xpheno data. IT Services, the sector's largest employer, saw openings fall to 43,000, while Global Capability Centres recorded a steeper 21% monthly decline to 15,000 openings. Tech's share of total active talent demand in India slipped below 50% for the first time in months, with mid-junior roles hit hardest at a 25% drop. Industry observers attribute the cooling to global economic uncertainty, rising operational costs, and companies prioritising AI-driven efficiency over headcount growth. Entry-level and early-career professionals face the sharpest challenges, though Tier 2 and Tier 3 cities offered a rare bright spot with 10% year-on-year growth in demand.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Developer Builds AI Pipeline That Maps App Review Bugs Directly to Source Code

A developer extended their CLI tool, AppPulse, to go beyond classifying user reviews and crash reports by automatically identifying the root cause of bugs within the codebase. The tool pulls reviews from Google Play and the App Store, categorizes them using an LLM, and now uses a PydanticAI agent equipped with read-only code exploration tools to pinpoint affected files and suggest specific changes. PydanticAI was chosen for its structured output validation, lightweight dependencies, and built-in support for providers like OpenAI, Anthropic, and Ollama. Every analysis returns a validated data model containing the root cause, affected files, proposed changes, complexity rating, and testing notes. The architecture was also made pluggable, allowing the analysis backend to be swapped between Grok Build, Claude Code, or OpenAI Codex depending on preference.

0
ProgrammingDEV Community ·

Developers Can Review AI Code But Struggle to Write It, Study Warns

A growing concern among software developers is the rise of 'cognitive debt' caused by heavy reliance on AI coding tools. Developers find themselves able to review and validate AI-generated code but increasingly unable to produce it independently from scratch. This dependency is raising alarms about the long-term impact on programming skills and mental sharpness. The trend suggests that while AI boosts short-term productivity, it may be quietly eroding the foundational coding abilities of developers over time.

0
ProgrammingDEV Community ·

Spec-Driven Development positions specs, not code, as the source of truth in AI coding

A developer working with AI coding agents like Claude Code and Cursor found that 'vibe coding' — describing tasks and letting AI generate code — breaks down after a few iterations, as original intent gets lost. This led to adopting Spec-Driven Development (SDD), where a versioned markdown file containing requirements and acceptance criteria is placed in the repository and read by the AI before any code is generated. Unlike traditional waterfall documentation, the spec is treated as a living artifact updated through short iterative cycles: specify, plan, tasks, and implement. The approach is compared more closely to TDD than to rigid top-down planning, with tools like Spec Kit, AWS Kiro, Tessl, and OpenSpec already supporting the workflow. The author notes SDD adds overhead for small scripts but delivers clear value for maintained codebases, team environments, or heavy delegation to autonomous AI agents.

0
ProgrammingDEV Community ·

PrismShine tool aims to catch AI hallucinations at the source, not just the output

A developer has released PrismShine (version 0.2.2, Apache-2.0), an open-source Python library designed to verify AI-generated answers against the evidence provided to the model at runtime. Unlike most anti-hallucination tools that only score the final text output, PrismShine attempts to identify upstream failure causes such as empty retrieval, tool errors, or stale cache before or after the model generates a response. The tool produces a structured verdict that includes a decision, a named resolution gate, and an evidence hash intended for audit logging. In published benchmarks against Vectara's HHEM-2.1-Open on the HaluEval dataset, PrismShine-fast reportedly achieved a higher QA F1 score of 0.831 versus 0.746, with faster median response times. The library is available via pip and includes a browser-based demo that requires no API key.