Chemistry

Periodic Classification and Elements

1,176 Questions

Periodic classification organizes chemical elements based on atomic structure, periodic laws, and elemental properties. It covers historical classification systems, electron configurations, and periodic trends. Test takers preparing for chemistry sections will find these questions crucial for mastering fundamental element properties and atomic interactions.

Periodic table structureAtomic orbitalsElement identificationPeriodic laws

Periodic Classification and Elements Questions

Multiple choice general knowledge
  1. 97 to 104

  2. 101 to 115

  3. 89 to 103

  4. 36 from 43

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

Actinides are the 15 metallic elements with atomic numbers from 89 (actinium) to 103 (lawrencium). They are all radioactive and include uranium and plutonium, the well-known nuclear fuel elements. The lanthanides (atomic numbers 57-71) are sometimes called 'rare earth elements' and share similar chemical properties with actinides.

Multiple choice technology programming languages
  1. empty elements

  2. elements that contain only other elements

  3. elements that contain only text

  4. elements that contain only numbers

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

In XML Schema, the three types of complex elements are: empty elements, elements that contain only other elements, and elements that contain only text (mixed content). 'Elements that contain only numbers' is not a distinct category - numeric content would fall under 'elements that contain only text' with a numeric data type.

Multiple choice technology web technology
  1. <name>

  2. <icon>

  3. <view>

  4. <description>

  5. <case>

Reveal answer Fill a bubble to check yourself
A,C,E Correct answer
Explanation

The JSF navigation-rule element only accepts specific nested elements: from-view-id, navigation-case, and redirect. The name, icon, view, description, and case elements shown in options are NOT part of the navigation-rule schema. Options A (name), C (view), and E (case) correctly identify invalid elements.

Multiple choice technology
  1. 16

  2. 8

  3. 4

  4. 2

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

Semiconductor atoms like silicon and germanium have 4 valence electrons, which places them in Group 14 of the periodic table. This electron count is crucial because it allows semiconductors to form covalent bonds and exhibit intermediate conductivity between conductors and insulators.

Multiple choice technology programming languages
  1. 1 and 2

  2. 5 and 0

  3. 1 and 3

  4. none of the above

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

In Perl list assignment, scalars consume single elements while arrays consume remaining elements. Here, $t gets 'India', @u consumes all remaining elements ('US', 'Japan', 'Spain', 'Mexico', 'China' - 5 elements), leaving nothing for $v and @w. Therefore @u has 5 elements and @w has 0.