Question
Where was the bust of Mahatma Gandhi unveiled by Prime
Minister Shri Narendra Modi?Solution
Prime Minister Shri Narendra Modi unveiled the bust of Mahatma Gandhi in Hiroshima, Japan on 20 May 2023. The Mahatma Gandhi bust has been gifted by the Government of India to the city of Hiroshima as a symbol of friendship and goodwill between India and Japan, on the occasion of the visit of the Prime Minister for the G-7 summit from 19-21 May 2023. The 42 inches tall bronze bust has been sculpted by Padma Bhushan awardee Shri Ram Vanji Sutar. The bust site, adjacent to the Motoyasu River, is close to iconic A-Bomb Dome. The location has been chosen as a mark of solidarity for peace and non-violence.
What is the primary output of the parsing phase in a compiler?
In LR parsing, what does the term "shift" mean?
Which of the following is an example of a "local optimization"?
Multithreading an interactive program will increase responsiveness to the user by ___________
Which code optimization technique replaces occurrences of a variable with its constant value if the variable has been assigned a constant value that is ...
Which storage class in C indicates that a variable's lifetime is throughout the program execution and its scope is local to the block it is defined in, ...
Which of the following techniques is used to ensure that a database design eliminates redundant data?
In a Syntax-Directed Definition (SDD), attributes are associated with:
Which of the following is NOT a common form of 3-address code?
What will be the output of the following C code?
#include
int main() {
int i;
for (i = 0; i < 5; i++) {
<...