Final answer:
To retrieve the name and address of employees in the research department, use a database query or programming language.
Step-by-step explanation:
To retrieve the name and address of all employees who work for the 'research' department, you would need to use a database query or programming language to access the employee records. You would specify the 'research' department as a condition in your query, and retrieve the name and address fields from the employee records. Here is an example of a SQL query:
SELECT name, address FROM employees WHERE department = 'research';
This query would return the name and address of all employees who work in the 'research' department.