Level 2 Coding Merged
Level 2 Coding Merged
Attempt 1
Test Duration: 00:03:24 Test Start Time: Jul 21, 2022 | 10:41 AM Test Submit Time: Jul 21, 2022 | 10:44 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 1/13
7/22/22, 3:00 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 2/13
7/22/22, 3:00 PM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 1
Partially Correct: 0
/2 /1
Question Not Viewed: 1 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
Problem statement
The online math course provided 'MathAtTip' has designed a course for children called Learning Number Recognition and Counting. The
assessment part of the course has a question where the student is given a number and a digit. The student needs to find out the total
count of the digits present in the number excluding the given digit.
Write an algorithm to help the student find out the count of the total number of digits present in the number excluding the given digit.
Example
Input
5644456 5
Output
5
Explanation
Excluding 5: the digits in the numbers are 4 and 6 and their total count is 5. Hence the output is 5.
Input format
The input consists of two space-separated integers - number and digit where the first integer represents the number and the second
integer represents the digit given to the student.
Output format
Print an integer representing the count of the total number of digits present in the number excluding the given digit.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 3/13
7/22/22, 3:00 PM LPU
Code constraints
0 < number 109
0 < digit <= 9
Sample testcases
Input 1 Output 1
5644456 5 5
Input 2 Output 2
443475 4 3
C (17)
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 4/13
7/22/22, 3:00 PM LPU
Solution 1 C (17)
3 int main()
4 {
5 int num,n;
6
7 scanf("%d %d",&num,&n);
8 printf("%d",excludingDigit(num,n));
9 return 0;
10 }
11 int excludingDigit(int num,int n)
12 {
13 int count=0,digit;
14
15
16 while(num)
17 {
18 digit=num%10;
19 num=num/10;
20 if(digit!=n)
21 {
22 count++;
23 }
24 }
25 return count;
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 5/13
7/22/22, 3:00 PM LPU
26
27
28 }
1 #include<iostream>
2 using namespace std;
3 int excludingDigit(int,int);
4 int main()
5 {
6 int num,n;
7 cin >> num;
8 cin >> n;
9 cout << excludingDigit(num,n);
10
11
12 return 0;
13 }
14 int excludingDigit(int num,int n)
15 {
16 int digit,count=0;
17 while(num)
18 {
19 digit=num%10;
20 num=num/10;
21 if(digit!=n)
22 {
23 count++;
24 }
25 }
26 t t
Solution 3 Python (3.8)
1 def excludingDigit(num,n):
2 count=0
3 while(num):
4 digit=num%10;
5 num=num//10;
6 #print(digit)
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 6/13
7/22/22, 3:00 PM LPU
6 #print(digit)
7 if(digit!=n):
8 count+=1
9 return count
10
11 num=int(input())
12 n =int(input())
13 print(excludingDigit(num,n))
14
1 import java.util.Scanner;
2
3 class Main
4 {
5
6 public static void main(String args[])
7 {
8 Scanner scan=new Scanner(System.in);
9 int num=scan.nextInt();
10 int n=scan.nextInt();
11
12 Main obj=new Main();
13
14 System.out.println(obj.Excludingdigit(num,n));
15 }
16
17 int Excludingdigit(int num,int n)
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 7/13
7/22/22, 3:00 PM LPU
17 int Excludingdigit(int num,int n)
18 {
19 int digit,count=0;
20
21 while(num!=0)
22 {
23 digit=num%10;
24 num=num/10;
25 if(digit!=n)
26 {
Question No: 2 Single File Programming Question Report Error
Problem statement
"VideoShare" is an online video-sharing platform. The company has decided to rate its user's channels based on the sum total of the
number of views received online and the subscribers. This sum total is referred to as User Points. The rating will be given according to the
below charts:
User Points Rating
30 - 50 Average
51 - 60 Good
61 - 80 Excellent
81 - 100 Outstanding
The whole process is automated and is carried out by the company's system.
Write an algorithm to find the rating of the given user's channel based on the user points.
Example
Input
77
Output
Excellent
Explanation
77 lies in the range 61-80, so the rating is 'Excellent'.
Input format
The input consists of integer userPoints, representing the calculated user points.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 8/13
7/22/22, 3:00 PM LPU
Output format
Print a string representing the rating of the user's channel based on the user points.
Code constraints
30 <= userPoints <= 100
Sample testcases
Input 1 Output 1
77 Excellent
Input 2 Output 2
90 Outstanding
C (17)
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 9/13
7/22/22, 3:00 PM LPU
Status: Not Viewed Mark obtained: 0/10 Hints used: 0 Times compiled: 0
Times submitted: 0 Level: Easy Question type: Single File Programming
Subject: MCQ Subject: C Programming Subject: Control statements
Solution 1 C (17)
1 #include<stdio.h>
2
3 void fun(int n)
4 {
5 if(n >= 30 && n <= 50)
6 printf("Average");
7 else if(n >= 51 && n <= 60)
8 printf("Good");
9 else if(n >= 61 && n <= 80)
10 printf("Excellent");
11 else if(n >= 81 && n <= 100)
12 printf("Outstanding");
13
14 }
15
16 int main()
17 {
18 int n;
19 scanf("%d", &n);
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 10/13
7/22/22, 3:00 PM LPU
20 fun(n);
21 return 0;
22 }
1 #include<iostream>
2 using namespace std;
3
4 void fun(int n)
5 {
6 if(n >= 30 && n <= 50)
7 cout << "Average";
8 else if(n >= 51 && n <= 60)
9 cout << "Good";
10 else if(n >= 61 && n <= 80)
11 cout << "Excellent";
12 else if(n >= 81 && n <= 100)
13 cout << "Outstanding";
14
15 }
16
17 int main()
18 {
19 int n;
20 cin >> n;
21 fun(n);
22 return 0;
23 }
1 import java.util.*;
2
3 l M i
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 11/13
7/22/22, 3:00 PM LPU
3 class Main
4 {
5
6 static void fun(int n)
7 {
8 if(n >= 30 && n <= 50)
9 System.out.print("Average");
10 else if(n >= 51 && n <= 60)
11 System.out.print("Good");
12 else if(n >= 61 && n <= 80)
13 System.out.print("Excellent");
14 else if(n >= 81 && n <= 100)
15 System.out.print("Outstanding");
16
17 }
18 public static void main(String args[])
19 {
20 Scanner sc = new Scanner(System.in);
21 int n = sc.nextInt();
22 fun(n);
23 }
24 }
25
26
Solution 4 Python (3.8)
1 def fun(n):
2 if(n >= 30 and n <= 50):
3 print("Average")
4 elif(n >= 51 and n <= 60):
5 print("Good")
6 elif(n >= 61 and n <= 80):
7 print("Excellent")
8 elif(n >= 81 and n <= 100):
9 print("Outstanding")
10
11 n = int(input())
12 fun(n)
13
14
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 12/13
7/22/22, 3:00 PM LPU
14
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 13/13
7/22/22, 3:01 PM LPU
Attempt 1
Test Duration: 00:03:24 Test Start Time: Jul 21, 2022 | 10:41 AM Test Submit Time: Jul 21, 2022 | 10:44 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 1/4
7/22/22, 3:01 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 2/4
7/22/22, 3:01 PM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 1
Partially Correct: 0
/2 /1
Question Not Viewed: 1 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
Read each sentence to find out whether there is any grammatical error in it. The error, if any will be in one part of the sentence
No error.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 3/4
7/22/22, 3:01 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 4/4
7/22/22, 2:59 PM LPU
Attempt 1
Test Duration: 00:03:24 Test Start Time: Jul 21, 2022 | 10:41 AM Test Submit Time: Jul 21, 2022 | 10:44 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 1/21
7/22/22, 2:59 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 2/21
7/22/22, 2:59 PM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 1
Partially Correct: 0
/2 /1
Question Not Viewed: 1 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
Select the option that is most nearly opposite to the given word.
FUTILE (OPPOSITE)
Useful CORRECT
Handy
Functional
Positive
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 3/21
7/22/22, 2:59 PM LPU
PASSAGE
Environmental toxins which can affect children are frighteningly commonplace. Besides lead, there are other heavy metals such as
mercury, which is found frequently in fish, that are spewed into the air from coal-fired power plants, says Maureen Swanson, MPA, director
of the Healthy Children Project at the Learning Disabilities Association of America. Mercury exposure can impair children‘s memory,
attention, and language abilities and interfere with fine motor and visual spatial skills.
A recent study of school districts in Texas showed significantly higher levels of autism in areas with elevated levels of mercury in the
environment. ―Researchers are finding harmful effects at lower and lower levels of exposure, says Swanson. ―They‘re now telling us
that they don‘t know if there‘s a level of mercury that‘s safe. Unfortunately, some of these chemicals make good flame retardants and
have been widely used in everything from upholstery to televisions to children‘s clothing. Studies have found them in high levels in
household dust, as well as in breast milk. Two categories of these flame retardants have been banned in Europe and are starting to be
banned by different states in the United States. The number of toxins in our environment that can affect children may seem overwhelming
at times. On at least some fronts, however, there is progress in making the world a cleaner place for kids—and just possibly, reducing the
number of learning disabilities and neurological problems. With a number of efforts to clean up the environment stalled at the federal
level, many state governments are starting to lead the way. And rather than tackle one chemical at a time, at least eight states are
considering plans for comprehensive chemical reform bills, which would take toxic chemicals off the market.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 4/21
7/22/22, 2:59 PM LPU
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
The experiment lead to the emission of ___________ vapor, which resulted in immediate termination of the research.
Noxious CORRECT
Non-toxic
Innocuous
Bland
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 5/21
7/22/22, 2:59 PM LPU
My phone rings again. It is futile to ignore it anymore. Maneesha is persistent. She will continue to bedevil me until I acquiesce. "Hello", I
answer.
"The circus, Atika?" she says in her sing-song voice. "When are we going? Only two more days left!"
I abhor the Circus. The boisterous crowds, the overwhelming smell of animal feces, the insanely long lines with wailing children and the
impossibility of finding a clean restroom all combine to make this an event that I dread.
For Maneesha, my best friend since the angst of middle school, the Circus is a sign that divine powers really do exist.
"Really, Atika, where else can you pet an elephant, see a stuntman ride a horse,
laugh till you are ready to cry, see the world's smallest person and eat fried potatoes The fried food at the Circus is a gastronomical
nightmare on its own. I once tried a
fried Cottage Cheese stick at the fair and was sick to my stomach for hours. And a fried burger with oil-soaked potato patty, cheese,
multicolored sauces AND a greasy slice of cottage cheese? How could that not be deleterious to your health?
I have not seen Maneesha for a good month; our schedules are both so hectic. My hatred of the Circus becomes inconsequential to my
desire to hang with Mani.
Alas, I ignore my anti-Circus bias for the umpteenth year. "Pick me up at noon", I say and hang up the phone.
Ambivalent
Condescending CORRECT
Jubilant
Nonchalant
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 6/21
7/22/22, 2:59 PM LPU
Select the word or phrase which best expresses the meaning of the given word.
TYPIFY
Typing
Disembody
Misrepresent
Forewarn
Exemplify CORRECT
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 7/21
7/22/22, 2:59 PM LPU
My phone rings again. It is futile to ignore it anymore. Maneesha is persistent. She will continue to bedevil me until I acquiesce. "Hello", I
answer.
"The circus, Atika?" she says in her sing-song voice. "When are we going? Only two more days left!"
I abhor the Circus. The boisterous crowds, the overwhelming smell of animal feces, the insanely long lines with wailing children and the
impossibility of finding a clean restroom all combine to make this an event that I dread.
For Maneesha, my best friend since the angst of middle school, the Circus is a sign that divine powers really do exist.
"Really, Atika, where else can you pet an elephant, see a stuntman ride a horse,
laugh till you are ready to cry, see the world's smallest person and eat fried potatoes The fried food at the Circus is a gastronomical
nightmare on its own. I once tried a
fried Cottage Cheese stick at the fair and was sick to my stomach for hours. And a fried burger with oil-soaked potato patty, cheese,
multicolored sauces AND a greasy slice of cottage cheese? How could that not be deleterious to your health?
I have not seen Maneesha for a good month; our schedules are both so hectic. My hatred of the Circus becomes inconsequential to my
desire to hang with Mani.
Alas, I ignore my anti-Circus bias for the umpteenth year. "Pick me up at noon", I say and hang up the phone.
To give in CORRECT
To speak kindly
To pay attention
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 8/21
7/22/22, 2:59 PM LPU
My phone rings again. It is futile to ignore it anymore. Maneesha is persistent. She will continue to bedevil me until I acquiesce. "Hello", I
answer.
"The circus, Atika?" she says in her sing-song voice. "When are we going? Only two more days left!"
I abhor the Circus. The boisterous crowds, the overwhelming smell of animal feces, the insanely long lines with wailing children and the
impossibility of finding a clean restroom all combine to make this an event that I dread.
For Maneesha, my best friend since the angst of middle school, the Circus is a sign that divine powers really do exist.
"Really, Atika, where else can you pet an elephant, see a stuntman ride a horse,
laugh till you are ready to cry, see the world's smallest person and eat fried potatoes The fried food at the Circus is a gastronomical
nightmare on its own. I once tried a
fried Cottage Cheese stick at the fair and was sick to my stomach for hours. And a fried burger with oil-soaked potato patty, cheese,
multicolored sauces AND a greasy slice of cottage cheese? How could that not be deleterious to your health?
I have not seen Maneesha for a good month; our schedules are both so hectic. My hatred of the Circus becomes inconsequential to my
desire to hang with Mani.
Alas, I ignore my anti-Circus bias for the umpteenth year. "Pick me up at noon", I say and hang up the phone.
Enormous
Health risk
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 9/21
7/22/22, 2:59 PM LPU
Resulting in gas
In the question, a part of the sentence is italicized Alternatives to the italicized part are given which may improve the construction of
the sentence Select the correct alternative.
The most obvious downside to this pessimism is that it is coming at their expenses.
It will be expensive
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 10/21
7/22/22, 2:59 PM LPU
Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Sentence Correction
Select the word or phrase which best expresses the meaning of the given word.
PROFUSE
Defuse
Ample CORRECT
Flimsy
Accept
Declare
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 11/21
7/22/22, 2:59 PM LPU
Select the correct option that fills the black(s) to make the sentence meaningfully complete.
Not touched
Untouched CORRECT
Untouching
Not touch
Determine the relationship between the first two words and then identify the missing word of the second pair such that it is analogous to
the first pair.
PROGRAM:QTRKWGT::APPLIANCE:
BRSPNGUKO
BRSQNGUKN
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 12/21
7/22/22, 2:59 PM LPU
BRSQNGUKO
BRSPNGUKN CORRECT
Show solution
Select the word or phrase which best expresses the meaning of the given word.
MUSTY
Stale CORRECT
Necessary
Indifferent
Nonchalant
Vivid
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 13/21
7/22/22, 2:59 PM LPU
A baby crawls 8 feet towards west and then 8 feet towards north. It then moves 14 feet towards east. How far and in which direction is
the baby from the starting point?
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 14/21
7/22/22, 2:59 PM LPU
PASSAGE
Environmental toxins which can affect children are frighteningly commonplace. Besides lead, there are other heavy metals such as
mercury, which is found frequently in fish, that are spewed into the air from coal-fired power plants, says Maureen Swanson, MPA, director
of the Healthy Children Project at the Learning Disabilities Association of America. Mercury exposure can impair children‘s memory,
attention, and language abilities and interfere with fine motor and visual spatial skills.
A recent study of school districts in Texas showed significantly higher levels of autism in areas with elevated levels of mercury in the
environment. ―Researchers are finding harmful effects at lower and lower levels of exposure, says Swanson. ―They‘re now telling us
that they don‘t know if there‘s a level of mercury that‘s safe. Unfortunately, some of these chemicals make good flame retardants and
have been widely used in everything from upholstery to televisions to children‘s clothing. Studies have found them in high levels in
household dust, as well as in breast milk. Two categories of these flame retardants have been banned in Europe and are starting to be
banned by different states in the United States. The number of toxins in our environment that can affect children may seem overwhelming
at times. On at least some fronts, however, there is progress in making the world a cleaner place for kids—and just possibly, reducing the
number of learning disabilities and neurological problems. With a number of efforts to clean up the environment stalled at the federal
level, many state governments are starting to lead the way. And rather than tackle one chemical at a time, at least eight states are
considering plans for comprehensive chemical reform bills, which would take toxic chemicals off the market.
"Researchers are finding harmful effects at a lower level of exposure". How can this line be interpreted?
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 15/21
7/22/22, 2:59 PM LPU
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
Was going to
Could
Will have
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 16/21
7/22/22, 2:59 PM LPU
Select the correct option that fills the blanks to make the sentence meaningfully complete.
__________ to be a good swimmer, you should know how to hold your breath for a while.
For while
However since
In place
In order CORRECT
Read the passage carefully and select the statement that can be inferred from it.
Of all the fitness and wellness activities customary in India, Artistic yoga is the new kid in town. It has successfully earned a pat on the
back from whosoever has lent an ear to the latest advancement Artistic yoga combines the suaveness of yoga and the frenzy of modern
cardio-vascular exercises. The technique involves performance of various aasanas and pranayam followed by walking on treadmill stair
climbing, cycling and so on. The activities are performed in a cyclic order and the aasana or pranayam that is done in the beginning is
repeated in the end. This helps an individual at the physical level as well as the mental and spiritual level thus helping bring about a
complete transformation of body, mind and soul.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 17/21
7/22/22, 2:59 PM LPU
PASSAGE
Environmental toxins which can affect children are frighteningly commonplace. Besides lead, there are other heavy metals such as
mercury, which is found frequently in fish, that are spewed into the air from coal-fired power plants, says Maureen Swanson, MPA, director
of the Healthy Children Project at the Learning Disabilities Association of America. Mercury exposure can impair children‘s memory,
attention, and language abilities and interfere with fine motor and visual spatial skills.
A recent study of school districts in Texas showed significantly higher levels of autism in areas with elevated levels of mercury in the
environment. ―Researchers are finding harmful effects at lower and lower levels of exposure, says Swanson. ―They‘re now telling us
that they don‘t know if there‘s a level of mercury that‘s safe. Unfortunately, some of these chemicals make good flame retardants and
have been widely used in everything from upholstery to televisions to children‘s clothing. Studies have found them in high levels in
household dust, as well as in breast milk. Two categories of these flame retardants have been banned in Europe and are starting to be
banned by different states in the United States. The number of toxins in our environment that can affect children may seem overwhelming
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 18/21
7/22/22, 2:59 PM LPU
at times. On at least some fronts, however, there is progress in making the world a cleaner place for kids—and just possibly, reducing the
number of learning disabilities and neurological problems. With a number of efforts to clean up the environment stalled at the federal
level, many state governments are starting to lead the way. And rather than tackle one chemical at a time, at least eight states are
considering plans for comprehensive chemical reform bills, which would take toxic chemicals off the market.
“Besides lead, there are other heavy metals such as mercury, which are found frequently in fish, that are spewed into the air from coal-
fired power plants”. How can this line be worded differently?
In the question, a part of the sentence is italicized. Alternatives to the italicized part are given which may improve the construction of
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 19/21
7/22/22, 2:59 PM LPU
The appropriate atmospheric conditions made it feasible for the astronomers to see the stars and they could even distinguish the sizes.
In the question below, a part of the sentence is italicized. Alternatives to the italicized part are given which may improve the construction
of the sentence. Select the correct alternative.
Get out of the building! It sound like the generator is going to explode.
No change required
First 1 2 Last
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 21/21
7/22/22, 2:59 PM LPU
Attempt 1
Test Duration: 00:03:24 Test Start Time: Jul 21, 2022 | 10:41 AM Test Submit Time: Jul 21, 2022 | 10:44 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 1/15
7/22/22, 2:59 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 2/15
7/22/22, 2:59 PM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 1
Partially Correct: 0
/2 /1
Question Not Viewed: 1 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
DEB
FGD
PQN
TUS CORRECT
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 3/15
7/22/22, 2:59 PM LPU
Show solution
Question No: 2 Multi Choice Type Question Report Error
The question consists of a problem question followed by two statements I and II. Find out if the information given in the statement(s) is
sufficient in finding the solution to the problem.
Statements:
I) A+B is twice the value of C and C is a positive square root of 49
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 4/15
7/22/22, 2:59 PM LPU
Show solution
The question consists of a problem question followed by two statements I and II. Find out if the information given in the statement(s) is
sufficient in finding the solution to the problem.
Problem question: The salaries of A and B are in the ratio 2:3. What is the salary of A?
Statements:
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 5/15
7/22/22, 2:59 PM LPU
Show solution
Given signs signify something and on that basis, assume the given statements to be true find which of the two conclusions I and II
is/are definitely true.
"%" denotes "greater than"
">" denotes "equal to"
"=" denotes "not less than"
"@" denotes "not equal to"
"#" denotes "less than"
"*" denotes "not greater than"
Statements
P>S, S@T, P#R
Conclusions
I. S%R
II. P@T
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 6/15
7/22/22, 2:59 PM LPU
Show solution
The question consists of a problem question followed by two statements I and II. Find out if the information given in the statement(s) is
sufficient in finding the solution to the problem.
Statements:
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 7/15
7/22/22, 2:59 PM LPU
Show solution
Five cars are parked in a row facing Eastward. E is parked to the left of A, B and C. B. C and A are parked to the left of D. C is parked
between A and B. if B is parked fourth from the left, how far is A parked from the right?
Fourth CORRECT
Third
Second
First
Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Seating Arrangement
Show solution
. Read each sentence to find out whether there is any grammatical error in it. The error, if any will be in one part of the sentence.
No error.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 9/15
7/22/22, 2:59 PM LPU
2.24
3.36
5.04
6.72 CORRECT
Show solution
A man moves 2 km towards east, then 3 km towards South and again 2 km towards west and then he goes 2 km towards the initial point
from where he started. In which direction is he from his initial position?
East
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 10/15
7/22/22, 2:59 PM LPU
South CORRECT
West
North
Show solution
The given signs signify something and on that basis, assume the given statements to be true and find which of the two conclusions and
it is/are definitely true.
A+B means A is equal to B
A-B means A is less than B
A= B means A is not equal to B
A* B means A is greater than B
A/B means A is less than equal to B
Statements:
K-M, K/L, L+N
Conclusions:
I. M-L
II. M/N
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 11/15
7/22/22, 2:59 PM LPU
Only I is true
Only II is true
Show solution
AFB
MRN
KPL
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 12/15
7/22/22, 2:59 PM LPU
RXS CORRECT
Show solution
DH4
HL4
TY4 CORRECT
PS3
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 13/15
7/22/22, 2:59 PM LPU
Show solution
Introducing a woman, a man said, "She is the only daughter-in-law of my mother." How is the woman related to the man?
Cousin
Sister
Daughter
Wife CORRECT
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 14/15
7/22/22, 2:59 PM LPU
X walks 6km towards east from a point A and from the same point A, Y walks 8km towards south. How far are the two friends from each
other now?
14 km
2 km
10 km CORRECT
5 km
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 15/15
7/22/22, 2:58 PM LPU
Attempt 1
Test Duration: 00:03:24 Test Start Time: Jul 21, 2022 | 10:41 AM Test Submit Time: Jul 21, 2022 | 10:44 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 1/15
7/22/22, 2:58 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 2/15
7/22/22, 2:58 PM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 1
Partially Correct: 0
/2 /1
Question Not Viewed: 1 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
In an annual sale, there was a flat discount of 40% on all items. Komal bought a pair of jeans for Rs. 480. What is the labelled price of the
pair of jeans?
Rs. 899
Rs. 699
Rs. 720
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 3/15
7/22/22, 2:58 PM LPU
A total profit of Rs.36,000 is to be distributed among Rajesh, Salesh and Rajeev such that Rajesh : Salesh :: 5:4 and Salesh : Rajeev :: 8:9.
What is the share of Rajeev?
Rs. 24,000
Rs. 10,000
Rs. 20,000
Show solution
4 men can repair a road in 7 hours. How many men are required to repair the road in 2 hours?
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 4/15
7/22/22, 2:58 PM LPU
14 CORRECT
17
10
Show solution
a, b and c are such that b is the simple interest on a and c is the simple interest on b for the same period and same rate of interest. The
relation between these three is:
a2=bc
c2= ab
b2 = ac CORRECT
a=b=c
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 5/15
7/22/22, 2:58 PM LPU
Show solution
Simplify (144-3/2)-1/6.
2√3 CORRECT
3√2
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 6/15
7/22/22, 2:58 PM LPU
30
15
210
105 CORRECT
Show solution
If from a deck of 52 cards, 4 cards are to be selected and one card of it should be a spade and another card should be a heart, in how
many ways can these cards be selected?
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 7/15
7/22/22, 2:58 PM LPU
132*50C2 CORRECT
52C
4
26 *50C2
13C
4
Show solution
Atul bought a machine for Rs. 4,50,000 and sold it to Irrfan at a profit. Irrfan later sold the machine to Danish at a loss of 10% for Rs.
4,95,000. The profit earned by Atul is:
23%
21%
25%
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 8/15
7/22/22, 2:58 PM LPU
22.22% CORRECT
Show solution
The population of a town three years ago was 'b' and the population of the town three years from now will be 'c'. What is the current
population of the town, if it grows at the same rate?
√(bc) CORRECT
b√(c)
cv(b)
b√(b/c)
√(b/c)
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 9/15
7/22/22, 2:58 PM LPU
Show solution
56
24 CORRECT
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 10/15
7/22/22, 2:58 PM LPU
40
49 CORRECT
50
57
Show solution
The product of two numbers is 2208. If the LCM of the numbers is 552, what is their HCF?
12
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 11/15
7/22/22, 2:58 PM LPU
4 CORRECT
24
Data inconsistent
Show solution
How many 4 digit numbers can be made using 1, 2, 3, 4, 5, 6 and 7 with none of the digits being repeated?
7!
840 CORRECT
4!
42
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 12/15
7/22/22, 2:58 PM LPU
Show solution
6 CORRECT
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 13/15
7/22/22, 2:58 PM LPU
2 CORRECT
-2
Show solution
The LCM of 2 numbers is 2516 and the square root of their HCF is 2. Find the product of two numbers.
5032
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 14/15
7/22/22, 2:58 PM LPU
7548
10064 CORRECT
12580
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2Bn1xeX3tLSL55bJaBDsU1Y%2FdiKN%2BJion89akVG6c60GQYETyeB2pE0 15/15