Its more of a doubt
At the start of transmission, the data that can be sent =min(4kb,6kb)=4kb
So 4096 bytes are sent
then the congestion window size doubles(if I assume the connection is in slow phase)=8192kb
so next max data that can be send=min(8kb,6kb)=6kb
total data sent uptil now=4096+6144=10240 bytes
and the data is acknowledged upto 8192 bytes.
So 2048 bytes are unacknowledged and currently only 4096 bytes can be sent which is hence the current window..is it right?