Which feature would you use to find and insert a synonym for an overused word?
A. AutoCorrect
B. Spelling and Grammar
C. Find and Replace
D. Thesaurus
Answer: D
You might also like to view...
Which search result highlights the pages that include the exact search text?
A) Full-text B) Paged C) Suggested D) Partial-text
Crimes are divided into the categories of
A) Crimes against persons and crimes against property B) Felonies and misdemeanors C) Criminal and civil crimes D) Insider crimes and intrusion crimes
MembersThe tblMembers table contains six fields. The LastName, FirstName, and MemberType fields contain text. The MemberID, JoinDate, and Fee fields contain numbers. The MemberType field contains one of the following letters: F for Family membership, A for one Adult membership, Y for one Youth membership, and S for one Senior membership. Write a SQL SELECT statement that allows the user to select the members with a fee greater than or equal to the fee amount provided by the user. The query should select the MemberID, LastName, FirstName, and Fee fields.
What will be an ideal response?
Answer the following statements true (T) or false (F)
1) String method capitalize returns a new string where the first character of each word in the string is the one and only uppercase character in the word. 2) String method find searches a string for a substring and raises a ValueError exception if the string does not contain a substring. 3) Method rindex returns the highest index at which the specified substring begins. 4) Most string methods modify the string in-place. 5) Any string can be treated as a regular expression.