Example,
Create table test(a number(5), b number);
insert into test values(1, 1);
insert into test values(22222, 2);
commit;

What will be the length/size in BYTES of the above column values?

For 1 number value, How many BYTES are allocated by oracle?