Answer:
UI Character Presets
Explanation:
User Interface is an option or go-to menu in a desktop application. For example, Photoshop. It allows a user to tweak the outlook to his or her own preference rather than the default settings.
To do this, a user is often tasked to do the following:
1. Click on the "Edit" menu
2. Navigate and click on "Preferences"
3. Select the "Interface" link
The options available to change includes:
a. UI Scaling
b. UI Font Size
c. UI Language.
Hence, in this case, the element that is not a selection in the Interface preferences is "UI Character preset"
Answer:
A.
Explanation:
Encrypting File System (EFS) is a file system which enables you to encrypt files, thus making them unviewable by any account but your own.
The tab that you would use is review
Not entirely sure what you want to achieve, but consider this program:
var a = 'foo';
var b = 'bar';
var c = { first : a, second : b };
console.log(JSON.stringify(c, null, 4));
A json object c is constructed using the values from variables a and b. Is this what you mean?