Q1. What is the difference between single quotes and double quotes?
Single quotes preserve everything literally, while double quotes allow variable expansion, command substitution and some escape sequences. ```bash name="world" echo 'hell...
Technical Question Bank · Peer-Reviewed
Search and filter frequently asked interview questions across technical, programming, and behavioral domains. Tailor your interview preparation by difficulty for freshers or experienced developers (9 available).
Single quotes preserve everything literally, while double quotes allow variable expansion, command substitution and some escape sequences. ```bash name="world" echo 'hell...
Tailwind encodes variants as prefixes. Responsive breakpoints are mobile-first: sm, md, lg, xl and 2xl apply at that minimum width and above. ```html ... ``` That element...
`val` declares a read-only reference that cannot be reassigned after initialisation. `var` declares a mutable reference that can be reassigned. ```kotlin val name = "Ada"...
Encapsulation means bundling data with the operations that act on it and restricting direct access to the internals. The class exposes a deliberate public API and keeps f...
A plugin is a function passed to plugins in the config. It receives helpers including addUtilities, addComponents, addBase, addVariant, matchUtilities and theme. ```js co...
Generics let you write type-safe, reusable code without boxing or casts. The type parameter is resolved at compile time, and the JIT specialises for value types while sha...
Variance analysis compares actual results with the budget or forecast and explains the gap. I start by calculating the variance in absolute terms and as a percentage, the...
Shell variables hold strings and have no strict typing. `$?` is the exit status of the last command, where 0 means success. ```bash greeting="hello" echo "${greeting} wor...
Variance describes how generic types relate when their type arguments are related. `out T` (covariant) means `Producer` can be used where `Producer` is expected. `in T` (...
HireXTech uses essential storage to remember your study preferences and third-party advertising cookies via Google AdSense in compliance with GDPR. You can choose to enable essential cookies only or accept all cookies. Read our Privacy Policy.