That means exactly the same thing as I said, so yes.
Well, not quite and not necessarily:
What I think you meant:
A & B & C & D go into DAW
What you said was:
A & B & C go into DAW, and D
Now, we’ve got an order of operations issue with our logical operators and that comma doing some heavy lifting, but ending up ambiguous.
There’s multiple ways to interpret
Option A (what I think you intended):
(A & B & C go into DAW) & (D goes into DAW)
Equivalent to:
(A & B & C & D) go into DAW
Option B
(A & B & C) go into (DAW, and D)
This is NOT the same as Option A; however, it’s an equally valid interpretation of the sentence structure used.
Language is difficult, and English in particular allows for some nasty ambiguities.
Unfortunately, you fell victim to one of them. I’d guess a good chunk of people assumed Option A.
But, I’m a computer scientist and engineer leading a multilingual team, and a big part of my job is making extra sure that everyone is clear on expectations. In my work, ambiguities like the original sentence (as obvious as the interpretation might be to most people on the team) still require clarification, because every now and then what’s obviously Option A to most of the team is obviously Option B to one critical person. Nobody sees the ambiguity and no one feels confused (the answer is obvious). But, not everyone actually agrees as to what that obvious answer was. So, we figure it out too late and everyone ends up mad.
English is loaded with ambiguities. Everyone hits them from time to time. Someone asking for clarification, IMO, means they’re trying to help.