Question bank › Strings
Dsa Strings Easy

Count Vowels and Consonants

Write a function that counts the number of vowels and consonants in a given string. Ignore spaces and punctuation. Vowels are defined as 'a', 'e', 'i', 'o', 'u' (both uppercase and lowercase). Input format: - A single line containing the string to analyze. Output format: - Two comma-separated integers: the count of vowels followed by the count of consonants. Example: Input: Hello World! Output: 3,7

Key concepts

stringscountingvowels

Practise this out loud — free

Start a mock interview on THIS exact question — a voice AI interviewer opens with it, pushes back like a real onsite, then hands you an instant scorecard.

🎙 Practise this question now
Part of InterviewLab's verified interview question bank. We show the prompt and concepts to practise with — never a copy-paste solution.