Q62.Marks: +2.0UGC NET Paper 2: Computer Science 18th June 2024 Shift 1 (Cancelled)
The parameter Actual count is used in Genetic Algorithm (GA) for :
1.Crossover
2.Mutation
3.Selecting population✓ Correct
4.Encoding the Genetic Algorithm
Solution
The correct answer is Selecting population.
Key Points
The parameter Actual count in a Genetic Algorithm (GA) is used for selecting the population.
In Genetic Algorithms, selecting the population refers to the process of choosing individuals from the current generation to be parents for the next generation.
This selection process is critical as it affects the convergence and performance of the algorithm.
Additional Information
Crossover is a genetic operator used to combine the genetic information of two parents to generate new offspring.
Mutation introduces random changes to individual genes, which helps to maintain genetic diversity within the population.
Encoding in Genetic Algorithms involves representing the solution to the problem in a format that the algorithm can work with, often as a string of bits or characters.