The HCF of two numbers is 31 and the other two factors of their LCM are 13 and 16. The larger of the two numbers is
6 bells commence tolling together and toll at intervals of 2, 3, 4, 5, 6 and 8 seconds respectively. In 44 minutes how many times do they toll together?
A bag contains three different types of fruits X, Y, Z are in ratio 8:5:6. If the number of fruits in the bag is increased by 15%, 20% and 20% respectively. What is the new ratio of fruits that bag contains?
X can fabricate a divider in 15 days while Y alone can assemble it in 18 days, if they construct it together and get an installment of Rs.3300, then what is the difference between the share of X and Y?
A person who protects is known as ______?
PASSAGE
Asiant - poet who dedicated herself to the worship of Lord Krishna …. Meerabai’s life has been etched in the pages of history for her ardent devotion. To celebrate her life and times, a musical called Meera - The musical that has a tracker of her lesser - known poems, premiered online. Around 180 artists took part in the musical, which has been produced by Art of Living. It is a fundraiser for the free education project of the organization.
A life so vibrant and mystic, there have been various versions to her story. Bharathy Harish, coordinator of Madhurya Creation who has also done the screenplay for the musical, says they had to research the life of Meerabai in depth. “We spoke to a traditional folk storyteller in Mewar, through whom we even felt the deep connection that people had for Meerabai.
Several known names, including B Prasana, Sachin Limaye, Chitra Roy, Srinivas Shalini and Gautam Dabir, have arranged music for the performance. Renowned artists such as KS Chitra and Gayatri have given vocals for them. Considering Meerabai a true feminist, the team tried to show the values and strength that Meerabai represented. For instance, Meerabai stopped the practice of animal sacrifice and challenged the custom of ‘Sati’. Despite being a young princess who grew up in a male - dominated social setting,she showed how she could resolve matters’. The team hopes the musical as a learning for viewers. More than 300 people worked for six months on the production.
Another part of the musical was making the show visually appealing. Which is why, a lot of emphasis was laid on costumes which were handled by Madhurya Handloom, which works on revival of traditional fabrics.
Question:
Which practice did Meerabai stop in a male - dominated society that she lived in ?
4 2 1 3 5 34 23 6 44
1 2 3 4 5 6 23 34 44
#include <stdio.h>
int counter = 0;
int calc (int a, int b) {
int c;
counter++;
if (b==3) return (a*a*a) ;
else {
c = calc (a, b/3) ;
return (c*c*c) ;
}
}
int main () {
calc (4, 81);
printf ("%d", counter) ;
}
struct node
{
int value;
struct node *next;
};
void rearrange(struct node *list)
{
struct node *p, * q;
int temp;
if ((!list) || !list->next)
return;
p = list;
q = list->next;
while(q)
{
temp = p->value;
p->value = q->value;
q->value = temp;
p = q->next;
q = p?p->next:0;
}
}
If the starting vertex for the above graph is vertex 5 then choose the correct option among the following:
Given the figure below, which one of the following options gives a negative weight cycle? [MSQ]
int Bob(n,x) /* Take x>1 */
{
int i=0;
while(n>=1)
{
i=i+1;
n=n/x;
}
return(i);
}
What is the cost of the shortest paths from ‘a’ to all other remaining vertices in the above graph? [ MSQ]
G: S→AB & A→aAb |ab & B→bBc |ab
S-> abS | aSb | ϵ
Select the correct option. [MSQ]
E’→E
E→E+T | T
T→T*F | F
F→(E) | id
If I is the set of one item {[ E’→.E]}, then number of items (including I) in CLOSURE(I) are _________
AB → C
C → D
BD → E
What does the highest normal the relation R satisfies?
Consider the relation schema.
weather ( city, temperature, humidity, condition).
Find the names of cities whose temperature is not in the range of 71 to 89.
< T0, start >
< T0, A, 1000, 950 >
< T0, B, 2000, 2050 >
< T0, commit >
< T1, start >
< T1, C, 700, 600 >
What will be the recovery action by immediate modification recovery?
S1: W1(X) W2(X) R3(X)
S2: W1(X) R3(X) W2(X)
S3: R1(X) W2(X) W1(X)
S4: R1(X) W1(X) W2(X)
Identify the correct statement(s) [MSQ]

Assuming no context switch overhead the average waiting time using Shortest Job First (SJF) scheduling is (in ms):
int main () {
int pid,n,i;
for(i=0;i<n;i++){
pid = fork();
printf ("%d \n", pid);
}
return 0;
}
|
How many non-zero positive integers will be printed by the above code?
Int acquire_locks(struct lock *la[], int n){
for(int i=0;i<n;i++){
while(!lock(la[i])); //If lock not available, wait
}
return 1; // The function returns once all n locks have been
successfully acquired by the process
}
|
This function takes as arguments a variable sized array of pointers to locks (i.e., addresses of the lock structure), and the number of lock pointers in the array, as shown in the function definition above. The function returns once all locks have been successfully acquired by the process. The i-th lock can be locked by calling lock(la[i]).
Which of the following would prevent a deadlock.

Which of the following is/are TRUE ?
What is the probability that atleast one of them complete the assignment is
Choose the minor of the matrix
The rank of matrix
is
Choose the correct statement
For the function f(x)=x^3-x [MSQ]
The report must be made such that, all results pages must be together and and can be placed anywhere in between the discussion pages. The 12 discussion pages have page numbers and they must be in the sequence.The front page must be the cover page.
Just before submission, all the pages were fallen down and arjun just took them in a random order and submitted with cover page in the first and rest all in random. What is the probability that they are in prescribed order
Which of the following statements is true? MSQ