query_id
stringlengths
36
36
fsm_id
stringclasses
96 values
fsm_json
stringclasses
96 values
difficulty_level
int64
1
4
transition_matrix
stringclasses
93 values
query
stringlengths
194
452
answer
stringclasses
13 values
substring_index
int64
1
9
number_of_states
int64
2
4
number_of_alphabets
int64
1
4
state_alpha_combo
stringclasses
12 values
transition_matrix_triplets
stringclasses
93 values
5f633ad8-a752-4557-a71d-8dee0774d3b7
1e8292fe-f8a5-476a-b6b8-e1823453ecff
{"states": ["s0", "s6", "s7", "s8"], "alphabets": "a", "accepting_states": ["s6", "s7"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s7"]}, {"fromState": "s7", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s6"]}]}
3
{"a":{"s0":"s8","s6":"s7","s7":"s6","s8":"s6"}}
Given the following FSM transition rules: ( s0 , a , s8 ) ( s6 , a , s7 ) ( s7 , a , s6 ) ( s8 , a , s6 ) With the initial state: s0, and accepting states: ['s6', 's7'], What will be the state after reading the following input: a a a a a a a
s7
7
4
1
4_1
( s0 , a , s8 ) ( s6 , a , s7 ) ( s7 , a , s6 ) ( s8 , a , s6 )
02bee969-69e2-4c96-8249-6854469a731a
1e8292fe-f8a5-476a-b6b8-e1823453ecff
{"states": ["s0", "s6", "s7", "s8"], "alphabets": "a", "accepting_states": ["s6", "s7"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s7"]}, {"fromState": "s7", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s6"]}]}
3
{"a":{"s0":"s8","s6":"s7","s7":"s6","s8":"s6"}}
Given the following FSM transition rules: ( s0 , a , s8 ) ( s6 , a , s7 ) ( s7 , a , s6 ) ( s8 , a , s6 ) With the initial state: s0, and accepting states: ['s6', 's7'], What will be the state after reading the following input: a a a a a a a a
s6
8
4
1
4_1
( s0 , a , s8 ) ( s6 , a , s7 ) ( s7 , a , s6 ) ( s8 , a , s6 )
8d20d7d2-e2cc-4240-a164-0a45906d6ec6
1e8292fe-f8a5-476a-b6b8-e1823453ecff
{"states": ["s0", "s6", "s7", "s8"], "alphabets": "a", "accepting_states": ["s6", "s7"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s7"]}, {"fromState": "s7", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s6"]}]}
3
{"a":{"s0":"s8","s6":"s7","s7":"s6","s8":"s6"}}
Given the following FSM transition rules: ( s0 , a , s8 ) ( s6 , a , s7 ) ( s7 , a , s6 ) ( s8 , a , s6 ) With the initial state: s0, and accepting states: ['s6', 's7'], What will be the state after reading the following input: a a a a a a a a a
s7
9
4
1
4_1
( s0 , a , s8 ) ( s6 , a , s7 ) ( s7 , a , s6 ) ( s8 , a , s6 )
1a67cabd-f68c-4c49-9fa5-6de684a70bb5
b5db5f47-5460-4bb9-bd65-508e084ccc19
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "a", "accepting_states": ["s3", "s1", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}]}
3
{"a":{"s0":"s6","s1":"s1","s3":"s1","s6":"s3"}}
Given the following FSM transition rules: ( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 ) With the initial state: s0, and accepting states: ['s3', 's1', 's6'], What will be the state after reading the following input: a
s6
1
4
1
4_1
( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 )
9a801f9f-005f-4d97-9016-6f6fa0118c5b
b5db5f47-5460-4bb9-bd65-508e084ccc19
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "a", "accepting_states": ["s3", "s1", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}]}
3
{"a":{"s0":"s6","s1":"s1","s3":"s1","s6":"s3"}}
Given the following FSM transition rules: ( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 ) With the initial state: s0, and accepting states: ['s3', 's1', 's6'], What will be the state after reading the following input: a a
s3
2
4
1
4_1
( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 )
4e7b9f3a-eafc-46cc-8a55-92051ae333ee
b5db5f47-5460-4bb9-bd65-508e084ccc19
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "a", "accepting_states": ["s3", "s1", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}]}
3
{"a":{"s0":"s6","s1":"s1","s3":"s1","s6":"s3"}}
Given the following FSM transition rules: ( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 ) With the initial state: s0, and accepting states: ['s3', 's1', 's6'], What will be the state after reading the following input: a a a
s1
3
4
1
4_1
( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 )
1fb38a68-1a8c-4ebe-be98-07d7b6d457a4
b5db5f47-5460-4bb9-bd65-508e084ccc19
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "a", "accepting_states": ["s3", "s1", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}]}
3
{"a":{"s0":"s6","s1":"s1","s3":"s1","s6":"s3"}}
Given the following FSM transition rules: ( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 ) With the initial state: s0, and accepting states: ['s3', 's1', 's6'], What will be the state after reading the following input: a a a a
s1
4
4
1
4_1
( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 )
c4af01a2-1451-41ae-88dc-a706969f9686
b5db5f47-5460-4bb9-bd65-508e084ccc19
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "a", "accepting_states": ["s3", "s1", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}]}
3
{"a":{"s0":"s6","s1":"s1","s3":"s1","s6":"s3"}}
Given the following FSM transition rules: ( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 ) With the initial state: s0, and accepting states: ['s3', 's1', 's6'], What will be the state after reading the following input: a a a a a
s1
5
4
1
4_1
( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 )
446e0dcd-f884-4f01-aaf7-452673e48c41
b5db5f47-5460-4bb9-bd65-508e084ccc19
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "a", "accepting_states": ["s3", "s1", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}]}
3
{"a":{"s0":"s6","s1":"s1","s3":"s1","s6":"s3"}}
Given the following FSM transition rules: ( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 ) With the initial state: s0, and accepting states: ['s3', 's1', 's6'], What will be the state after reading the following input: a a a a a a
s1
6
4
1
4_1
( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 )
789a76de-8986-4c0d-8ed4-69526c648a32
b5db5f47-5460-4bb9-bd65-508e084ccc19
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "a", "accepting_states": ["s3", "s1", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}]}
3
{"a":{"s0":"s6","s1":"s1","s3":"s1","s6":"s3"}}
Given the following FSM transition rules: ( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 ) With the initial state: s0, and accepting states: ['s3', 's1', 's6'], What will be the state after reading the following input: a a a a a a a
s1
7
4
1
4_1
( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 )
6eb1c884-4452-4cd2-898b-4aaed9c10289
b5db5f47-5460-4bb9-bd65-508e084ccc19
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "a", "accepting_states": ["s3", "s1", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}]}
3
{"a":{"s0":"s6","s1":"s1","s3":"s1","s6":"s3"}}
Given the following FSM transition rules: ( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 ) With the initial state: s0, and accepting states: ['s3', 's1', 's6'], What will be the state after reading the following input: a a a a a a a a
s1
8
4
1
4_1
( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 )
5783e9b2-23a9-4ad8-878c-be2b2a078338
b5db5f47-5460-4bb9-bd65-508e084ccc19
{"states": ["s0", "s1", "s3", "s6"], "alphabets": "a", "accepting_states": ["s3", "s1", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s3"]}]}
3
{"a":{"s0":"s6","s1":"s1","s3":"s1","s6":"s3"}}
Given the following FSM transition rules: ( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 ) With the initial state: s0, and accepting states: ['s3', 's1', 's6'], What will be the state after reading the following input: a a a a a a a a a
s1
9
4
1
4_1
( s0 , a , s6 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s6 , a , s3 )
910b6064-dc89-405c-ad14-7fce61610762
1855cd07-490f-43fd-9707-3940333b63a0
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}]}
2
{"a":{"s0":"s4","s1":"s3","s3":"s3","s4":"s1"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 ) With the initial state: s0, and accepting states: ['s0'], What will be the state after reading the following input: a
s4
1
4
1
4_1
( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 )
04bfe824-fd4b-4d79-9b5e-7df2098c6102
1855cd07-490f-43fd-9707-3940333b63a0
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}]}
2
{"a":{"s0":"s4","s1":"s3","s3":"s3","s4":"s1"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 ) With the initial state: s0, and accepting states: ['s0'], What will be the state after reading the following input: a a
s1
2
4
1
4_1
( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 )
56e0656a-d89e-4f5e-b19c-3dc261189a96
1855cd07-490f-43fd-9707-3940333b63a0
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}]}
2
{"a":{"s0":"s4","s1":"s3","s3":"s3","s4":"s1"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 ) With the initial state: s0, and accepting states: ['s0'], What will be the state after reading the following input: a a a
s3
3
4
1
4_1
( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 )
0bf7be8e-f045-403f-a420-5c52b5a83a31
1855cd07-490f-43fd-9707-3940333b63a0
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}]}
2
{"a":{"s0":"s4","s1":"s3","s3":"s3","s4":"s1"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 ) With the initial state: s0, and accepting states: ['s0'], What will be the state after reading the following input: a a a a
s3
4
4
1
4_1
( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 )
d5001b50-35a7-4809-94f0-780847008761
1855cd07-490f-43fd-9707-3940333b63a0
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}]}
2
{"a":{"s0":"s4","s1":"s3","s3":"s3","s4":"s1"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 ) With the initial state: s0, and accepting states: ['s0'], What will be the state after reading the following input: a a a a a
s3
5
4
1
4_1
( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 )
84a4cf40-0949-42ab-8eae-d77b551b5ace
1855cd07-490f-43fd-9707-3940333b63a0
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}]}
2
{"a":{"s0":"s4","s1":"s3","s3":"s3","s4":"s1"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 ) With the initial state: s0, and accepting states: ['s0'], What will be the state after reading the following input: a a a a a a
s3
6
4
1
4_1
( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 )
f4c0cfe5-e098-4775-a336-aa3927399a98
1855cd07-490f-43fd-9707-3940333b63a0
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}]}
2
{"a":{"s0":"s4","s1":"s3","s3":"s3","s4":"s1"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 ) With the initial state: s0, and accepting states: ['s0'], What will be the state after reading the following input: a a a a a a a
s3
7
4
1
4_1
( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 )
8c7e3408-3763-4888-99f9-4e856ea1e0df
1855cd07-490f-43fd-9707-3940333b63a0
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}]}
2
{"a":{"s0":"s4","s1":"s3","s3":"s3","s4":"s1"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 ) With the initial state: s0, and accepting states: ['s0'], What will be the state after reading the following input: a a a a a a a a
s3
8
4
1
4_1
( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 )
096e7820-dc8c-4efc-870c-d3b16d974596
1855cd07-490f-43fd-9707-3940333b63a0
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "a", "accepting_states": ["s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}]}
2
{"a":{"s0":"s4","s1":"s3","s3":"s3","s4":"s1"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 ) With the initial state: s0, and accepting states: ['s0'], What will be the state after reading the following input: a a a a a a a a a
s3
9
4
1
4_1
( s0 , a , s4 ) ( s1 , a , s3 ) ( s3 , a , s3 ) ( s4 , a , s1 )
9264e9a5-7e84-4a5b-b29f-39699cca50c7
3fac1b27-755e-4380-a9a9-a88282dec1d1
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "a", "accepting_states": ["s4", "s0", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's3'], What will be the state after reading the following input: a
s4
1
4
1
4_1
( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 )
1c63debb-cb6f-4dca-9832-5778303eb2ee
3fac1b27-755e-4380-a9a9-a88282dec1d1
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "a", "accepting_states": ["s4", "s0", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's3'], What will be the state after reading the following input: a a
s3
2
4
1
4_1
( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 )
75727113-f6d8-4da9-b467-a5485cf7c49f
3fac1b27-755e-4380-a9a9-a88282dec1d1
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "a", "accepting_states": ["s4", "s0", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's3'], What will be the state after reading the following input: a a a
s2
3
4
1
4_1
( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 )
c9c3a1c1-eca9-47ab-8cc0-ee1b83643d4c
3fac1b27-755e-4380-a9a9-a88282dec1d1
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "a", "accepting_states": ["s4", "s0", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's3'], What will be the state after reading the following input: a a a a
s3
4
4
1
4_1
( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 )
f05abac2-3f0e-46cb-addc-d34f5c193724
3fac1b27-755e-4380-a9a9-a88282dec1d1
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "a", "accepting_states": ["s4", "s0", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's3'], What will be the state after reading the following input: a a a a a
s2
5
4
1
4_1
( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 )
5b402135-fe0d-457e-b8d4-17f146d1b327
3fac1b27-755e-4380-a9a9-a88282dec1d1
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "a", "accepting_states": ["s4", "s0", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's3'], What will be the state after reading the following input: a a a a a a
s3
6
4
1
4_1
( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 )
4819a693-7c70-4689-b687-cdc8288525e0
3fac1b27-755e-4380-a9a9-a88282dec1d1
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "a", "accepting_states": ["s4", "s0", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's3'], What will be the state after reading the following input: a a a a a a a
s2
7
4
1
4_1
( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 )
3492d40e-b336-4ce6-b176-1d2a49101d45
3fac1b27-755e-4380-a9a9-a88282dec1d1
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "a", "accepting_states": ["s4", "s0", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's3'], What will be the state after reading the following input: a a a a a a a a
s3
8
4
1
4_1
( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 )
721e103c-cda0-4b7c-8107-db1e52cae1b4
3fac1b27-755e-4380-a9a9-a88282dec1d1
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "a", "accepting_states": ["s4", "s0", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's3'], What will be the state after reading the following input: a a a a a a a a a
s2
9
4
1
4_1
( s0 , a , s4 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s4 , a , s3 )
f5a15229-6a30-46d1-bb40-ff38b342e7b3
4e4218a0-9b50-4a31-b591-1babd797f367
{"states": ["s0", "s8", "s10", "s12"], "alphabets": "a", "accepting_states": ["s8", "s10"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]}
3
{"a":{"s0":"s10","s8":"s12","s10":"s8","s12":"s0"}}
Given the following FSM transition rules: ( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 ) With the initial state: s0, and accepting states: ['s8', 's10'], What will be the state after reading the following input: a
s10
1
4
1
4_1
( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 )
de8edcfd-36d2-4746-94b8-3afcc66aa52b
4e4218a0-9b50-4a31-b591-1babd797f367
{"states": ["s0", "s8", "s10", "s12"], "alphabets": "a", "accepting_states": ["s8", "s10"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]}
3
{"a":{"s0":"s10","s8":"s12","s10":"s8","s12":"s0"}}
Given the following FSM transition rules: ( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 ) With the initial state: s0, and accepting states: ['s8', 's10'], What will be the state after reading the following input: a a
s8
2
4
1
4_1
( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 )
7ccb86f6-2eb1-4743-bdbf-df7164f6628f
4e4218a0-9b50-4a31-b591-1babd797f367
{"states": ["s0", "s8", "s10", "s12"], "alphabets": "a", "accepting_states": ["s8", "s10"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]}
3
{"a":{"s0":"s10","s8":"s12","s10":"s8","s12":"s0"}}
Given the following FSM transition rules: ( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 ) With the initial state: s0, and accepting states: ['s8', 's10'], What will be the state after reading the following input: a a a
s12
3
4
1
4_1
( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 )
e9843b64-81b0-474f-b32c-bd0bb327c2b1
4e4218a0-9b50-4a31-b591-1babd797f367
{"states": ["s0", "s8", "s10", "s12"], "alphabets": "a", "accepting_states": ["s8", "s10"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]}
3
{"a":{"s0":"s10","s8":"s12","s10":"s8","s12":"s0"}}
Given the following FSM transition rules: ( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 ) With the initial state: s0, and accepting states: ['s8', 's10'], What will be the state after reading the following input: a a a a
s0
4
4
1
4_1
( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 )
4b608a6e-1691-427b-8851-4c6f16dc9d9a
4e4218a0-9b50-4a31-b591-1babd797f367
{"states": ["s0", "s8", "s10", "s12"], "alphabets": "a", "accepting_states": ["s8", "s10"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]}
3
{"a":{"s0":"s10","s8":"s12","s10":"s8","s12":"s0"}}
Given the following FSM transition rules: ( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 ) With the initial state: s0, and accepting states: ['s8', 's10'], What will be the state after reading the following input: a a a a a
s10
5
4
1
4_1
( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 )
1cf2e822-6e77-43a0-9fc6-9c0532eb2ee1
4e4218a0-9b50-4a31-b591-1babd797f367
{"states": ["s0", "s8", "s10", "s12"], "alphabets": "a", "accepting_states": ["s8", "s10"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]}
3
{"a":{"s0":"s10","s8":"s12","s10":"s8","s12":"s0"}}
Given the following FSM transition rules: ( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 ) With the initial state: s0, and accepting states: ['s8', 's10'], What will be the state after reading the following input: a a a a a a
s8
6
4
1
4_1
( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 )
eff97983-1a85-46dc-aeab-d4f7875e5f14
4e4218a0-9b50-4a31-b591-1babd797f367
{"states": ["s0", "s8", "s10", "s12"], "alphabets": "a", "accepting_states": ["s8", "s10"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]}
3
{"a":{"s0":"s10","s8":"s12","s10":"s8","s12":"s0"}}
Given the following FSM transition rules: ( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 ) With the initial state: s0, and accepting states: ['s8', 's10'], What will be the state after reading the following input: a a a a a a a
s12
7
4
1
4_1
( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 )
b8790e73-6514-4f1f-b6b5-9cf596591fcf
4e4218a0-9b50-4a31-b591-1babd797f367
{"states": ["s0", "s8", "s10", "s12"], "alphabets": "a", "accepting_states": ["s8", "s10"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]}
3
{"a":{"s0":"s10","s8":"s12","s10":"s8","s12":"s0"}}
Given the following FSM transition rules: ( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 ) With the initial state: s0, and accepting states: ['s8', 's10'], What will be the state after reading the following input: a a a a a a a a
s0
8
4
1
4_1
( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 )
f5179c71-628a-476e-9288-ce0772cd98f2
4e4218a0-9b50-4a31-b591-1babd797f367
{"states": ["s0", "s8", "s10", "s12"], "alphabets": "a", "accepting_states": ["s8", "s10"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s10"]}, {"fromState": "s8", "symbol": "a", "toStates": ["s12"]}, {"fromState": "s10", "symbol": "a", "toStates": ["s8"]}, {"fromState": "s12", "symbol": "a", "toStates": ["s0"]}]}
3
{"a":{"s0":"s10","s8":"s12","s10":"s8","s12":"s0"}}
Given the following FSM transition rules: ( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 ) With the initial state: s0, and accepting states: ['s8', 's10'], What will be the state after reading the following input: a a a a a a a a a
s10
9
4
1
4_1
( s0 , a , s10 ) ( s8 , a , s12 ) ( s10 , a , s8 ) ( s12 , a , s0 )
c81bd99a-cd40-40a7-bb85-d12c0ea46322
0324a3fe-0b95-4566-9494-ecf699f29223
{"states": ["s0", "s4", "s5", "s6"], "alphabets": "a", "accepting_states": ["s0", "s5", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}]}
2
{"a":{"s0":"s4","s4":"s6","s5":"s4","s6":"s5"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 ) With the initial state: s0, and accepting states: ['s0', 's5', 's6'], What will be the state after reading the following input: a
s4
1
4
1
4_1
( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 )
a8be2416-41ea-498b-b993-8415d53db183
0324a3fe-0b95-4566-9494-ecf699f29223
{"states": ["s0", "s4", "s5", "s6"], "alphabets": "a", "accepting_states": ["s0", "s5", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}]}
2
{"a":{"s0":"s4","s4":"s6","s5":"s4","s6":"s5"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 ) With the initial state: s0, and accepting states: ['s0', 's5', 's6'], What will be the state after reading the following input: a a
s6
2
4
1
4_1
( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 )
979a747f-9854-4008-bbef-85b94eba004c
0324a3fe-0b95-4566-9494-ecf699f29223
{"states": ["s0", "s4", "s5", "s6"], "alphabets": "a", "accepting_states": ["s0", "s5", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}]}
2
{"a":{"s0":"s4","s4":"s6","s5":"s4","s6":"s5"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 ) With the initial state: s0, and accepting states: ['s0', 's5', 's6'], What will be the state after reading the following input: a a a
s5
3
4
1
4_1
( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 )
214f2e88-fe89-43d4-8c30-2975e6eaa428
0324a3fe-0b95-4566-9494-ecf699f29223
{"states": ["s0", "s4", "s5", "s6"], "alphabets": "a", "accepting_states": ["s0", "s5", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}]}
2
{"a":{"s0":"s4","s4":"s6","s5":"s4","s6":"s5"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 ) With the initial state: s0, and accepting states: ['s0', 's5', 's6'], What will be the state after reading the following input: a a a a
s4
4
4
1
4_1
( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 )
c0abbae7-b671-4783-a70b-cc4291fa759c
0324a3fe-0b95-4566-9494-ecf699f29223
{"states": ["s0", "s4", "s5", "s6"], "alphabets": "a", "accepting_states": ["s0", "s5", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}]}
2
{"a":{"s0":"s4","s4":"s6","s5":"s4","s6":"s5"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 ) With the initial state: s0, and accepting states: ['s0', 's5', 's6'], What will be the state after reading the following input: a a a a a
s6
5
4
1
4_1
( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 )
753e2a6e-20ee-46a3-ba75-c121cdbdab2d
0324a3fe-0b95-4566-9494-ecf699f29223
{"states": ["s0", "s4", "s5", "s6"], "alphabets": "a", "accepting_states": ["s0", "s5", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}]}
2
{"a":{"s0":"s4","s4":"s6","s5":"s4","s6":"s5"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 ) With the initial state: s0, and accepting states: ['s0', 's5', 's6'], What will be the state after reading the following input: a a a a a a
s5
6
4
1
4_1
( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 )
eeb77eb0-be6a-4054-9f71-9eff80719f9a
0324a3fe-0b95-4566-9494-ecf699f29223
{"states": ["s0", "s4", "s5", "s6"], "alphabets": "a", "accepting_states": ["s0", "s5", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}]}
2
{"a":{"s0":"s4","s4":"s6","s5":"s4","s6":"s5"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 ) With the initial state: s0, and accepting states: ['s0', 's5', 's6'], What will be the state after reading the following input: a a a a a a a
s4
7
4
1
4_1
( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 )
5d0b7c62-75cc-4e4d-8c6e-f7ee5515c5e8
0324a3fe-0b95-4566-9494-ecf699f29223
{"states": ["s0", "s4", "s5", "s6"], "alphabets": "a", "accepting_states": ["s0", "s5", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}]}
2
{"a":{"s0":"s4","s4":"s6","s5":"s4","s6":"s5"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 ) With the initial state: s0, and accepting states: ['s0', 's5', 's6'], What will be the state after reading the following input: a a a a a a a a
s6
8
4
1
4_1
( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 )
83b49b59-1979-42c0-a492-76a642e1976c
0324a3fe-0b95-4566-9494-ecf699f29223
{"states": ["s0", "s4", "s5", "s6"], "alphabets": "a", "accepting_states": ["s0", "s5", "s6"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s6"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s6", "symbol": "a", "toStates": ["s5"]}]}
2
{"a":{"s0":"s4","s4":"s6","s5":"s4","s6":"s5"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 ) With the initial state: s0, and accepting states: ['s0', 's5', 's6'], What will be the state after reading the following input: a a a a a a a a a
s5
9
4
1
4_1
( s0 , a , s4 ) ( s4 , a , s6 ) ( s5 , a , s4 ) ( s6 , a , s5 )
40341250-0ea6-4475-bf5f-1fc8f9767db7
491fbf4f-800e-4c33-84ad-45b0a33be0c5
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s2", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s0","s1":"s2","s2":"s0","s3":"s0"},"b":{"s0":"s3","s1":"s0","s2":"s3","s3":"s1"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 ) With the initial state: s0, and accepting states: ['s0', 's1', 's2', 's3'], What will be the state after reading the following input: b
s3
1
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 )
a94a9aed-1c7f-4fe3-a0e1-ce4830dcbc6a
491fbf4f-800e-4c33-84ad-45b0a33be0c5
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s2", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s0","s1":"s2","s2":"s0","s3":"s0"},"b":{"s0":"s3","s1":"s0","s2":"s3","s3":"s1"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 ) With the initial state: s0, and accepting states: ['s0', 's1', 's2', 's3'], What will be the state after reading the following input: b b
s1
2
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 )
8f784f40-fada-4d2d-98b7-49737b7a2d9b
491fbf4f-800e-4c33-84ad-45b0a33be0c5
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s2", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s0","s1":"s2","s2":"s0","s3":"s0"},"b":{"s0":"s3","s1":"s0","s2":"s3","s3":"s1"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 ) With the initial state: s0, and accepting states: ['s0', 's1', 's2', 's3'], What will be the state after reading the following input: b b b
s0
3
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 )
ff9c1d61-fc52-43fe-b75a-0de40a2fe1e5
491fbf4f-800e-4c33-84ad-45b0a33be0c5
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s2", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s0","s1":"s2","s2":"s0","s3":"s0"},"b":{"s0":"s3","s1":"s0","s2":"s3","s3":"s1"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 ) With the initial state: s0, and accepting states: ['s0', 's1', 's2', 's3'], What will be the state after reading the following input: b b b b
s3
4
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 )
b5b64e3d-61fc-4a7c-8600-1f221d367a27
491fbf4f-800e-4c33-84ad-45b0a33be0c5
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s2", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s0","s1":"s2","s2":"s0","s3":"s0"},"b":{"s0":"s3","s1":"s0","s2":"s3","s3":"s1"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 ) With the initial state: s0, and accepting states: ['s0', 's1', 's2', 's3'], What will be the state after reading the following input: b b b b a
s0
5
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 )
2eaa15e8-3376-4cc1-8057-c600cc2dd6ed
491fbf4f-800e-4c33-84ad-45b0a33be0c5
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s2", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s0","s1":"s2","s2":"s0","s3":"s0"},"b":{"s0":"s3","s1":"s0","s2":"s3","s3":"s1"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 ) With the initial state: s0, and accepting states: ['s0', 's1', 's2', 's3'], What will be the state after reading the following input: b b b b a a
s0
6
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 )
3565c4b4-b8a8-400d-845f-6f134c84b5ec
491fbf4f-800e-4c33-84ad-45b0a33be0c5
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s2", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s0","s1":"s2","s2":"s0","s3":"s0"},"b":{"s0":"s3","s1":"s0","s2":"s3","s3":"s1"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 ) With the initial state: s0, and accepting states: ['s0', 's1', 's2', 's3'], What will be the state after reading the following input: b b b b a a a
s0
7
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 )
f11d8b71-82ce-4f33-b011-6b7d251f6658
491fbf4f-800e-4c33-84ad-45b0a33be0c5
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s2", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s0","s1":"s2","s2":"s0","s3":"s0"},"b":{"s0":"s3","s1":"s0","s2":"s3","s3":"s1"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 ) With the initial state: s0, and accepting states: ['s0', 's1', 's2', 's3'], What will be the state after reading the following input: b b b b a a a a
s0
8
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 )
1d830934-2d6a-4cf5-b23e-5390cf0d3401
491fbf4f-800e-4c33-84ad-45b0a33be0c5
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s2", "s3"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s1"]}]}
2
{"a":{"s0":"s0","s1":"s2","s2":"s0","s3":"s0"},"b":{"s0":"s3","s1":"s0","s2":"s3","s3":"s1"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 ) With the initial state: s0, and accepting states: ['s0', 's1', 's2', 's3'], What will be the state after reading the following input: b b b b a a a a a
s0
9
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s2 ) ( s2 , a , s0 ) ( s3 , a , s0 ) ( s0 , b , s3 ) ( s1 , b , s0 ) ( s2 , b , s3 ) ( s3 , b , s1 )
c888b3de-f6dc-4b01-be48-80dfe34cf878
9e1cfdec-4191-4d84-8edf-47134b9e8218
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s4"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0","s1":"s1","s3":"s1","s4":"s1"},"b":{"s0":"s1","s1":"s3","s3":"s4","s4":"s0"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 ) With the initial state: s0, and accepting states: ['s0', 's1', 's4'], What will be the state after reading the following input: a
s0
1
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 )
af465574-48ed-4e5f-897b-fb67a7590d8b
9e1cfdec-4191-4d84-8edf-47134b9e8218
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s4"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0","s1":"s1","s3":"s1","s4":"s1"},"b":{"s0":"s1","s1":"s3","s3":"s4","s4":"s0"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 ) With the initial state: s0, and accepting states: ['s0', 's1', 's4'], What will be the state after reading the following input: a a
s0
2
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 )
ec1e30cb-4e21-48a8-998a-f42214ddc318
9e1cfdec-4191-4d84-8edf-47134b9e8218
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s4"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0","s1":"s1","s3":"s1","s4":"s1"},"b":{"s0":"s1","s1":"s3","s3":"s4","s4":"s0"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 ) With the initial state: s0, and accepting states: ['s0', 's1', 's4'], What will be the state after reading the following input: a a a
s0
3
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 )
2f550582-9a59-4323-ba0a-3c54ae6c62f6
9e1cfdec-4191-4d84-8edf-47134b9e8218
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s4"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0","s1":"s1","s3":"s1","s4":"s1"},"b":{"s0":"s1","s1":"s3","s3":"s4","s4":"s0"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 ) With the initial state: s0, and accepting states: ['s0', 's1', 's4'], What will be the state after reading the following input: a a a a
s0
4
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 )
5b357bdf-7f97-45e5-a716-4574f065bc84
9e1cfdec-4191-4d84-8edf-47134b9e8218
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s4"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0","s1":"s1","s3":"s1","s4":"s1"},"b":{"s0":"s1","s1":"s3","s3":"s4","s4":"s0"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 ) With the initial state: s0, and accepting states: ['s0', 's1', 's4'], What will be the state after reading the following input: a a a a a
s0
5
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 )
981c48fa-0612-4d2a-b903-5652b2b06a8a
9e1cfdec-4191-4d84-8edf-47134b9e8218
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s4"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0","s1":"s1","s3":"s1","s4":"s1"},"b":{"s0":"s1","s1":"s3","s3":"s4","s4":"s0"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 ) With the initial state: s0, and accepting states: ['s0', 's1', 's4'], What will be the state after reading the following input: a a a a a b
s1
6
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 )
49623448-2d92-4c2d-9e4b-51d170445f0f
9e1cfdec-4191-4d84-8edf-47134b9e8218
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s4"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0","s1":"s1","s3":"s1","s4":"s1"},"b":{"s0":"s1","s1":"s3","s3":"s4","s4":"s0"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 ) With the initial state: s0, and accepting states: ['s0', 's1', 's4'], What will be the state after reading the following input: a a a a a b a
s1
7
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 )
bbbc6a6f-cc8b-45db-af43-a061b16ad60c
9e1cfdec-4191-4d84-8edf-47134b9e8218
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s4"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0","s1":"s1","s3":"s1","s4":"s1"},"b":{"s0":"s1","s1":"s3","s3":"s4","s4":"s0"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 ) With the initial state: s0, and accepting states: ['s0', 's1', 's4'], What will be the state after reading the following input: a a a a a b a a
s1
8
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 )
986f85f9-e17f-4521-9705-ab10c0afb57d
9e1cfdec-4191-4d84-8edf-47134b9e8218
{"states": ["s0", "s1", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s0", "s1", "s4"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s0","s1":"s1","s3":"s1","s4":"s1"},"b":{"s0":"s1","s1":"s3","s3":"s4","s4":"s0"}}
Given the following FSM transition rules: ( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 ) With the initial state: s0, and accepting states: ['s0', 's1', 's4'], What will be the state after reading the following input: a a a a a b a a b
s3
9
4
2
4_2
( s0 , a , s0 ) ( s1 , a , s1 ) ( s3 , a , s1 ) ( s4 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s3 , b , s4 ) ( s4 , b , s0 )
16dd5980-913b-421f-9425-915fd48d1ac1
2b9b031b-65e9-4401-8bd0-d22eeeb78afc
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s2","s3":"s0","s4":"s0"},"b":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's2'], What will be the state after reading the following input: b
s4
1
4
2
4_2
( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 )
ff499929-543a-4213-8b79-b52467641f69
2b9b031b-65e9-4401-8bd0-d22eeeb78afc
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s2","s3":"s0","s4":"s0"},"b":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's2'], What will be the state after reading the following input: b b
s3
2
4
2
4_2
( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 )
369c8b9a-afb9-4620-b368-f3d03ff02df4
2b9b031b-65e9-4401-8bd0-d22eeeb78afc
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s2","s3":"s0","s4":"s0"},"b":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's2'], What will be the state after reading the following input: b b a
s0
3
4
2
4_2
( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 )
085222de-1379-489f-ad56-b40db46407e8
2b9b031b-65e9-4401-8bd0-d22eeeb78afc
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s2","s3":"s0","s4":"s0"},"b":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's2'], What will be the state after reading the following input: b b a a
s4
4
4
2
4_2
( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 )
32678c5d-4177-4a85-b040-b0d30cea5e07
2b9b031b-65e9-4401-8bd0-d22eeeb78afc
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s2","s3":"s0","s4":"s0"},"b":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's2'], What will be the state after reading the following input: b b a a b
s3
5
4
2
4_2
( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 )
5d6d70fc-cd8e-44e2-8025-74fd6df6ffa8
2b9b031b-65e9-4401-8bd0-d22eeeb78afc
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s2","s3":"s0","s4":"s0"},"b":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's2'], What will be the state after reading the following input: b b a a b b
s2
6
4
2
4_2
( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 )
e70dd2b2-4fd5-40d4-b29b-837c9111ab84
2b9b031b-65e9-4401-8bd0-d22eeeb78afc
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s2","s3":"s0","s4":"s0"},"b":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's2'], What will be the state after reading the following input: b b a a b b a
s2
7
4
2
4_2
( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 )
e16e8cab-66c4-4c57-bfb1-14d01a8f1aef
2b9b031b-65e9-4401-8bd0-d22eeeb78afc
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s2","s3":"s0","s4":"s0"},"b":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's2'], What will be the state after reading the following input: b b a a b b a b
s3
8
4
2
4_2
( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 )
0b82955f-23b1-4f80-8fb8-862c9a29038c
2b9b031b-65e9-4401-8bd0-d22eeeb78afc
{"states": ["s0", "s2", "s3", "s4"], "alphabets": "ab", "accepting_states": ["s4", "s0", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s4"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s3"]}]}
2
{"a":{"s0":"s4","s2":"s2","s3":"s0","s4":"s0"},"b":{"s0":"s4","s2":"s3","s3":"s2","s4":"s3"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 ) With the initial state: s0, and accepting states: ['s4', 's0', 's2'], What will be the state after reading the following input: b b a a b b a b b
s2
9
4
2
4_2
( s0 , a , s4 ) ( s2 , a , s2 ) ( s3 , a , s0 ) ( s4 , a , s0 ) ( s0 , b , s4 ) ( s2 , b , s3 ) ( s3 , b , s2 ) ( s4 , b , s3 )
c129392b-e59f-4e26-bbca-374b3f0c5ef4
0fc55742-1b56-448a-b2aa-ec2333783f61
{"states": ["s0", "s1", "s4", "s5"], "alphabets": "ab", "accepting_states": ["s4", "s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s4","s1":"s0","s4":"s0","s5":"s1"},"b":{"s0":"s1","s1":"s5","s4":"s1","s5":"s0"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 ) With the initial state: s0, and accepting states: ['s4', 's5', 's0'], What will be the state after reading the following input: b
s1
1
4
2
4_2
( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 )
3ffaf457-31ac-4d9f-93c3-b81681ab7ff0
0fc55742-1b56-448a-b2aa-ec2333783f61
{"states": ["s0", "s1", "s4", "s5"], "alphabets": "ab", "accepting_states": ["s4", "s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s4","s1":"s0","s4":"s0","s5":"s1"},"b":{"s0":"s1","s1":"s5","s4":"s1","s5":"s0"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 ) With the initial state: s0, and accepting states: ['s4', 's5', 's0'], What will be the state after reading the following input: b b
s5
2
4
2
4_2
( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 )
e7b76cd4-e353-402b-a692-8045bc761545
0fc55742-1b56-448a-b2aa-ec2333783f61
{"states": ["s0", "s1", "s4", "s5"], "alphabets": "ab", "accepting_states": ["s4", "s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s4","s1":"s0","s4":"s0","s5":"s1"},"b":{"s0":"s1","s1":"s5","s4":"s1","s5":"s0"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 ) With the initial state: s0, and accepting states: ['s4', 's5', 's0'], What will be the state after reading the following input: b b a
s1
3
4
2
4_2
( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 )
f6a96668-80f9-4771-831e-03d57754c19f
0fc55742-1b56-448a-b2aa-ec2333783f61
{"states": ["s0", "s1", "s4", "s5"], "alphabets": "ab", "accepting_states": ["s4", "s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s4","s1":"s0","s4":"s0","s5":"s1"},"b":{"s0":"s1","s1":"s5","s4":"s1","s5":"s0"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 ) With the initial state: s0, and accepting states: ['s4', 's5', 's0'], What will be the state after reading the following input: b b a b
s5
4
4
2
4_2
( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 )
2a6153c6-5ff6-4525-bd90-627b6ca5977d
0fc55742-1b56-448a-b2aa-ec2333783f61
{"states": ["s0", "s1", "s4", "s5"], "alphabets": "ab", "accepting_states": ["s4", "s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s4","s1":"s0","s4":"s0","s5":"s1"},"b":{"s0":"s1","s1":"s5","s4":"s1","s5":"s0"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 ) With the initial state: s0, and accepting states: ['s4', 's5', 's0'], What will be the state after reading the following input: b b a b a
s1
5
4
2
4_2
( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 )
af34d339-514b-4695-93e6-6f10fe76d202
0fc55742-1b56-448a-b2aa-ec2333783f61
{"states": ["s0", "s1", "s4", "s5"], "alphabets": "ab", "accepting_states": ["s4", "s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s4","s1":"s0","s4":"s0","s5":"s1"},"b":{"s0":"s1","s1":"s5","s4":"s1","s5":"s0"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 ) With the initial state: s0, and accepting states: ['s4', 's5', 's0'], What will be the state after reading the following input: b b a b a b
s5
6
4
2
4_2
( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 )
b86de60d-d3b0-431d-93fe-6c4bc8ae9639
0fc55742-1b56-448a-b2aa-ec2333783f61
{"states": ["s0", "s1", "s4", "s5"], "alphabets": "ab", "accepting_states": ["s4", "s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s4","s1":"s0","s4":"s0","s5":"s1"},"b":{"s0":"s1","s1":"s5","s4":"s1","s5":"s0"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 ) With the initial state: s0, and accepting states: ['s4', 's5', 's0'], What will be the state after reading the following input: b b a b a b a
s1
7
4
2
4_2
( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 )
31a8fc73-041d-4836-805b-af2c392d2568
0fc55742-1b56-448a-b2aa-ec2333783f61
{"states": ["s0", "s1", "s4", "s5"], "alphabets": "ab", "accepting_states": ["s4", "s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s4","s1":"s0","s4":"s0","s5":"s1"},"b":{"s0":"s1","s1":"s5","s4":"s1","s5":"s0"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 ) With the initial state: s0, and accepting states: ['s4', 's5', 's0'], What will be the state after reading the following input: b b a b a b a a
s0
8
4
2
4_2
( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 )
e84ae1b9-d034-4fe7-9f87-8c945b8fe915
0fc55742-1b56-448a-b2aa-ec2333783f61
{"states": ["s0", "s1", "s4", "s5"], "alphabets": "ab", "accepting_states": ["s4", "s5", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s4"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s5"]}, {"fromState": "s4", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s4", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s5", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s4","s1":"s0","s4":"s0","s5":"s1"},"b":{"s0":"s1","s1":"s5","s4":"s1","s5":"s0"}}
Given the following FSM transition rules: ( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 ) With the initial state: s0, and accepting states: ['s4', 's5', 's0'], What will be the state after reading the following input: b b a b a b a a a
s4
9
4
2
4_2
( s0 , a , s4 ) ( s1 , a , s0 ) ( s4 , a , s0 ) ( s5 , a , s1 ) ( s0 , b , s1 ) ( s1 , b , s5 ) ( s4 , b , s1 ) ( s5 , b , s0 )
cb14d1ab-06ec-4497-8a6b-edfdf72d9fdc
d5b09b73-1fc5-4759-9b55-444bb67c86c9
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s2","s1":"s3","s2":"s3","s3":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0","s3":"s0"}}
Given the following FSM transition rules: ( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 ) With the initial state: s0, and accepting states: ['s1', 's0'], What will be the state after reading the following input: b
s1
1
4
2
4_2
( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 )
d0a3519a-1b37-453c-8f48-a40a2b0cdaad
d5b09b73-1fc5-4759-9b55-444bb67c86c9
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s2","s1":"s3","s2":"s3","s3":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0","s3":"s0"}}
Given the following FSM transition rules: ( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 ) With the initial state: s0, and accepting states: ['s1', 's0'], What will be the state after reading the following input: b b
s0
2
4
2
4_2
( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 )
5419db1c-1126-4e8c-a4cc-ffdb4c921fb2
d5b09b73-1fc5-4759-9b55-444bb67c86c9
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s2","s1":"s3","s2":"s3","s3":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0","s3":"s0"}}
Given the following FSM transition rules: ( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 ) With the initial state: s0, and accepting states: ['s1', 's0'], What will be the state after reading the following input: b b a
s2
3
4
2
4_2
( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 )
568ed90f-9516-41fc-a5c4-e222c74ae0d7
d5b09b73-1fc5-4759-9b55-444bb67c86c9
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s2","s1":"s3","s2":"s3","s3":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0","s3":"s0"}}
Given the following FSM transition rules: ( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 ) With the initial state: s0, and accepting states: ['s1', 's0'], What will be the state after reading the following input: b b a b
s0
4
4
2
4_2
( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 )
da3187f7-5ad6-4bdd-8eb0-e3544353e707
d5b09b73-1fc5-4759-9b55-444bb67c86c9
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s2","s1":"s3","s2":"s3","s3":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0","s3":"s0"}}
Given the following FSM transition rules: ( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 ) With the initial state: s0, and accepting states: ['s1', 's0'], What will be the state after reading the following input: b b a b b
s1
5
4
2
4_2
( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 )
1853ccb6-3410-4c85-8dba-2d30c9b546fe
d5b09b73-1fc5-4759-9b55-444bb67c86c9
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s2","s1":"s3","s2":"s3","s3":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0","s3":"s0"}}
Given the following FSM transition rules: ( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 ) With the initial state: s0, and accepting states: ['s1', 's0'], What will be the state after reading the following input: b b a b b a
s3
6
4
2
4_2
( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 )
05568e98-0ea2-4504-9cdd-7e3e6be2c12a
d5b09b73-1fc5-4759-9b55-444bb67c86c9
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s2","s1":"s3","s2":"s3","s3":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0","s3":"s0"}}
Given the following FSM transition rules: ( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 ) With the initial state: s0, and accepting states: ['s1', 's0'], What will be the state after reading the following input: b b a b b a a
s2
7
4
2
4_2
( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 )
b8e3aeba-8746-406f-9f72-8082f2b514e5
d5b09b73-1fc5-4759-9b55-444bb67c86c9
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s2","s1":"s3","s2":"s3","s3":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0","s3":"s0"}}
Given the following FSM transition rules: ( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 ) With the initial state: s0, and accepting states: ['s1', 's0'], What will be the state after reading the following input: b b a b b a a a
s3
8
4
2
4_2
( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 )
5a60b6a9-5ef1-44b5-801c-6baa3a591a5b
d5b09b73-1fc5-4759-9b55-444bb67c86c9
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s1", "s0"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s0"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s2"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s0"]}]}
2
{"a":{"s0":"s2","s1":"s3","s2":"s3","s3":"s2"},"b":{"s0":"s1","s1":"s0","s2":"s0","s3":"s0"}}
Given the following FSM transition rules: ( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 ) With the initial state: s0, and accepting states: ['s1', 's0'], What will be the state after reading the following input: b b a b b a a a b
s0
9
4
2
4_2
( s0 , a , s2 ) ( s1 , a , s3 ) ( s2 , a , s3 ) ( s3 , a , s2 ) ( s0 , b , s1 ) ( s1 , b , s0 ) ( s2 , b , s0 ) ( s3 , b , s0 )
e4e5dbb1-3258-4327-b226-8d388e915d49
e2f90993-fce7-457b-90dd-f8810cfef041
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s3", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}]}
2
{"a":{"s0":"s1","s1":"s1","s2":"s0","s3":"s3"},"b":{"s0":"s1","s1":"s3","s2":"s1","s3":"s2"}}
Given the following FSM transition rules: ( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 ) With the initial state: s0, and accepting states: ['s3', 's2'], What will be the state after reading the following input: b
s1
1
4
2
4_2
( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 )
278ca54a-33b7-4af8-bdba-89c2c905e5c1
e2f90993-fce7-457b-90dd-f8810cfef041
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s3", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}]}
2
{"a":{"s0":"s1","s1":"s1","s2":"s0","s3":"s3"},"b":{"s0":"s1","s1":"s3","s2":"s1","s3":"s2"}}
Given the following FSM transition rules: ( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 ) With the initial state: s0, and accepting states: ['s3', 's2'], What will be the state after reading the following input: b b
s3
2
4
2
4_2
( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 )
f334d1f4-6f84-4ab0-b428-f125c28ef976
e2f90993-fce7-457b-90dd-f8810cfef041
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s3", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}]}
2
{"a":{"s0":"s1","s1":"s1","s2":"s0","s3":"s3"},"b":{"s0":"s1","s1":"s3","s2":"s1","s3":"s2"}}
Given the following FSM transition rules: ( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 ) With the initial state: s0, and accepting states: ['s3', 's2'], What will be the state after reading the following input: b b b
s2
3
4
2
4_2
( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 )
88e37b08-cfe3-4a23-8e17-c79a5b3bcbf0
e2f90993-fce7-457b-90dd-f8810cfef041
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s3", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}]}
2
{"a":{"s0":"s1","s1":"s1","s2":"s0","s3":"s3"},"b":{"s0":"s1","s1":"s3","s2":"s1","s3":"s2"}}
Given the following FSM transition rules: ( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 ) With the initial state: s0, and accepting states: ['s3', 's2'], What will be the state after reading the following input: b b b b
s1
4
4
2
4_2
( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 )
1ba27fd6-9621-4063-8dfd-ebedf69bf9bb
e2f90993-fce7-457b-90dd-f8810cfef041
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s3", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}]}
2
{"a":{"s0":"s1","s1":"s1","s2":"s0","s3":"s3"},"b":{"s0":"s1","s1":"s3","s2":"s1","s3":"s2"}}
Given the following FSM transition rules: ( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 ) With the initial state: s0, and accepting states: ['s3', 's2'], What will be the state after reading the following input: b b b b b
s3
5
4
2
4_2
( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 )
e58a2001-2eee-4dde-af99-5d264bbdcb14
e2f90993-fce7-457b-90dd-f8810cfef041
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s3", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}]}
2
{"a":{"s0":"s1","s1":"s1","s2":"s0","s3":"s3"},"b":{"s0":"s1","s1":"s3","s2":"s1","s3":"s2"}}
Given the following FSM transition rules: ( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 ) With the initial state: s0, and accepting states: ['s3', 's2'], What will be the state after reading the following input: b b b b b a
s3
6
4
2
4_2
( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 )
0a11c554-d753-42f7-a441-e2ecd339bbbb
e2f90993-fce7-457b-90dd-f8810cfef041
{"states": ["s0", "s1", "s2", "s3"], "alphabets": "ab", "accepting_states": ["s3", "s2"], "initial_state": "s0", "transitions": [{"fromState": "s0", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s0", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "a", "toStates": ["s1"]}, {"fromState": "s1", "symbol": "b", "toStates": ["s3"]}, {"fromState": "s2", "symbol": "a", "toStates": ["s0"]}, {"fromState": "s2", "symbol": "b", "toStates": ["s1"]}, {"fromState": "s3", "symbol": "a", "toStates": ["s3"]}, {"fromState": "s3", "symbol": "b", "toStates": ["s2"]}]}
2
{"a":{"s0":"s1","s1":"s1","s2":"s0","s3":"s3"},"b":{"s0":"s1","s1":"s3","s2":"s1","s3":"s2"}}
Given the following FSM transition rules: ( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 ) With the initial state: s0, and accepting states: ['s3', 's2'], What will be the state after reading the following input: b b b b b a a
s3
7
4
2
4_2
( s0 , a , s1 ) ( s1 , a , s1 ) ( s2 , a , s0 ) ( s3 , a , s3 ) ( s0 , b , s1 ) ( s1 , b , s3 ) ( s2 , b , s1 ) ( s3 , b , s2 )