Continue with your mobile number
Cost for 1 family meal = ₹1,200. Total cost for 2 family meals = 1,200 * 2 = ₹2,400. Total cost for 6 people (includes 2 extra meals) = ₹1,200 (for 4) + ₹2,400 = ₹3,600. Correct answer: B) ₹3,600
Which condition is shown in given picture?
What is the main advantage of Network Attached Storage (NAS) technology?
What is an algorithm?
Which scheduling policy assigns the CPU to a job until it finishes or enters a waiting state?
Which component of the CPU is responsible for executing instructions?
Which data analytics technique is best suited for identifying hidden patterns or relationships in large datasets?
Which data structure follows the "first-in, first-out" (FIFO) principle?
Below code will give what result for f(3)
f(int x)
{
If(x
Return;
f(x-1);
printf(“%d”, x);
f(n-1);
}
‘/?’ is used for what in C++
In dynamic programming, what is memoization?