Free LPI 702-100 Actual Exam Questions - Question 9 Discussion
What symbol is used in the vi editor to start the forward search for a string? (Specify ONLY the single character symbol without any parameters) 
I agree that the slash (/) symbol is the one used for forward search in vi, but thinking about it from a different angle: since the question wants just the single character, and vi distinguishes forward vs backward search by using slash for forward and question mark for backward, eliminating the question mark makes sense here. Plus, colon (:) is for commands, so that doesn’t fit. So it’s definitely slash.
I’m with the others on this being the slash (/). The question just wants the single symbol, and slash is the classic way to start a forward search in vi. The question mark (?) is for backward search, so that’s easy to rule out. Plus and asterisk don’t really fit here since they’re more for pattern matching or repeats inside vi commands, not starting a search. So it’s definitely the slash symbol.
I agree it’s the slash (/) for forward search. Another way to think about it is that the question mark (?) is basically the reverse of slash, so they’re paired up for searches going forward and backward. Plus and asterisk are more for pattern matching within the document, not starting a search command. So slash is definitely what kicks off a forward search in vi.
I also think it’s the slash (/). Since vi commands distinguish forward and backward searches, slash is for forward, question mark for backward. Plus and asterisk aren’t used to initiate searches but more for matching patterns or repeats within the search. This matches what I remember from practice sessions where typing / then the string finds it going forward.
/ starts the forward search in vi, no doubt.
Slash (/) is the one used to start a forward search in vi.
It’s definitely the slash (/) symbol. I ruled out the question mark (?) since that’s for backward search. The plus (+) and asterisk (*) don’t start searches in vi, so / makes the most sense here.
Is this specific to normal mode or command mode in vi?