Fundamentals
Everything on SkillVeris tagged Fundamentals — collected across the glossary, study notes, blog, and cheat sheets.
40 resources across 2 libraries
Study Notes(36)
Adaptive Design in UWP
Techniques for building UWP UI that adapts across phone, tablet, desktop, and Xbox using VisualStateManager, AdaptiveTrigger, and RelativePanel.
UWP Navigation
How Frame-based navigation, page parameters, NavigationView, and deep linking combine to structure multi-page UWP apps.
Data Binding Fundamentals
Learn how WPF connects UI elements to data sources through the Binding object, DataContext, and the {Binding} markup extension, eliminating manual UI-update co…
Data Binding Fundamentals
Learn how data binding connects UI elements to underlying data sources so views update automatically without manual synchronization code.
WCF Transactions
Understand how WCF flows ACID transactions across service boundaries using WS-AtomicTransaction, and how to control transaction scope, propagation, and complet…
async/await Fundamentals
How async/await really works under the hood in .NET, the differences between Task, Task<T>, and ValueTask<T>, and how to avoid the classic deadlock trap.
DNS Fundamentals on Windows Server
Learn how the Windows Server DNS role resolves names to IP addresses and why DNS is the backbone that Active Directory depends on.
Windows Server & AD Interview Questions
A curated set of commonly asked Windows Server and Active Directory interview questions with clear, technically grounded answers.
Migrations Fundamentals
Learn how EF Core migrations track model changes and generate versioned database schema updates while preserving existing data.
Blazor Interview Questions
Commonly asked Blazor interview questions covering render modes, component lifecycle, state management, JS interop, and performance, with clear answers.
Razor Pages Fundamentals
Learn the page-based programming model in ASP.NET Core where markup and code-behind logic live together, simplifying page-focused scenarios without a separate…
Introduction to DAX
DAX (Data Analysis Expressions) is the formula language powering calculations in Power BI, Excel Power Pivot, and Analysis Services.
Power BI Interview Questions
Common Power BI interview questions across fundamentals, DAX, modeling, and scenario-based problem solving, with strong answers.
OAuth Interview Questions
The OAuth 2.0 concepts and edge-case questions that come up most often in backend, security, and full-stack interviews.
Inheritance and Interfaces
Explore how VB.NET classes reuse and extend behavior through Inherits, Overridable/Overrides, and how Interfaces define implementation-free contracts.
Loops in Dart
Master Dart's for, for-in, while, and do-while loops, along with break, continue, and labeled loops for fine-grained control over iteration.
CICS Fundamentals for COBOL
Learn how CICS (Customer Information Control System) lets COBOL programs run as online, transaction-based applications, using pseudo-conversational design, EXE…
Logical Replication
Understand how PostgreSQL's publish/subscribe logical replication decodes row-level changes for selective replication, zero-downtime upgrades, and cross-versio…
EC2 Fundamentals
Learn what Amazon EC2 is, how virtual server instances work in the cloud, and how to launch, connect to, and manage them safely.
RDS Fundamentals
Amazon RDS is a managed relational database service that automates provisioning, patching, backups, and failover for engines like MySQL, PostgreSQL, and Aurora.
S3 Fundamentals
Learn how Amazon S3 stores data as objects in buckets, and the durability, consistency, and access-control model that makes it the backbone of AWS storage.
VPC Fundamentals
Learn how Amazon VPC creates an isolated, software-defined network inside AWS, including CIDR planning, default vs custom VPCs, and connectivity options.
gRPC Authentication with TLS
How gRPC uses TLS and mutual TLS to secure transport, and how call credentials layer token-based authorization on top for production services.
gRPC Interview Questions
A curated set of common gRPC interview questions covering fundamentals, streaming modes, error handling, and performance, with model answers.
Showing 24 of 36.
Interview Questions(4)
Shallow Copy vs Deep Copy: What Is the Difference?
A shallow copy duplicates only the top-level properties of an object or array, so nested objects are still shared by reference with the original, while a deep…
What Is the Temporal Dead Zone in JavaScript?
The Temporal Dead Zone (TDZ) is the span of code between the start of a block and the line where a let or const variable is actually declared, during which the…
What Is the IIFE Pattern in JavaScript?
An IIFE (Immediately Invoked Function Expression) is a function that is defined and executed in the same statement, typically written as (function () { ... })(…
What Are Symbols in JavaScript and Why Use Them?
A Symbol is a primitive value created with Symbol(), guaranteed to be unique even if two symbols share the same description, used mainly as collision-free obje…