Start learning 50% faster. Sign in now
The word ‘sanctioned’, which means ‘approval or permission, especially formal or legal’ is correct here. Other words are incorrect. The Department of Biotechnology has issued guidelines easing norms for research into genetically modified crops and circumventing challenges of using foreign genes to change crops profile. The ‘Guidelines for Safety Assessment of Genome Edited Plants, 2022’ exempt researchers who use gene-editing technology to modify the genome of the plant from seeking approvals from the Genetic Engineering Appraisal Committee (GEAC), an expert body of the Environment Ministry. The GEAC evaluates research into GM plants and recommends, or disapproves, their release into farmer fields. The final call however is taken by the Environment Minister as well as States where such plants could be cultivated. The Environment Ministry too has sanctioned this exemption.
Which component in the CPU is responsible for fetching instructions from memory and incrementing the program counter?
The major drawback of RAD model is __________.
Firewall is a type of
Node.js is built on which JavaScript engine?
What is the primary role of semantic actions in syntax-directed translation?
____is used to read XML documents and provide access to their content and structure.
Specialised program(s) designed to allow particular input or output device(s) to communicate with the rest of the computer system is called _______.
Which layer of the OSI model do stateful firewalls primarily operate at?
In a pipelined CPU design, what is the purpose of the instruction pipeline?
calculate the complexity of the below recursive code
Int f(int n)
{
If(n
return 1;
return f(n/2)+f(n/2);
}