Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
2K views

Level 1 Coding Merged

The document is a test result summary for a student who took an online test for a 2023 batch at Wipro. It provides the student's overall score and section-wise scores in quant, logical reasoning, English, coding and essay writing. It also gives the number of questions attempted, correct, wrong or not viewed in each section. The summary includes a single file programming question that was skipped, along with sample solutions in C and C++ programming languages.

Uploaded by

shubham kumar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views

Level 1 Coding Merged

The document is a test result summary for a student who took an online test for a 2023 batch at Wipro. It provides the student's overall score and section-wise scores in quant, logical reasoning, English, coding and essay writing. It also gives the number of questions attempted, correct, wrong or not viewed in each section. The summary includes a single file programming question that was skipped, along with sample solutions in C and C++ programming languages.

Uploaded by

shubham kumar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 70

7/22/22, 10:55 AM LPU

Result & Analysis


Student: Afsar Alam Email id: afsaranis6465@gmail.comTest: Wipro_Actual_Test_1 Course: 2023 Batch_Wipro_Mock C

Attempt 1

IP Address: 112.196.62.2 Tab switches: 11 OS used: Windows Browser used: Chrome

Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM

Overall score Quants Section

Rank: NA Rank: NA

18 Topper score: 61.50 / 73 7 Topper score: 16.00


/ 16

/ 73 Average score: 7.46 / 73 / 16 Average score: 5.44


/ 16

Least score: 0.00 / 73 Least score: 0.00


/ 16

Logical Reasoning English Section

Rank: NA Rank: NA

2 Topper score: 14.00


/ 14 8 Topper score: 19.00
/ 22

/ 14 Average score: 5.29


/ 14 / 22 Average score: 7.76
/ 22
Least score: 0.00
/ 14 Least score: 0.00
/ 22

Coding Essay Writing

Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/13
7/22/22, 10:55 AM LPU

Topper score: 15.50


/ 20 Topper score: 1.00
/ 1

0 Average score: 0.92


/ 20 1 Average score: 0.24
/ 1
/ 20 Least score: 0.00
/ 20 /1 Least score: 0.00
/ 1

Overall Question Status Quants Section - Question Status

Total Questions: 55 Total Questions: 16


Questions Attempted: 52 Questions Attempted: 15

52 Questions Correct: 18 15 Questions Correct: 7

/ 55 Question Wrong: 34 / 16 Question Wrong: 8


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 1 Question Not Viewed: 0

Logical Reasoning - Question Status English Section - Question Status

Total Questions: 14 Total Questions: 22


Questions Attempted: 14 Questions Attempted: 22

14 Questions Correct: 2 22 Questions Correct: 8

/ 14 Question Wrong: 12 / 22 Question Wrong: 14


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 0 Question Not Viewed: 0

Coding - Question Status Essay Writing - Question Status

Total Questions: 2 Total Questions: 1

Questions Attempted: 0 Questions Attempted: 1

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/13
7/22/22, 10:55 AM LPU

Questions Correct: 0 Questions Correct: 1

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 

Question No: 1 Single File Programming Question Report Error

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)   

1 // You are using GCC


2

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 4/13
7/22/22, 10:55 AM LPU

Status: Skipped Mark obtained: 0/10 Hints used: 0 Times compiled: 0


Times submitted: 0 Level: Easy Question type: Single File Programming
Subject: Programming Subject: C Programming Subject: Strings
Show testcase scores Show solution

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 }

Solution 2 C++ (17) 

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 }

Solution 3 Java (11) 

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 }

Solution 4 Python (3.8) 

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

Question No: 2 Single File Programming Question Report Error

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)   

1 // You are using GCC


2

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

Times submitted: 0 Level: Medium Question type: Single File Programming


Subject: Aptitude Subject: Technical Subject: Programming

Show testcase scores Show solution

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

Result & Analysis


Student: Afsar Alam Email id: afsaranis6465@gmail.comTest: Wipro_Actual_Test_1 Course: 2023 Batch_Wipro_Mock C

Attempt 1

IP Address: 112.196.62.2 Tab switches: 11 OS used: Windows Browser used: Chrome

Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM

Overall score Quants Section

Rank: NA Rank: NA

18 Topper score: 61.50 / 73 7 Topper score: 16.00


/ 16

/ 73 Average score: 7.46 / 73 / 16 Average score: 5.44


/ 16

Least score: 0.00 / 73 Least score: 0.00


/ 16

Logical Reasoning English Section

Rank: NA Rank: NA

2 Topper score: 14.00


/ 14 8 Topper score: 19.00
/ 22

/ 14 Average score: 5.29


/ 14 / 22 Average score: 7.76
/ 22
Least score: 0.00
/ 14 Least score: 0.00
/ 22

Coding Essay Writing

Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/22
7/22/22, 10:54 AM LPU

Topper score: 15.50


/ 20 Topper score: 1.00
/ 1

0 Average score: 0.92


/ 20 1 Average score: 0.24
/ 1
/ 20 Least score: 0.00
/ 20 /1 Least score: 0.00
/ 1

Overall Question Status Quants Section - Question Status

Total Questions: 55 Total Questions: 16


Questions Attempted: 52 Questions Attempted: 15

52 Questions Correct: 18 15 Questions Correct: 7

/ 55 Question Wrong: 34 / 16 Question Wrong: 8


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 1 Question Not Viewed: 0

Logical Reasoning - Question Status English Section - Question Status

Total Questions: 14 Total Questions: 22


Questions Attempted: 14 Questions Attempted: 22

14 Questions Correct: 2 22 Questions Correct: 8

/ 14 Question Wrong: 12 / 22 Question Wrong: 14


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 0 Question Not Viewed: 0

Coding - Question Status Essay Writing - Question Status

Total Questions: 2 Total Questions: 1

Questions Attempted: 0 Questions Attempted: 1

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/22
7/22/22, 10:54 AM LPU

Questions Correct: 0 Questions Correct: 1

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 

Question No: 1 Multi Choice Type Question Report Error

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.

Choose the correct answer based on the passage.

What in the passage has been cited as the main reason affecting goal temperature?
Relative change in water vapor content in the Stratosphere

Drop in Stratospheric water vapour of less than one


CORRECT
part per million

The extreme dryness in the Stratosphere

Absorption and emission of infrared radiation by different


substances

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Reading Comprehension

Question No: 2 Multi Choice Type Question Report Error

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Synonyms

Question No: 3 Multi Choice Type Question Report Error

Select an option that is most nearly opposite to the given word.

FUTILE

Useful CORRECT

Handy

Functional

Positive
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 5/22
7/22/22, 10:54 AM LPU

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Antonyms

Question No: 4 Multi Choice Type Question Report Error

. 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

the project completed   CORRECT

strictly as per the schedule. 

No error.

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Error spotting

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 6/22
7/22/22, 10:54 AM LPU

Question No: 5 Multi Choice Type Question Report Error

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.

Choose the correct answer based on the passage.

What accounts for the absence of water vapor in stratosphere?

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

Rising global temperatures leading to reduced water vapor that


gets absorbed in the Troposphere

The greenhouse gas gets absorbed by the clouds in the


Troposphere and comes down as rain.

Before the vapor can vise up it has to pass through


CORRECT
below freezing temperatures and turns into ice.

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Reading Comprehension

Question No: 6 Multi Choice Type Question Report Error

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Synonyms

Question No: 7 Multi Choice Type Question Report Error

Select the correct option that fills the blank(s) to make the sentence meaningfully complete.

He worked really hard and thus ________ to be promoted.

Warranted

Deserve

Deserves CORRECT

Merit

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Verbs

Show solution

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 9/22
7/22/22, 10:55 AM LPU

Question No: 8 Multi Choice Type Question Report Error

The long awaited meal became a feast to remember and an almost sacred celebration of life.

What does this line imply?

 After so many days of being hungry, the cave men and women
felt alive once again after eating the food

People respected and were thankful for getting food


after days of being hungry and also of being united CORRECT
with their loved ones

Cave men and women ate and celebrated together with the
entire community making the feast really enjoyable

Cave men and women enjoyed themselves in the feast and


performed a ceremony to thank the God for their safe return
back home

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Statement and Conclusion

Question No: 9 Multi Choice Type Question Report Error

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.

Choose the correct answer based on the passage.

Why is the situation in the troposphere defined as unstable?

Because unlike the Stratosphere, there is too much water vapor


in the Troposphere

Because the Troposphere is not directly linked to the


Stratosphere, but through the Tropopause which creates much
of the world's weather.

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 11/22
7/22/22, 10:55 AM LPU

Because of the interaction between warm and cool


air which is unpredictable in nature and can lead to CORRECT
storms.
Because this layer of the atmosphere is very cloudy and can
lead to weather related disruptions

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Reading Comprehension

Question No: 10 Multi Choice Type Question Report Error

Select the correct option that fills the blank(s) to make the sentence meaningfully complete.

As poorer nations industrialize aggressively, natural resources are being severely__________.

Critical

Worsened

Depleted CORRECT

Hit

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy

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

Question No: 11 Multi Choice Type Question Report Error

Select the option that is most nearly opposite to the given word.

RUDE

Detest

Beastly

Respectful CORRECT

Hideous

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Antonyms

Question No: 12 Multi Choice Type Question Report Error

Choose the correct option.

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 22 minutes CORRECT

About 20 minutes

About 30 minutes

About 25 minutes

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Time and work

Show solution

Question No: 13 Multi Choice Type Question Report Error

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.

It is coming at their expense CORRECT

It is costing at their expense

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 14/22
7/22/22, 10:55 AM LPU

It will be expensive

It was coming at their expense

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Sentence improvement

Show solution

Question No: 14 Multi Choice Type Question Report Error

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Conjunctions
Show solution

Question No: 15 Multi Choice Type Question Report Error

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Sentence completion

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 16/22
7/22/22, 10:55 AM LPU

Question No: 16 Multi Choice Type Question


Report Error

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.

Choose the correct answer based on the passage.

"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?

Besides lead, mercury is another heavy metal which is found


frequently in discarded fish cooked in coal-fired power plants

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 17/22
7/22/22, 10:55 AM LPU

Besides lead, fish contains mercury which is a heavy CORRECT


metal ejected in the air from power plants using coal
Fish contains mercury which is released in the air as industrial
waste and which is also a heavy metal like lead

Mercury released in the air as industrial waste is another heavy


metal like lead, found in fish

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Reading Comprehension

Question No: 17 Multi Choice Type Question Report Error

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy

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

Question No: 18 Multi Choice Type Question Report Error

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

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Sentence completion

Question No: 19 Multi Choice Type Question Report Error

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

Nothing ________ convinced her to cancel her trip to Goa.

Was going to

Could have CORRECT

Could

Will have

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Verbs

Show solution

Question No: 20 Multi Choice Type Question Report Error

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.

Choose the correct answer based on the passage.

What is the author's main argument in the passage?

The olden times, when the roles of men and women were clearly
divided, were far more enjoyable than the present time

There is not enough effort required anymore to obtain food and


hence the pleasure derived is not the same

People who don't have enough to eat enjoy life much more than
those who have plentiful

We should deny ourselves pleasures once in a while


CORRECT
in order to whet our desires and feel more alive

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Reading Comprehension

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

Result & Analysis


Student: Afsar Alam Email id: afsaranis6465@gmail.comTest: Wipro_Actual_Test_1 Course: 2023 Batch_Wipro_Mock C

Attempt 1

IP Address: 112.196.62.2 Tab switches: 11 OS used: Windows Browser used: Chrome

Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM

Overall score Quants Section

Rank: NA Rank: NA

18 Topper score: 61.50 / 73 7 Topper score: 16.00


/ 16

/ 73 Average score: 7.46 / 73 / 16 Average score: 5.44


/ 16

Least score: 0.00 / 73 Least score: 0.00


/ 16

Logical Reasoning English Section

Rank: NA Rank: NA

2 Topper score: 14.00


/ 14 8 Topper score: 19.00
/ 22

/ 14 Average score: 5.29


/ 14 / 22 Average score: 7.76
/ 22
Least score: 0.00
/ 14 Least score: 0.00
/ 22

Coding Essay Writing

Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/4
7/22/22, 10:56 AM LPU

Topper score: 15.50


/ 20 Topper score: 1.00
/ 1

0 Average score: 0.92


/ 20 1 Average score: 0.24
/ 1
/ 20 Least score: 0.00
/ 20 /1 Least score: 0.00
/ 1

Overall Question Status Quants Section - Question Status

Total Questions: 55 Total Questions: 16


Questions Attempted: 52 Questions Attempted: 15

52 Questions Correct: 18 15 Questions Correct: 7

/ 55 Question Wrong: 34 / 16 Question Wrong: 8


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 1 Question Not Viewed: 0

Logical Reasoning - Question Status English Section - Question Status

Total Questions: 14 Total Questions: 22


Questions Attempted: 14 Questions Attempted: 22

14 Questions Correct: 2 22 Questions Correct: 8

/ 14 Question Wrong: 12 / 22 Question Wrong: 14


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 0 Question Not Viewed: 0

Coding - Question Status Essay Writing - Question Status

Total Questions: 2 Total Questions: 1

Questions Attempted: 0 Questions Attempted: 1

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/4
7/22/22, 10:56 AM LPU

Questions Correct: 0 Questions Correct: 1

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 

Question No: 1 Multi Choice Type Question Report Error

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 discussed about the problem so thoroughly    CORRECT

on the eve of the examination

that I found it very easy to work it out. 

No error.

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Verbal Ability
Subject: Error spotting

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

Result & Analysis


Student: Afsar Alam Email id: afsaranis6465@gmail.comTest: Wipro_Actual_Test_1 Course: 2023 Batch_Wipro_Mock C

Attempt 1

IP Address: 112.196.62.2 Tab switches: 11 OS used: Windows Browser used: Chrome

Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM

Overall score Quants Section

Rank: NA Rank: NA

18 Topper score: 61.50 / 73 7 Topper score: 16.00


/ 16

/ 73 Average score: 7.46 / 73 / 16 Average score: 5.44


/ 16

Least score: 0.00 / 73 Least score: 0.00


/ 16

Logical Reasoning English Section

Rank: NA Rank: NA

2 Topper score: 14.00


/ 14 8 Topper score: 19.00
/ 22

/ 14 Average score: 5.29


/ 14 / 22 Average score: 7.76
/ 22
Least score: 0.00
/ 14 Least score: 0.00
/ 22

Coding Essay Writing

Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/16
7/22/22, 10:53 AM LPU

Topper score: 15.50


/ 20 Topper score: 1.00
/ 1

0 Average score: 0.92


/ 20 1 Average score: 0.24
/ 1
/ 20 Least score: 0.00
/ 20 /1 Least score: 0.00
/ 1

Overall Question Status Quants Section - Question Status

Total Questions: 55 Total Questions: 16


Questions Attempted: 52 Questions Attempted: 15

52 Questions Correct: 18 15 Questions Correct: 7

/ 55 Question Wrong: 34 / 16 Question Wrong: 8


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 1 Question Not Viewed: 0

Logical Reasoning - Question Status English Section - Question Status

Total Questions: 14 Total Questions: 22


Questions Attempted: 14 Questions Attempted: 22

14 Questions Correct: 2 22 Questions Correct: 8

/ 14 Question Wrong: 12 / 22 Question Wrong: 14


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 0 Question Not Viewed: 0

Coding - Question Status Essay Writing - Question Status

Total Questions: 2 Total Questions: 1

Questions Attempted: 0 Questions Attempted: 1

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/16
7/22/22, 10:53 AM LPU

Questions Correct: 0 Questions Correct: 1

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 

Question No: 1 Multi Choice Type Question Report Error

Change the correct option.

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

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Combination

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 3/16
7/22/22, 10:53 AM LPU

Show solution

Question No: 2 Multi Choice Type Question Report Error

Choose the correct option.

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Probability

Show solution

Question No: 3 Multi Choice Type Question Report Error

Choose the correct option.

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

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: HCF and LCM

Show solution

Question No: 4 Multi Choice Type Question Report Error

Choose the correct option.

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Combination

Show solution

Question No: 5 Multi Choice Type Question Report Error

Choose the correct option.

What is the the value of (a,y) in (13-20- a x 13y) =168 x 13-22 ?

(1, 2)

(0, 1)

(-1, 2)

(-1, 22)

(1, -22) CORRECT

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 6/16
7/22/22, 10:53 AM LPU

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Simplification

Show solution

Question No: 6 Multi Choice Type Question Report Error

Choose the correct option.

When 235 is divided by 5, the remainder is:

3 CORRECT

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Remainder theory

Show solution

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 7/16
7/22/22, 10:53 AM LPU

Question No: 7 Multi Choice Type Question


Report Error

Choose the correct option.

Identify the set of all the positive integers.

(0, 1, 2, 3, ....)

{1, 2, 3, 4, ....) CORRECT

(2, 4, 6, 8, ....)

(2, 5, 7, 11, ....)

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Number systems

Show solution
Question No: 8 Multi Choice Type Question Report Error

Choose the correct option.

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

3.27% gain CORRECT

No profit, no loss

8.875% loss

8.875% gain

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Percentage gain or loss

Show solution

Question No: 9 Multi Choice Type Question Report Error

Choose the correct option.

−2 −4

What is the value of 5

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Simplification

Show solution

Question No: 10 Multi Choice Type Question Report Error

Choose the correct option.

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

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 10/16
7/22/22, 10:53 AM LPU

Subject: Boats and Streams

Show solution

Question No: 11 Multi Choice Type Question Report Error

Choose the correct option.

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

5.30 p.m CORRECT

4.40 p.m

6.30 p.m

3.30 p.m

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Time and work

Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 11/16
7/22/22, 10:53 AM LPU

Question No: 12 Multi Choice Type Question Report Error

Choose the correct option.

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Probability

Show solution

Question No: 13 Multi Choice Type Question Report Error

Choose the correct option.

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

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Probability

Show solution

Question No: 14 Multi Choice Type Question Report Error

Choose the correct option.

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

Rs. 1,850 CORRECT

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Profit and Loss

Show solution

Question No: 15 Multi Choice Type Question Report Error

Choose the correct option.

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

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 14/16
7/22/22, 10:53 AM LPU

Subject: Time and work

Show solution

Question No: 16 Multi Choice Type Question Report Error

Choose the correct option.

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. 900 CORRECT

Rs. 800

Rs. 1,200

Rs. 1,000

Rs. 1,500

Status: Skipped Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Quantitative Ability
Subject: Profit and Loss

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

Result & Analysis


Student: Afsar Alam Email id: afsaranis6465@gmail.comTest: Wipro_Actual_Test_1 Course: 2023 Batch_Wipro_Mock C

Attempt 1

IP Address: 112.196.62.2 Tab switches: 11 OS used: Windows Browser used: Chrome

Test Duration: 00:07:41 Test Start Time: Jul 21, 2022 | 10:32 AM Test Submit Time: Jul 21, 2022 | 10:40 AM

Overall score Quants Section

Rank: NA Rank: NA

18 Topper score: 61.50 / 73 7 Topper score: 16.00


/ 16

/ 73 Average score: 7.46 / 73 / 16 Average score: 5.44


/ 16

Least score: 0.00 / 73 Least score: 0.00


/ 16

Logical Reasoning English Section

Rank: NA Rank: NA

2 Topper score: 14.00


/ 14 8 Topper score: 19.00
/ 22

/ 14 Average score: 5.29


/ 14 / 22 Average score: 7.76
/ 22
Least score: 0.00
/ 14 Least score: 0.00
/ 22

Coding Essay Writing

Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 1/15
7/22/22, 10:54 AM LPU

Topper score: 15.50


/ 20 Topper score: 1.00
/ 1

0 Average score: 0.92


/ 20 1 Average score: 0.24
/ 1
/ 20 Least score: 0.00
/ 20 /1 Least score: 0.00
/ 1

Overall Question Status Quants Section - Question Status

Total Questions: 55 Total Questions: 16


Questions Attempted: 52 Questions Attempted: 15

52 Questions Correct: 18 15 Questions Correct: 7

/ 55 Question Wrong: 34 / 16 Question Wrong: 8


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 1 Question Not Viewed: 0

Logical Reasoning - Question Status English Section - Question Status

Total Questions: 14 Total Questions: 22


Questions Attempted: 14 Questions Attempted: 22

14 Questions Correct: 2 22 Questions Correct: 8

/ 14 Question Wrong: 12 / 22 Question Wrong: 14


Partially Correct: 0 Partially Correct: 0
Question Not Viewed: 0 Question Not Viewed: 0

Coding - Question Status Essay Writing - Question Status

Total Questions: 2 Total Questions: 1

Questions Attempted: 0 Questions Attempted: 1

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 2/15
7/22/22, 10:54 AM LPU

Questions Correct: 0 Questions Correct: 1

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 

Question No: 1 Multi Choice Type Question Report Error

Find the missing term in the series.

2, 3, 7, 8, 13, 14......

24

21

18

20 CORRECT

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Number series

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.

A+B means A is equal to B


A-B means A is less than B
A=B means A is not equal to
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

Both are correct

None of these are true CORRECT

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy

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

Question No: 3 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.

Problem question: The salaries of A and B are in the ratio 2:3. What is the salary of A?

Statements:

I) The salary of B is Rs 8000

II) The total salary of A and B is Rs 15000

Statement I alone is sufficient in answering the problem


question

Statement Il alone is sufficient in answering the problem


question

Both statements put together are sufficient in answering the


problem question

Both the statements even put together are not sufficient in


answering the problem question

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 5/15
7/22/22, 10:54 AM LPU

Either of the statement is sufficient in answering the CORRECT


problem question
Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Data Sufficiency

Show solution

Question No: 4 Multi Choice Type Question Report Error

Choose the correct option.

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Direction

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 6/15
7/22/22, 10:54 AM LPU

Show solution

Question No: 5 Multi Choice Type Question Report Error

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

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Logical sequence

Show solution

Question No: 6 Multi Choice Type Question Report Error

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 7/15
7/22/22, 10:54 AM LPU

Find the next number in the series.

3, 11, 25, 45,...

65

71 CORRECT

61

75

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Number series

Show solution

Question No: 7 Multi Choice Type Question Report Error

Find the next number in the series.

1, 4, 18, 48, ...

120

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 8/15
7/22/22, 10:54 AM LPU

64

100 CORRECT

96

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Number series

Show solution

Question No: 8 Multi Choice Type Question Report Error

Choose the correct option.

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

They are at the same place at the finishing point CORRECT

15 kms

Data is insufficient

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 9/15
7/22/22, 10:54 AM LPU

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Direction

Show solution

Question No: 9 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 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

Both are correct


https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 10/15
7/22/22, 10:54 AM LPU

None of these are true CORRECT

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Statement and Conclusion

Show solution

Question No: 10 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.

Problem question: What is the area of the top of the table?

Statements:
I) The top of the table is rectangular in shape.
II) The length of the top of the table is 35 cm.

Statement I alone is sufficient in answering the problem


question

Statement II alone is sufficient in answering the problem


question

Both statements put together are sufficient in answering the


problem question

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 11/15
7/22/22, 10:54 AM LPU

Both the statements even put together are not CORRECT


sufficient in answering the problem question
Either of the statement is sufficient in answering the problem
question

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Data Sufficiency

Show solution

Question No: 11 Multi Choice Type Question Report Error

Decode the word(s) / pattern given in the question.

"John is in Football team" is written as "sit pit jit hit lit".


"Basketball Football team have eleven players" is written as "mit kit pit nit bit git hit".
"Steve is in Basketball team" is written as "bit rit lit hit sit".

How is "Steve is in Football team" written?

hit rit lit pit bit

sit rit lit pit hit CORRECT

sit bit lit pit hit

sit jit lit bit hit


https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 12/15
7/22/22, 10:54 AM LPU

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Medium


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Coding and Decoding

Show solution

Question No: 12 Multi Choice Type Question Report Error

Choose the correct option.

From the given choices select the odd man out.

bb c MN

dd e OP

gg f QP CORRECT

mm n WX

Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Odd Man Out

Show solution

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 13/15
7/22/22, 10:54 AM LPU

Question No: 13 Multi Choice Type Question Report Error

Find the missing term in the series.

0.28, 0.56, 1.68, .....

2.24

3.36

5.04

6.72 CORRECT

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Number series

Show solution

Question No: 14 Multi Choice Type Question Report Error

Choose the correct option.

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

Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy


Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Direction

Show solution

https://lpu375.examly.io/result?testId=U2FsdGVkX1%2FDF2QvwAR2dzf5jJVJ9CgTuEvZEuJrgAyyueS%2Be4KnmM73tFEBFyxi 15/15

You might also like