Concept:Indentation makes the structure of a program clear by visually grouping related lines of code.Explanation:Indented code shows which statements belong together.It is commonly used to show the start and end of blocks such as conditional statements like if or else.It helps programmers read and understand the program easily, not hide it or create bugs.Answer:D. show the start and end of a conditional statement.