Angular and RxJS Online Test

Test real-world Angular and RxJS skills that matter in a world with AI. Protected by AI proctoring.

For jobseekers

Practice your skills and earn a certificate of achievement when you score in the top 25%.

Take a Practice Test

For companies

Screen real Angular and RxJS skills, flag human or AI assistance, and interview the right people.

About the test

The Angular and RxJS online test assesses knowledge of the Angular front-end web framework and reactive programming with RxJS. This test includes solving live coding problems in Angular.

The assessment includes work-sample tasks, such as:

  • Building small apps from components.
  • Encapsulating logic and features using services.
  • Using subscribe to observe and react to the values emitted by an observable.

A good Angular developer should have an in-depth understanding of Angular components and should be able to use that knowledge to create robust, scalable, and user-friendly web applications, as well as use RxJS to implement asynchronous and event-driven features.

Sample public questions

Easy
10 min
code
Public
AI-resistant
Angular
Components
Directives

Finish the AddressListComponent's template so that it renders one li element per address and it correctly one-way binds each field of the AddressComponent field.

For example, if the addresses array is:

[{ street: "Third Avenue‎", city: "New York", zipCode: "10001" },
 { street: "Constitution Avenue", city: "Washington", zipCode: "20001" }]

the template should render to:

<ul>
  <li>
    <address>
      <p>Third Avenue</p>
      <p>New York</p>
      <p>10001</p>
    </address>
  </li>
  <li>
    <app-address>
      <p>Constitution Avenue</p>
      <p>Washington</p>
      <p>20001</p>
    </address>
  </li>
</ul>

The code for running the example case locally is provided here.

Easy
7 min
mca
Public
RxJS
Creation Operator
Pipeable Operator
RxJS Observable
RxJS Subject
New

Consider the following RxJS code for testing how a given damage Subject affects the health of a Player object in a game:

class Player {
  name: string;
  health: number;
  damageSubscription: Subscription;

  constructor(name, damageSubject) {
    this.name = name;
    this.health = 100;
    this.damageSubscription = damageSubject.subscribe((damage) => {
      this.health -= damage;
      console.log(this.name + " was hurt for " + damage + " damage");
    });
  }

  takeCover() {
    this.damageSubscription.unsubscribe();
    interval(1000)
      .pipe(
        takeWhile(() => this.health < 100),
        map(() => 10),
        tap(() => console.log(this.name + " is healing, current health is " + this.health))
      )
      .subscribe((heal) => {
        this.health += heal;
      });
  }
}
const explosion = new Subject();
const john = new Player("John", explosion);
const sam = new Player("Sam", explosion);

explosion.next(10);
john.takeCover();
explosion.next(20);

const paul = new Player("Paul", explosion);
sam.takeCover();
explosion.next(20);
paul.takeCover();

What options will be true after the above code is run?

For jobseekers: get certified

Earn a free certificate by achieving top 25% on the Angular and RxJS test with public questions.

Take a Certification Test

Sample silver certificate

Sunshine Caprio

Java and SQL
TestDome
Certificate
TestDome logo icon

For companies: premium questions

Buy TestDome to access premium questions that can't be practiced.

Ready to interview?

Use these and other questions from our library with our
Code Interview Platform.

Sample image of the interviews app.

26 more premium Angular and RxJS questions

Clothes, Structural Directive, Log Post Data, Dictionary Definition, Fresh Food, Dark Mode, Upgrades, User Form, Count Binding, Decimal Pipe, Single Input, Currency Format, Report Summary, Toggle Border, Delivery Details, Weather Form, Cards Widget, Awesome Tracking, Checkout Form, Tally Counter, Character Points, Choose Items, Movie Details, Observing Username, Optional Ingredient, Cats and Dogs.

Skills and topics tested

  • Angular
  • Components
  • Structural Directive
  • RxJS
  • RxJS Observable
  • Creation Operator
  • Pipeable Operator
  • Bug Fixing
  • RxJS Subject
  • Event Binding
  • Event Handling
  • Directives
  • Forms
  • Two-Way Binding
  • Expressions
  • Angular Pipes
  • One-Way Binding
  • Data Binding
  • Video
  • HTTP Routing
  • Services

For job roles

  • Angular Developer
  • RxJS Developer

Sample candidate report

Need it fast? AI-crafted tests for your job role

TestDome generates custom tests tailored to the specific skills you need for your job role.
Sign up now to try it out and see how AI can streamline your hiring process!

Use AI Test Generator

What others say

Decorative quote

Simple, straight-forward technical testing

TestDome is simple, provides a reasonable (though not extensive) battery of tests to choose from, and doesn't take the candidate an inordinate amount of time. It also simulates working pressure with the time limits.

Jan Opperman, Grindrod Bank

Product reviews

G2 - Crowd Badge
G2 - High Performer - Winter (2025)
Capterra - 4.5 Stars
Capterra - Ease of Use (2025)

Used by

Solve all your skill testing needs

150+ Pre-made tests

From web development and database administration to accounting and MS Excel. See all pre-made tests.

130+ skills

From SQL and Python to Attention to Detail and Logical Reasoning. See all questions to filter by skill.

AI-ready assessments

Test what matters in a world with AI, protected by AI proctoring that flags any assistance.

How TestDome works

1

Choose a pre-made test
or create a custom test

2

Invite candidates via
email, URL, or your ATS

3

Candidates take
a test remotely

4

Sort candidates and
get individual reports

Enterprise-ready technical solutions

Multi-user Account

Support multiple users with shared permissions and role-based access control.

GDPR compliance

TestDome is fully GDPR compliant, see our legal pages .

Single Sign-On (SSO)

Use SSO for easy and secure user authentication for multiple users in your company. Request access.

Data anonymization

Automatic data anonymization after a defined period of time — or on-demand.

Want to know more?

Related Angular and RxJS Tests: