1Mediumgeneralโฑ 45sWhat is the difference between indexed and associative arrays in PHP?๐โผAThere is no difference, PHP has only one array typeBIndexed arrays use numeric keys automatically; associative arrays use custom (often string) keys, though both are the same underlying array typeCAssociative arrays cannot hold strings as valuesDIndexed arrays are immutable
2Mediumgeneralโฑ 45sWhat does the `include` statement do if the file is not found?๐โผAThrows a fatal error and stops execution immediatelyBEmits a warning but continues script executionCSilently continues with no warningDAutomatically creates the missing file