The correct answer is option 4.
Key Points
1. Cannot be merged since lookaheads are different.
False, We can find the LALR stage by merging LR(1) states that have the same set of the first component. We can take the union of lookahead symbol of the respective item. The given LR (1) items can be merged as,
X → c.X, c/d/$
X → .cX, c/d/$
X → .x, c/d/$
2. Can be merged but will result in S-R conflict.
3. Can be merged but will result in R-R conflict.
The given items have no reduced entry(means dot at end of the production) then there is no S-R conflict and R-R conflict in the given grammar. So clearly it says both option 2 and 3 are false.
4. Cannot be merged since goto on c will lead to two different sets.
False, Because goto is carried on Non-terminals symbols, not on terminal symbols, and c is a terminal symbol.
Hence the correct answer is 1, 2, 3 and 4.
Additional Information
Checking LALR conflicts:
Shortcut:

Let's consider the production A → αaβ and B→α and a,b are lookaheads of the grammar. Then S-R conflicts will occur when one production with reducing production and another one is a shift production. This will make the conflict when shifting terminal and lookahead are same then parsing table has multiple entries. And R-R conflicts have two productions with the same lookaheads.
- If there is no S-R conflict in LR(1) state it never be reflected in the LALR(1) parser.
- If there is no R-R conflict in LR(1) state it may be R-R conflict in LALR(1) parser.
- The parse generates tool 'YAAC' uses LALR(1) parsing algorithm.