General Awareness

Color Theory and Symbolism

1,945 Questions

Color theory and symbolism examine primary, secondary, and tertiary colors, alongside their psychological and cultural meanings. Questions also cover color spaces, photography, and optical properties. This specialized topic appears in design, architecture, and general intelligence sections of various competitive exams.

Primary and secondary colorsColor spaces and modelsCultural color symbolismChemical compound colorsOptical color properties

Color Theory and Symbolism Questions

Multiple choice softskills creativity
  1. white and yellow

  2. orange

  3. green

  4. black

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The Nigerian national football team, known as the 'Super Eagles', traditionally wear green jerseys as their primary kit color, reflecting the green in their national flag. White and yellow appear in their flag but aren't their primary playing color. Orange is more associated with Dutch national teams and Netherlands clubs like PSV.

Multiple choice softskills creativity
  1. black

  2. blue

  3. brown

  4. white

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

If all four sides have southern exposure, the house must be at the North Pole where all directions are south. The only bears found at the North Pole are polar bears, which are white. Black, blue, and brown bears are not found at the North Pole.

Multiple choice softskills communication
  1. Red & Blue

  2. Red & Green

  3. Green & Blue

  4. Orange & Green

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The pH scale ranges from 0 (very acidic, red) to 14 (very basic/alkaline, blue/violet). Red represents the acidic extreme while blue represents the basic extreme. Green is typically near neutral (pH 7). This tests knowledge of the pH color spectrum used in indicators and pH paper.

Multiple choice technology web technology
  1. <body background="yellow">

  2. <body style="background-color:yellow">

  3. <background>yellow</background>

  4. <bgcolor="yellow">

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The inline style attribute using CSS syntax (background-color) is the modern approach to adding background colors. Option A uses an obsolete attribute that's deprecated, and options C and D use non-existent HTML elements or invalid syntax.

Multiple choice technology programming languages
  1. green

  2. Oak

  3. bean

  4. applet

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Java was initially named Oak during its development (1991-1995) because of an oak tree outside James Gosling's office. It was renamed Java when the developers discovered Oak was already trademarked. Green, Bean, and Applet are all Java-related terms but not the original name.

Multiple choice technology web technology
  1. #GGRRBB

  2. #RRBBGG

  3. #RRGGBB

  4. #BBRRGG

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

To solve this question, the user needs to know the format of the Hex color code and the order of values it represents.

The Hex color code is a 6-digit representation of Red, Green, and Blue (RGB) values of a color. Each pair of digits represents the intensity of Red, Green, and Blue, respectively. The first two digits represent the intensity of Red, the second two digits represent Green, and the last two digits represent Blue.

Going through each option:

A. #GGRRBB: This option is incorrect because it has a different order of values than the Hex color code. The correct order is #RRGGBB, where RR represents the intensity of Red, GG represents the intensity of Green, and BB represents the intensity of Blue.

B. #RRBBGG: This option is incorrect because it has a different order of values than the Hex color code. The correct order is #RRGGBB, where RR represents the intensity of Red, GG represents the intensity of Green, and BB represents the intensity of Blue.

C. #RRGGBB: This option is correct. The order of values in the Hex color code is #RRGGBB, where RR represents the intensity of Red, GG represents the intensity of Green, and BB represents the intensity of Blue. In this case, FF represents the maximum intensity of Red, 99 represents the intensity of Green, and 66 represents the intensity of Blue.

D. #BBRRGG: This option is incorrect because it has a different order of values than the Hex color code. The correct order is #RRGGBB, where RR represents the intensity of Red, GG represents the intensity of Green, and BB represents the intensity of Blue.

Therefore, the correct answer is:

The Answer is: C. #RRGGBB

Multiple choice technology web technology
  1. color:

  2. bgcolor:

  3. background-color:

  4. background-colour:

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The CSS property background-color sets the background color of an element. The American spelling "color" is correct; "colour" is not valid in CSS. The bgcolor attribute is obsolete HTML, not a CSS property. The color property sets text color, not background.

Multiple choice technology web technology
  1. purple, green, and red

  2. white, black and gray

  3. white,red,blue

  4. black, blue, and gray

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In additive color theory (RGB), white contains equal amounts of all colors (red, green, blue at full intensity). Black is the absence of all colors. Gray represents equal intermediate amounts of all colors. These three are the neutral colors formed by equal color components. Options A, C, and D list colors that don't fit this pattern.

Multiple choice technology programming languages
  1. <jsp:setColor id="fruit" property="color" value="white"/>

  2. <jsp:setColor name="fruit" property="color" value="white"/>

  3. <jsp:setValue name="fruit" property="color" value="white"/>

  4. <jsp:setProperty name="fruit" property="color" value="white">

  5. <jsp:setProperty name="fruit" property="color" value="white"/>

Reveal answer Fill a bubble to check yourself
E Correct answer
Explanation

The correct JSP syntax for setting bean properties is . The element name is setProperty, not setColor or setValue. Option D is missing the closing slash.

Multiple choice technology web technology
  1. h1.all {background-color:#FFFFFF}

  2. h1 {background-color:#FFFFFF}

  3. all.h1 {background-color:#FFFFFF}

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

To style all elements of a specific type in CSS, you use the element selector directly. Therefore, h1 targets all <h1> elements. The other options use class selectors (.all or .h1), which would only target elements with those specific class names rather than all <h1> tags.

Multiple choice technology web technology
  1. text-color:

  2. color:

  3. text-color=

  4. fgcolor:

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The color CSS property is used to change the text color (foreground color) of an element. There is no text-color or fgcolor property in CSS. The property name is simply color, applied to the text content of the element.