54
|
63
|
76
|
12
|
?
|
30
|
42
|
12
|
46
|
Two trains start from the station A and B and travel towards each other at speeds of 36 km/hr and 48 km/hr respectively. At the time of their meeting, the second train had travelled 72 km more than the first. The distance between A and B is:
Question: What is M’s share of profit in a joint venture?
Statements:
(I) L started a business investing Rs 80,000.
(II) M joined him after 3 months.
(III) K joined after 4 months with a capital of Rs.1,20,000 and got Rs.6000 as his share profit.
5, 11, 17, ?, 31, 41
Moses was watching the rain rattle the window ____
Find the odd one out.
Banquet, Carnival, Ravenous, Merry -making.
PASSAGE
Serotonin is a neurotransmitter that gets the most attention. It is derived from the protein that is amino acid tryptophan and belongs to the inhibitor group of relaxing neurotransmitters that gives in a sense of happiness and stabilizes one’s mood. In case you feel irritated, reprieved, depression, have insomnia or low-self esteem, you might want to give your serotonin levels a boost to improve your overall well being. Serotonin also works as a natural appetite suppressant and its deficiency is closely related to obesity or weight gain. Also, when we have low serotonin levels, we start getting carbohydrate or sugar cravings because tryptophan - the building block from which serotonin is derived, can only get into our brain after we eat sweet or starchy foods. So, the next time you get a sugar or carb craving, observe how you are feeling, as any cravings are closely related to mood.
Let’s look at things that we can do to improve serotonin levels in our brain.
Question:
Name the feel-good hormone.
Consider the following tree
If the post order traversal gives pq-rs*+ then the label of the nodes 1,2,3,… will be?
Identify the correct statement(s).
Responsibilities of Transaction-management component: [MSQ]
Which of the following statements is/are CORRECT?
S1: CHECK constraints enforce domain integrity
S2: UNIQUE constraints enforce the uniqueness of the values in a set of columns
Consider following two relations r1 and r2:
Identify the number of tuples in r1 ⨝ r2?
Find names of employees with years of experience greater than at least one employee in the Accounts department. Identify the correct, "SQL Query" for this statement. [MSQ]
Choose which of the options is correct?
x1: Is the weather good? (x1=1 means good)
x2: Will your friend accompany you? (x2=1 means she will accompany)
x3: Is the festival near public transit? (x3=1 means ‘Yes’)
All of the above variables/factors are binary. You are using the following rules for deciding whether to go or not (1 means you will go):
Output:
Which of the given options will be the values of the correct weights for deciding with threshold=5 using the above rules, given the condition that you won't go unless the weather is good, and will definitely go if the weather is good?

Choose the correct answer from below mentioned options:
their complements. Which one of the following statements is FALSE?
is the maximum of a and b. The median of y is _____
cumulative distribution function F(x) at x = – 1 and +1 are
and P has a Poisson distribution with mean 3. What is the probability of observing fewer than 3 cars during any
given minute in this interval?
The mean, x of the random variable is_________
The probability P(3V ≥ 2U) is
Given: Σx = 6, Σy = 21, Σx^2 = 14 and Σxy = 46, the value of a and b are respectively.
where u(x) is the unit step function. Then the value of ' a ' and Probability {X ≤ 0},respectively, are
Let lij and aij be the (i,j)th elements of matrices [L] and [A], respectively. If the element l22 of the decomposed lower triangular matrix [L] is 1.968, what is the value (rounded off to the nearest integer) of the element a22?
matrix is equal to the inverse of the matrix, [M]^T = [M]^–1. The value of x is given by
Which of the following are the values of triplet (x,y,z) for the solution of equations? [MSQ]
Which of the following are valid values of λ? [MSQ]
where L and U are denoted as
Which one of the following is the correct combination of values for L32, U33, and x1?
dimension of V1 በ V2 is _____
Which of the following options are true? [MSQ]
(Here logex is the natural logarithm of x and e^2 = 7.39)
GATE(series, k)
if k = 1
return 4
else if series[k] < series[k-1] and series[k] % 2 == 0
return GATE(series, k-1) + 6
else if series[k] > series[k-2]
return GATE(series, k-1) * 2 + series[k]
else
return GATE(series, k-1) - 3
end if
try:
x = int("NaN")
except ValueError:
print("Caught ValueError")
else:
print("No exception")
finally:
print("Finally block executed")
def tester(**kwargs):
for key, value in kwargs.items():
print(key, value, end = " ")
tester(USA = 1, China = 2, Korea = 3, New Zealand= 4)
import copy
class MyClass:
def _init_(self, value):
self.value = value
original = MyClass([1, 2, 3])
shallow_copied = copy.copy(original)
deep_copied = copy.deepcopy(original)
shallow_copied.value.append(4)
deep_copied.value.append(5)
print(original.value)
print(shallow_copied.value)
print(deep_copied.value)