Start learning 50% faster. Sign in now
Shri Arjun Munda, Minister of Tribal Affairs launched the second phase of the Going Online As Leaders (GOAL) program. The programme is a joint initiative of the Ministry of Tribal Affairs and Meta (FaceBook). GOAL 2.0 initiative aims to digitally upskill 10 lakh youth by promoting entrepreneurship amongst tribal communities of the country and opening up opportunities for them using digital technology. About GOAL Programme Union Minister for Tribal Affairs Shri Arjun Munda launched the “GOAL (Going Online As Leaders)” programme of the Ministry of Tribal Affairs (MoTA) in partnership with Facebook on 15 May 2020. The programme is aimed at empowering youth and women from tribal and indigenous communities to harness the full potential of digital platforms and enhancing their leadership skills for driving community development. Along with digital inclusion the program aims to actively contribute to the economy by continuing to support the most vulnerable communities in tribal districts with a focus on tribal youth and on businesses led by tribal women in rural areas.
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);
}