In mono-temporal Anchor Modeling (which is what is available now) you have three choices:
1. If the need to distinguish what was updated is rare, you could opt for having both knots on the same tie. You can still retrieve latest values, or values as they were at some point in time exactly as before. However, once you need to know what had changed, you will need to inspect previous rows and compare values. The tie will also not be in 6NF, and for these reasons we recommend against this solution, but it is not forbidden.
2. Make a separate historized knotted tie for "Deleted". This is a purer solution, but gives you extra maintenance, since you now have two ties with a dependency. If Questions can be assigned to Forms without having an Ordinal set, this is also a better solution. The idea is to give Deleted and Ordinal their own separate timelines over which they are historized.
3. Make a tie of three anchors, Question, Form, Assignment. On the Assignment anchor you can then put two knotted historized attributes, Ordinal and Deleted. There will be as many instances in the Assignment anchor as there are instances of the relationship between Question and Form. This way Ordinal and Deleted again have their own separated timelines. This solution has the advantage of being easily extendable if more attributes of the relationship are needed.
I would opt for solution 3, since it is the easiest to maintain.
In bi-temporal Anchor Modeling, when it is ready, deletes are handled transparently, and need not be modeled explicitly as part of the domain. However, I would still use mono-temporal Anchor Modeling if there are relatively few things that are deletable in my domain, since bi-temporality comes with a price both in performance and maintenance.