Level 1 Coding Merged
Level 1 Coding Merged
Attempt 1
Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/13
7/22/22, 10:55 AM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/13
7/22/22, 10:55 AM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 0
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
To create a profile on a social media account "ThePastBook", the user needs to enter a string value in the form of a username. The
username should consist of only characters tagged a-z. If the user enters an incorrect string containing digits the system automatically
identifies the number of digits in the string and removes them.
Write an algorithm to help the system identify the count of digits present in the username.
Example
Input
rah23ul
Output
2
Explanation
There are two digits in the username, '2' and '3'. The total count of digits is two (2). Hence 2 is the output.
Input format
The input consists of a string - userName, representing the username.
Output format
Print an integer representing the total count of digits present in the username. If no digits are present output 0.
Sample testcases
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 3/13
7/22/22, 10:55 AM LPU
Input 1 Output 1
rah23ul 2
Input 2 Output 2
helloworld23 2
C (17)
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 4/13
7/22/22, 10:55 AM LPU
Solution 1 C (17)
1 #include<stdio.h>
2
3 int fun(char str[])
4 {
5 int i, count = 0;
6 for(i = 0; str[i] != '\0'; i++)
7 {
8 if(str[i] >= '0' && str[i] <= '9')
9 count++;
10 }
11 return count;
12 }
13 int main()
14 {
15 char str[50];
16 scanf("%[^\n]s", str);
17 printf("%d", fun(str));
18 return 0;
19 }
1 #include<iostream>
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 5/13
7/22/22, 10:55 AM LPU
2 #include<stdio.h>
3 using namespace std;
4 int fun(char str[])
5 {
6 int i, count = 0;
7 for(i = 0; str[i] != '\0'; i++)
8 {
9 if(str[i] >= '0' && str[i] <= '9')
10 count++;
11 }
12 return count;
13 }
14 int main()
15 {
16 char str[50];
17 scanf("%[^\n]s", str);
18 cout << fun(str);
19 return 0;
20 }
1 import java.util.*;
2 class Main
3 {
4 static int fun(String str)
5 {
6 int i, count = 0;
7 char ch[] = str.toCharArray();
8 for(i = 0; i < str.length(); i++)
9 {
10 if(ch[i] >= '0' && ch[i] <= '9')
11 count++;
12 }
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 6/13
7/22/22, 10:55 AM LPU
13 return count;
14 }
15 public static void main(String args[])
16 {
17 Scanner sc = new Scanner(System.in);
18 String str = sc.nextLine();
19 System.out.println(fun(str));
20 }
21 }
1 def fun(str):
2 count = 0
3 for i in str:
4 if i >= '0' and i <= '9':
5 count = count + 1
6 return count
7
8 str = input()
9 print(fun(str))
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 7/13
7/22/22, 10:55 AM LPU
Problem Statement
A college has to generate the roll number of the students for the internal examination. The college admin authority has to generate the roll
numbers from the registration number of the students. Every student has a registration number. The registration number is a numeric
number. The authority has devised a method for generating the roll numbers from the registration number. To generate the roll number,
the pairs of adjacent digits are formed from the start of the roll number. From each pair the lexicographically smallest digit will be
removed. If a digit will be left unpaired when that digit will be taken as it is in the roll number.
Write an algorithm for implementing the devised method for the college system to find the roll number from the registration number.
Note
If both digits in a pair are the same, then any digit in the pair can be removed.
Example
Input
145279886
Output
45986
Explanation
The product type is "145279886".
The pairing of digits is done as (14)(52)(79)(88)6.
From every pair, the digits removed are: 1,2,7,8 respectively.
As digit 6 is left unpaired it will be kept for the roll number as it is.
The roll number is: 45986
So, the output is 45986
Input format
The input consists of an integer - regNo, representing the registration number of a student.
Output format
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 8/13
7/22/22, 10:55 AM LPU
Print an integer representing the roll number for the given student.
Sample testcases
Input 1 Output 1
145279886 45986
C (17)
Status: Not Viewed Mark obtained: 0/10 Hints used: 0 Times compiled: 0
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 9/13
7/22/22, 10:55 AM LPU
Solution 1 C (17)
16 name1=(char*)malloc(50*sizeof(char));
17
18 for(i=0,j=0;name[i]!='\0';i=i+2,j++)
19 {
20 if(name[i+1]!='\0')
21 {
22 if(name[i] < name[i+1])
23 {
24 name1[j]=name[i+1];
25
26 }
27 else
28 {
29 name1[j]=name[i];
30
31 }
32 }
33 else
34 {
35 name1[j]=name[i];
36 break;
37
38 }
39
40 }
41 name1[j+1]='\0';
Solution 2 C++ (17)
1 #include<iostream>
2 using namespace std;
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 10/13
7/22/22, 10:55 AM LPU
2 using namespace std;
3 char* productpair(char*);
4 int main()
5 {
6 char name[50];
7 int i,j;
8
9 cin >>name;
10 cout <<productpair(name);
11 return 0;
12 }
13 char *productpair(char* name)
14 {
15 int i,j;
16 char *name1;
17 name1=new char[25];
18
19 for(i=0,j=0;name[i]!='\0';i=i+2,j++)
20 {
21 if(name[i+1]!='\0')
22 {
23 if(name[i] < name[i+1])
24 {
25 name1[j]=name[i+1];
26
Solution 3 Java (11)
1 import java.util.*;
2 class Main
3 {
4 public static String digitPair(String regno)
5 {
6 String s="";
7 char[] ch=regno.toCharArray();
8 for(int i=0;i<ch.length;i=i+2)
9 {
10 if(i+1!=ch.length)
11 {
12 if(ch[i] < ch[i+1])
13 s+=ch[i+1];
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 11/13
7/22/22, 10:55 AM LPU
13 s c [ ];
14 else
15 s+=ch[i];
16 }
17 else
18 {
19 s+=ch[i];
20 break;
21 }
22 }
23 return s;
24 }
25 public static void main(String[] args)
26 {
Solution 4 Python (3.8)
1 def digitPair(regno):
2 s=""
3 for i in range(0,len(regno),2):
4 if(i+1 != len(regno)):
5 if(regno[i]<regno[i+1]):
6 s+=regno[i+1]
7 else:
8 s+=regno[i]
9 if(len(regno)%2==1):
10 s=s+regno[len(regno)-1]
11 return s
12 regno=input()
13 print(digitPair(regno))
14
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 12/13
7/22/22, 10:55 AM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 13/13
7/22/22, 10:54 AM LPU
Attempt 1
Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/22
7/22/22, 10:54 AM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/22
7/22/22, 10:54 AM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 0
Partially Correct: 0
/2 /1
Question Not Viewed: 1 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
The Stratosphere specifically the lower Stratosphere has it seems, been drying out. Water vapor in a greenhouse gas, and the cooling
effect on the Earth's climate due to this desiccation may account for a fair bit of the slowdown in the rise of global temperatures seen
over the past ten years. The Stratosphere sits on top of the Troposphere, the lowest densest layer of the atmosphere
The boundary between the two the Tropopause, is about 18km above your head if you are in the tropics, and a few kilometers lower if you
are at higher latitudes for up a mountains in the Troposphere the air at higher altitudes is in general cooler than the air below it an
unstable sin in which warm and often moist air below is endlessly buoying up into cooler air above. The resultant commotion creates
clouds storms and much of the rest of the world weather in the Stratosphere the air gets warmer at higher altitudes, which provides
stability.
The Stratosphere-which extends up to about 55km, where the Mesosphere begins is made even let weather prone by the absence of
water vapor, and thus of the clouds and precipitation to which it leads. This is because the top of the Troposphere is normally very cold,
causing ascending water vapor to freeze into ice crystals that drift and tall rather than continuing up into the Stratosphere
A little water manages to get past this cold trap. But as Dr Solomon and her colleagues note, satellite measurements show that rather
less has been doing so over the past ten years than was the case previously. Plugging the changes in water vapor into a climate model
that looks at the way different substances absorb and emit infrared radiation, they conclude that between 2000 and 2009 a drop in the
Stratospheric water vapor of less than one part per million slowed the rate of warming at the Earth's surface by about 25%.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 3/22
7/22/22, 10:54 AM LPU
Such a small change in Stratospheric water vapor can have such a large effect precisely because the Stratosphere is already dry. It is the
relative change in the amount of a greenhouse gas, nor its absolute level, which determines how much warming it can produce.
What in the passage has been cited as the main reason affecting goal temperature?
Relative change in water vapor content in the Stratosphere
Select the word or phrase which best expresses the meaning of the given word.
MUSTY
Stale CORRECT
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 4/22
7/22/22, 10:54 AM LPU
Necessary
Indifferent
Nonchalent
Vivid
FUTILE
Useful CORRECT
Handy
Functional
Positive
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 5/22
7/22/22, 10:54 AM LPU
. 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
We are happy
to know that
No error.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 6/22
7/22/22, 10:54 AM LPU
The Stratosphere specifically the lower Stratosphere has it seems, been drying out. Water vapor in a greenhouse gas, and the cooling
effect on the Earth's climate due to this desiccation may account for a fair bit of the slowdown in the rise of global temperatures seen
over the past ten years. The Stratosphere sits on top of the Troposphere, the lowest densest layer of the atmosphere
The boundary between the two the Tropopause, is about 18km above your head if you are in the tropics, and a few kilometers lower if you
are at higher latitudes for up a mountains in the Troposphere the air at higher altitudes is in general cooler than the air below it an
unstable sin in which warm and often moist air below is endlessly buoying up into cooler air above. The resultant commotion creates
clouds storms and much of the rest of the world weather in the Stratosphere the air gets warmer at higher altitudes, which provides
stability.
The Stratosphere-which extends up to about 55km, where the Mesosphere begins is made even let weather prone by the absence of
water vapor, and thus of the clouds and precipitation to which it leads. This is because the top of the Troposphere is normally very cold,
causing ascending water vapor to freeze into ice crystals that drift and tall rather than continuing up into the Stratosphere
A little water manages to get past this cold trap. But as Dr Solomon and her colleagues note, satellite measurements show that rather
less has been doing so over the past ten years than was the case previously. Plugging the changes in water vapor into a climate model
that looks at the way different substances absorb and emit infrared radiation, they conclude that between 2000 and 2009 a drop in the
Stratospheric water vapor of less than one part per million slowed the rate of warming at the Earth's surface by about 25%.
Such a small change in Stratospheric water vapor can have such a large effect precisely because the Stratosphere is already dry. It is the
relative change in the amount of a greenhouse gas, nor its absolute level, which determines how much warming it can produce.
The layer of Stratosphere is situated too far above for the water
vapor to reach
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 7/22
7/22/22, 10:54 AM LPU
Select the word or phrase which best expresses the meaning of the given word.
ABSURD
Absent
Present
Equitable
Level
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 8/22
7/22/22, 10:54 AM LPU
Inane CORRECT
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
Warranted
Deserve
Deserves CORRECT
Merit
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 9/22
7/22/22, 10:55 AM LPU
The long awaited meal became a feast to remember and an almost sacred celebration of life.
After so many days of being hungry, the cave men and women
felt alive once again after eating the food
Cave men and women ate and celebrated together with the
entire community making the feast really enjoyable
The Stratosphere specifically the lower Stratosphere has it seems, been drying out. Water vapor in a greenhouse gas, and the cooling
effect on the Earth's climate due to this desiccation may account for a fair bit of the slowdown in the rise of global temperatures seen
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 10/22
7/22/22, 10:55 AM LPU
over the past ten years. The Stratosphere sits on top of the Troposphere, the lowest densest layer of the atmosphere
The boundary between the two the Tropopause, is about 18km above your head if you are in the tropics, and a few kilometers lower if you
are at higher latitudes for up a mountains in the Troposphere the air at higher altitudes is in general cooler than the air below it an
unstable sin in which warm and often moist air below is endlessly buoying up into cooler air above. The resultant commotion creates
clouds storms and much of the rest of the world weather in the Stratosphere the air gets warmer at higher altitudes, which provides
stability.
The Stratosphere-which extends up to about 55km, where the Mesosphere begins is made even let weather prone by the absence of
water vapor, and thus of the clouds and precipitation to which it leads. This is because the top of the Troposphere is normally very cold,
causing ascending water vapor to freeze into ice crystals that drift and tall rather than continuing up into the Stratosphere
A little water manages to get past this cold trap. But as Dr Solomon and her colleagues note, satellite measurements show that rather
less has been doing so over the past ten years than was the case previously. Plugging the changes in water vapor into a climate model
that looks at the way different substances absorb and emit infrared radiation, they conclude that between 2000 and 2009 a drop in the
Stratospheric water vapor of less than one part per million slowed the rate of warming at the Earth's surface by about 25%.
Such a small change in Stratospheric water vapor can have such a large effect precisely because the Stratosphere is already dry. It is the
relative change in the amount of a greenhouse gas, nor its absolute level, which determines how much warming it can produce.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 11/22
7/22/22, 10:55 AM LPU
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
Critical
Worsened
Depleted CORRECT
Hit
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 12/22
7/22/22, 10:55 AM LPU
Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Sentence completion
Select the option that is most nearly opposite to the given word.
RUDE
Detest
Beastly
Respectful CORRECT
Hideous
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 13/22
7/22/22, 10:55 AM LPU
An air conditioner can cool the hall in 40 minutes while another takes 45 minutes to cool under similar conditions. If both air conditioners
are switched on at same instance, then how long will it take to cool the room?
About 20 minutes
About 30 minutes
About 25 minutes
Show solution
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 correct alternative.
The most obvious downside to this pessimism is that it is coming at their expenses.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 14/22
7/22/22, 10:55 AM LPU
It will be expensive
Show solution
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
___________ being poor, Kaveri still dresses more appropriately than most of her group mates.
Despite CORRECT
Although
Since
However
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 15/22
7/22/22, 10:55 AM LPU
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
_____________ the shirt was washed twice, still he refused to wear it.
Though CORRECT
Because
However
Since
While
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 16/22
7/22/22, 10:55 AM LPU
Environmental toxins which can affect children are frighteningly commonplace. 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, 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 levels of exposure" says Swanson. "They're now telling us that they don't
know it 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. 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 tackling 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?
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 17/22
7/22/22, 10:55 AM LPU
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
But each attempt ended in __________ failure, just as such attempts have failed all over the world including Britain and the US.
gloomy CORRECT
spectacular
intense
dismal
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 18/22
7/22/22, 10:55 AM LPU
Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Sentence completion
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
We need more effective leaders and therefore we need to groom ___________ leaders.
Enhanced
Good
Better CORRECT
Best
Select the correct option that fills the blank(s) to make the sentence meaningfully complete.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 19/22
7/22/22, 10:55 AM LPU
Was going to
Could
Will have
Show solution
Fasting is an act of homage to the majesty of appetite. So I think we should arrange to give up our pleasures regularly-- our food, our
friends, our lovers in order to preserve their intensity, and the moment of coming back to them. For this is the moment that renews and
refreshes both oneself and the thing one loves. Sailors and travelers enjoyed this once, and so did hunters, I suppose. Part of the
weariness of modern life may be that we live too much on top of each other, and are entertained and fed too regularly.
Once we were separated by hunger both from our food and families and then we learned to value both. The men went off hunting, and the
dogs went with them, the women and children waved goodbye. The cave was empty of men for days on end nobody ate, or knew what to
do. The women crouched by the fire, the wet smoke in their eyes: the children walled everybody was hungry. Then one night there were
shouts and the barking of dogs from the hills, and the men came back loaded with meat.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 20/22
7/22/22, 10:55 AM LPU
This was the great reunion, and everybody gorged themselves silly and appetite came into its own the long-awaited meal became a feast
to remember and an almost sacred celebration of life. Now we go off to the office and come home in the evenings to cheap chicken and
frozen peas. Very nice but too much of it, too easy and regular, served up without effort or wanting We eat we are lucky our faces are
shining with fat but we don't know the pleasure of being hungry anymore.
Too much of anything-- too much music, entertainment, happy snacks, or time spent with one's friends-- creates a kind of impotence of
living by which one can no longer hear or taste or see or love or remember. Life is short and precious, and appetite is one of guardians
and loss of appetite is a sort of death. So, if we are to enjoy this short life we should respect the divinity of appetite and keep it eager and
not too much blunted.
The olden times, when the roles of men and women were clearly
divided, were far more enjoyable than the present time
People who don't have enough to eat enjoy life much more than
those who have plentiful
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 21/22
7/22/22, 10:55 AM LPU
First 1 2 Last
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 22/22
7/22/22, 10:56 AM LPU
Attempt 1
Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/4
7/22/22, 10:56 AM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/4
7/22/22, 10:56 AM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 0
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%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 3/4
7/22/22, 10:56 AM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 4/4
7/22/22, 10:53 AM LPU
Attempt 1
Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/16
7/22/22, 10:53 AM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/16
7/22/22, 10:53 AM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 0
Partially Correct: 0
/2 /1
Question Not Viewed: 1 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
Out of 5 men and 3 women, a committee of 4 members is to be formed. In how many ways can it be done if the committee includes at
least one woman?
65 CORRECT
35
30
15
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 3/16
7/22/22, 10:53 AM LPU
Show solution
What is the probability of making an even number of 4 digits using 1, 2, 3 and 4 without any digit being repeated?
1/2 CORRECT
1/3
2/3
1/4
Show solution
The LCM and HCF of two numbers are 2970 and 30 respectively. Prime factors of the product of two numbers are:
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 4/16
7/22/22, 10:53 AM LPU
2,3,5,11 CORRECT
2,3,7,11
2, 4, 5, 11
2,3,7,13
Show solution
In an examination, a candidate is required to answer 5 questions in all from 2 sections having 5 questions each. What are the total
number of ways in which a candidate can select the questions, provided that at least two questions are to be attempted from each
section?
200 CORRECT
20
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 5/16
7/22/22, 10:53 AM LPU
100
10
Show solution
(1, 2)
(0, 1)
(-1, 2)
(-1, 22)
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 6/16
7/22/22, 10:53 AM LPU
Show solution
3 CORRECT
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 7/16
7/22/22, 10:53 AM LPU
(0, 1, 2, 3, ....)
(2, 4, 6, 8, ....)
Show solution
Question No: 8 Multi Choice Type Question Report Error
Every year before the festive season, a shopkeeper increases the price of the products by 35% and then introduces two successive
discounts of 10% and 15% respectively. What is his percentage loss or gain?
3 27% l
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 8/16
7/22/22, 10:53 AM LPU
3.27% loss
No profit, no loss
8.875% loss
8.875% gain
Show solution
−2 −4
2
×10
−5
×5
−6 ?
2 CORRECT
5
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 9/16
7/22/22, 10:53 AM LPU
10
Show solution
A man rows a boat at a speed of 5 km/hr in still water. Find the speed of a river if it takes him 1 hr to row a boat to a place 2.4 km away
and return back.
1 km/hr CORRECT
6 km/hr
3 km/hr
4 km/hr
Show solution
Rahul can finish one-fifth of his homework in one hour. Neha can finish three-seventh of her homework in one hour thirty minutes and Riya
can finish three fourth of her homework in three hours thirty minutes. If all of them start their homework at 12.00 pm. and can go to play
as soon as they all finish their homework when can they start to play, if they take a break at 3.30 p.m. for thirty minutes?
5.00 p.m
4.40 p.m
6.30 p.m
3.30 p.m
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 11/16
7/22/22, 10:53 AM LPU
A bag contains 4 strawberries and 8 grapes. What is the probability that both the fruits drawn from it are strawberries?
1/3
1/11 CORRECT
3/11
1/6
Show solution
A quiz has one multiple choice question with answer choices A, B and C, and two true/false questions. What is the probability of
answering all three questions correctly by guessing?
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 12/16
7/22/22, 10:53 AM LPU
1/5
1/4
1/3
1/12 CORRECT
Show solution
Shobhit bought 300 litres of milk at Rs. 19 per litre. He added 200 litres of water to it and sold 400 litres of this milk at Rs. 20 per litre. To
the rest, he added 10 litres more water and then sold it for Rs. 15 per litre. If he used mineral water that costs Rs. 10 per litre, then the
total money earned by Shobhit is:
Rs. 4,000
Rs. 4,150
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 13/16
7/22/22, 10:53 AM LPU
Rs. 1,800
Show solution
In a poultry farm. 50 hens give 200 eggs in 2 days. In how many days will 20 hers give 400 eggs?
15
10 CORRECT
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 14/16
7/22/22, 10:53 AM LPU
Show solution
A shopkeeper offers Buy 1 Get 1 Free offer on a t-shirt marked at Rs. 2,400 if after a sale, the shopkeeper earns a profit of 33.33%, then
what is the actual price of the t-shirt?
Rs. 800
Rs. 1,200
Rs. 1,000
Rs. 1,500
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 15/16
7/22/22, 10:53 AM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 16/16
7/22/22, 10:54 AM LPU
Attempt 1
Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/15
7/22/22, 10:54 AM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/15
7/22/22, 10:54 AM LPU
0 Question Wrong: 0
Partially Correct: 0
1 Question Wrong: 0
Partially Correct: 0
/2 /1
Question Not Viewed: 1 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
2, 3, 7, 8, 13, 14......
24
21
18
20 CORRECT
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 3/15
7/22/22, 10:54 AM LPU
Show solution
Question No: 2 Multi Choice Type Question Report Error
The given signs signify something and on that basis, assume the given statements to be true and find which of the two conclusions I and
II is/are definitely true.
Statements:
K-M, K/L, L+N
Conclusions:
I.M-L
II. M/N
Only I is true
Only II is true
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 4/15
7/22/22, 10:54 AM LPU
Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Statement and Conclusion
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%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 5/15
7/22/22, 10:54 AM LPU
Show solution
A man has strayed from his path while on his way to the park. He moves 100 km towards south, then another 40 km towards west. He
then travels 70 km towards north and reaches the park. What is the distance of the shortest possible route?
50 km CORRECT
40 km
60 km
30 km
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 6/15
7/22/22, 10:54 AM LPU
Show solution
Choose the option that arranges the given set of words in the most meaningful order. The words when put in order should make logical
sense according to size quality, quantity, occurrence of events, value, appearance, nature, process, etc.
1. Animals
2. Biology
3. Science
4. Lion
5. Zoology
3,5,2,1,4
3,2,5,1,4 CORRECT
3,1,2,5,4
3,1,4,5,2
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 7/15
7/22/22, 10:54 AM LPU
65
71 CORRECT
61
75
Show solution
120
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 8/15
7/22/22, 10:54 AM LPU
64
100 CORRECT
96
Show solution
Two friends A and B start walking from a common point. A goes 20 km towards northeast whereas B goes 16 km towards east and then
12 km towards north. How far are A and B from each other?
14 kms
15 kms
Data is insufficient
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 9/15
7/22/22, 10:54 AM LPU
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
Only I is true
Only II is true
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:
I) The top of the table is rectangular in shape.
II) The length of the top of the table is 35 cm.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 11/15
7/22/22, 10:54 AM LPU
Show solution
Show solution
bb c MN
dd e OP
gg f QP CORRECT
mm n WX
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 13/15
7/22/22, 10:54 AM LPU
2.24
3.36
5.04
6.72 CORRECT
Show solution
Sunil drove his car in the Northern direction for some distance. He then turned left and drove for 10 km. He again turned left and drove for
20 km. He found himself 10 km West of his starting point. Initially, how far did he drive his car in the Northern direction?
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 14/15
7/22/22, 10:54 AM LPU
10 km
20 km CORRECT
30 km
15 km
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 15/15