Level 4 Coding Merged
Level 4 Coding Merged
Attempt 1
Test Duration: 00:16:13 Test Start Time: Jul 21, 2022 | 11:18 AM Test Submit Time: Jul 21, 2022 | 11:36 AM Resume Count: 1
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 1/13
7/22/22, 3:18 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 2/13
7/22/22, 3:18 PM LPU
2 Question Wrong: 2
Partially Correct: 0
0 Question Wrong: 0
Partially Correct: 0
/2 /1
Question Not Viewed: 0 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
Problem statement
The games development company "FunGames" has developed a balloon shooter game. The balloons are arranged in a linear sequence
and each balloon has a number associated with it. The numbers on the balloons are in the fibonacci series. In the game, the player shoots
'k' balloons. The player's score is the sum of numbers on the 'k' balloons.
Write an algorithm to generate the player's score.
Example
Input
7
Output
20
Explanation
The fibonacci sum is 0+1+1+2+3+5+8=20
Input format
The input consists of an integer - numBalloons representing the total number of balloons shot by the player (k).
Output format
Print an integer value representing the player's score. If no balloons are shot then print 0.
Code constraints
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 3/13
7/22/22, 3:18 PM LPU
Sample testcases
Input 1 Output 1
7 20
Input 2 Output 2
6 12
C (17)
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 4/13
7/22/22, 3:19 PM LPU
Solution 1 C (17)
1 #include<stdio.h>
2 int fibo(int n)
3 {
4 int fibs[n];
5
6 fibs[0] = 0;
7 fibs[1] = 1;
8 int sum=0;
9 for(int i=2;i<n;i++)
10 {
11 fibs[i] = fibs[i-1]+fibs[i-2];
12 }
13
14 for(int i=0;i<n;i++)
15 {
16 sum += fibs[i];
17 }
18 return sum;
19 }
20 int main()
21 {
22 int numBalloons;
23 scanf("%d",&numBalloons);
24 int result = fibo(numBalloons);
25 printf("%d",result);
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 5/13
7/22/22, 3:19 PM LPU
25 p t ( %d , esu t);
26 }
Solution 2 C++ (17)
3 int fibo(int n)
4 {
5 int fibs[n];
6
7 fibs[0] = 0;
8 fibs[1] = 1;
9 int sum=0;
10 for(int i=2;i<n;i++)
11 {
12 fibs[i] = fibs[i-1]+fibs[i-2];
13 }
14
15 for(int i=0;i<n;i++)
16 {
17 sum += fibs[i];
18 }
19 return sum;
20 }
21 int main()
22 {
23 int numBalloons;
24 cin>>numBalloons;
25 int result = fibo(numBalloons);
26 cout<<result;
27 return 0;
28 }
1 import java.util.Scanner;
2 class Main
3 {
4 public static int fibo(int n)
5 {
6 int[] fibs = new int[n];
7
8 fibs[0] = 0;
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 6/13
7/22/22, 3:19 PM LPU
[ ]
9 fibs[1] = 1;
10 int sum=0;
11 for(int i=2;i<n;i++)
12 {
13 fibs[i] = fibs[i-1]+fibs[i-2];
14 }
15
16 for(int i=0;i<n;i++)
17 {
18 sum += fibs[i];
19 }
20 return sum;
21 }
22 public static void main(String[] args)
23 {
24 Scanner s = new Scanner(System.in);
25
26 i t B ll tI t()
Solution 4 Python (3.8)
1 def fun(n):
2 a = -1
3 b = 1
4 sum = 0
5 for i in range(1, n+1):
6 c = a + b
7 a = b
8 b = c
9 sum = sum + c
10 return sum
11
12 n = int(input())
13 print(fun(n))
14
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 7/13
7/22/22, 3:19 PM LPU
Problem statement
The online English language skills learning website 'EngAtTip' has designed an assessment. In the assessment, a piece of text is
displayed to the students. The text contains space-separated words. A word is an alphabetic sequence of characters with no whitespaces
in between the characters. The students must identify the words that are repeated in the text more than or equal to N times. These
repeated words are automatically removed by the system before the next text is displayed to the students. The texts do not contain any
punctuation marks.
Write an algorithm to display the words that are repeated more than or equal to N times in the text.
Note
text input is case-sensitive (i.e. 'mat' and 'MAT' are considered as different words, not the same).
The text can contain lowercase and uppercase letters from the English alphabet [i.e. a-z, A-Z]. All uppercase letters come before lower
case letters in lexicographical order.
Example
Input
cat batman latt matter cat matter cat cat latt latt
3
Output
cat latt
Explanation
The word "cat" is repeated four times and the word "latt" is repeated three times in the text. Hence the words that will be removed are
["cat", "latt"].
Input format
The first line of input consists of a string - text input, representing the text that is displayed to the students.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 8/13
7/22/22, 3:19 PM LPU
the last line of input consists of an integer - count, representing the value of the number of times a word occurs in the text(N).
Output format
Print space-separated strings in a lexicographically sorted order representing the words that are repeated in the input text more than or
equal to N times. If no word is repeated print "NA".
Sample testcases
Input 1 Output 1
cat batman latt matter cat matter cat cat latt latt
cat latt
3
Input 2 Output 2
cat batman latt matter CAT LATT
NA
2
C (17)
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 9/13
7/22/22, 3:19 PM LPU
Solution 1 C (17)
1
2 #include <stdio.h>
3 #include <string.h>
4 int main()
5 {
6 char str[100];
7 char splitStrings[50][50];
8 int i, j, cnt,n,count=0,flag=0;
9 scanf("%[^\n]s",str);
10 scanf("%d",&n);
11 j = 0;
12 cnt = 0;
13 for (i = 0; i <= (strlen(str)); i++)
14 {
15 if (str[i] == ' ' || str[i] == '\0')
16 {
17 splitStrings[cnt][j] = '\0';
18 cnt++;
19 j = 0;
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 10/13
7/22/22, 3:19 PM LPU
19 j = 0;
20 }
21 else
22 {
23 splitStrings[cnt][j] = str[i];
24 j++;
25 }
26 }
Solution 2 C++ (17)
1 #include<iostream>
2 #include<string.h>
3 using namespace std;
4 int main()
5 {
6
7 char splitStrings[50][50],str[100];
8 int i, j, cnt,n,count=0,flag=0;
9 cin.getline(str,100);
10 cin>>n;
11 j = 0;
12 cnt = 0;
13 for (i = 0; i <= (strlen(str)); i++)
14 {
15 if (str[i] == ' ' || str[i] == '\0')
16 {
17 splitStrings[cnt][j] = '\0';
18 cnt++;
19 j = 0;
20 }
21 else
22 {
23 splitStrings[cnt][j] = str[i];
24 j++;
25 }
26 }
Solution 3 Java (11)
1 import java.util.*;
2 class main {
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 11/13
7/22/22, 3:19 PM LPU
2 c ass a {
3 public static void main(String args[])
4 {
5 Scanner s=new Scanner(System.in);
6 int flag=0;
7 String str =s.nextLine();
8 int n=s.nextInt();
9 String words[] = str.split(" ");
10 for(int i = 0; i < words.length; i++)
11 {
12 int count = 1;
13 for(int j = i+1; j < words.length; j++)
14 {
15 if(words[i].equals(words[j]))
16 {
17 flag=1;
18 count++;
19 words[j] = "0";
20 }
21 }
22 if(count >= n && words[i] != "0")
23 System.out.print(words[i]+" ");
24 }
25 if(flag==0)
26 S t t i tl ("NA")
Solution 4 Python (3.8)
1 string =input()
2 n=int(input())
3 flag=0
4 words = string.split(" ");
5 for i in range(0, len(words)):
6 count = 1;
7 for j in range(i+1, len(words)):
8 if(words[i] == (words[j])):
9 count = count + 1;
10 words[j] = "0";
11 if(count >=n and words[i] != "0"):
12 flag=1
13 print(words[i],end=" ");
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 12/13
7/22/22, 3:19 PM LPU
14 if(flag==0):
15 print("NA")
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 13/13
7/22/22, 3:17 PM LPU
Attempt 1
Test Duration: 00:16:13 Test Start Time: Jul 21, 2022 | 11:18 AM Test Submit Time: Jul 21, 2022 | 11:36 AM Resume Count: 1
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 1/20
7/22/22, 3:17 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 2/20
7/22/22, 3:17 PM LPU
2 Question Wrong: 2
Partially Correct: 0
0 Question Wrong: 0
Partially Correct: 0
/2 /1
Question Not Viewed: 0 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
yokel
rustic CORRECT
ignoramus
dandy
recluse
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 3/20
7/22/22, 3:17 PM LPU
Show solution
Question No: 2 Multi Choice Type Question Report Error
Despite this
As a result CORRECT
In this case
In spite of that
Show solution
j bb
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 4/20
7/22/22, 3:17 PM LPU
jobbery
favouritism
nepotism CORRECT
authoritarianism
Show solution
A. There was nothing quite like a heavy downpour of rain to make life worthwhile.
B. We reached the field, soaked to the skin, and surrounded it.
C. The wet as far as he was concerned was ideal.
D. There, sure enough, stood Claudius, looking like a debauched Roman emperor under a shower.
DCBA
BDCA CORRECT
BADC
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 5/20
7/22/22, 3:17 PM LPU
BADC
BACD
Show solution
Pick out the best alternative for the underlined part of the sentence.
If any one dared to suggest that he or she was not against women but only against reservation, nobody was willing to listen.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 6/20
7/22/22, 3:17 PM LPU
Archaeologist
Numismatist CORRECT
Philatelist
Propagandist
Common content
Read the passage and answer the questions based on the information from the passage
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 7/20
7/22/22, 3:17 PM LPU
At a stage like this in human civilisation, it is of utmost interest that nations coarse ignorance towards one another decreases, people
should start understanding a bit of histories of other cultures, other countries and the resulting mentality developed. It is really fault of
Englishmen because they expected people to run the world as they wanted to, to international as well as political situations. We many a
times expect people to be the way we are and because of that nothing is made out of our actual kindness and good intents. This could be
corrected, not to be a very wide extent but to a certain limit if we knew global history, even outlines of it, about the conditions, social and
political, which have lead the country to shape up as it has currently.
Question
According to the author, why is nothing is made out of our actual kindness and good intents?
Show solution
Common content
Read the passage and answer the questions based on the information from the passage
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 8/20
7/22/22, 3:17 PM LPU
At a stage like this in human civilisation, it is of utmost interest that nations coarse ignorance towards one another decreases, people
should start understanding a bit of histories of other cultures, other countries and the resulting mentality developed. It is really fault of
Englishmen because they expected people to run the world as they wanted to, to international as well as political situations. We many a
times expect people to be the way we are and because of that nothing is made out of our actual kindness and good intents. This could be
corrected, not to be a very wide extent but to a certain limit if we knew global history, even outlines of it, about the conditions, social and
political, which have lead the country to shape up as it has currently.
Question
The character that a country develops is mainly because of its:
Mentality
Gross Ignorance
Cultural Heritage
Show solution
Common content
Read the passage and answer the questions based on the information from the passage
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 9/20
7/22/22, 3:17 PM LPU
At a stage like this in human civilisation, it is of utmost interest that nations coarse ignorance towards one another decreases, people
should start understanding a bit of histories of other cultures, other countries and the resulting mentality developed. It is really fault of
Englishmen because they expected people to run the world as they wanted to, to international as well as political situations. We many a
times expect people to be the way we are and because of that nothing is made out of our actual kindness and good intents. This could be
corrected, not to be a very wide extent but to a certain limit if we knew global history, even outlines of it, about the conditions, social and
political, which have lead the country to shape up as it has currently.
Question
A better understanding among countries:
Show solution
Common content
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 10/20
7/22/22, 3:17 PM LPU
Read the passage and answer the questions based on the information from the passage
At a stage like this in human civilisation, it is of utmost interest that nations coarse ignorance towards one another decreases, people
should start understanding a bit of histories of other cultures, other countries and the resulting mentality developed. It is really fault of
Englishmen because they expected people to run the world as they wanted to, to international as well as political situations. We many a
times expect people to be the way we are and because of that nothing is made out of our actual kindness and good intents. This could be
corrected, not to be a very wide extent but to a certain limit if we knew global history, even outlines of it, about the conditions, social and
political, which have lead the country to shape up as it has currently.
Question
The fault of Englishmen was that they expected others to react to social and political situations like ________.
Everyone
Themselves CORRECT
others
Us
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 11/20
7/22/22, 3:17 PM LPU
Common content
In the following passage, there are blanks, each of which has been numbered.Choose words that complete passage appropriately
Agriculture has always been celebrated as the primary sector in India. Thanks to the Green Revolution, India is now ___(1)____ in food
production. Indian agriculture has been ____(2)___ advancement as well. Does that mean everything is looking bright for Indian
agriculture? A superficial analysis of the above points would tempt one to say yes, but the ___(3)_____. The reality is that Indian farmers
have to face extreme poverty and financial crisis, which is _____(4)___ suicides. What are the grave adversities that drive the farmers to
commit suicide? At a time when the Indian economy is supposed __(5)____ to take on the world?
Question
Fill in the blank numbered(1)
perfect about
rely to food
self-sufficient CORRECT
dependent to food
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 12/20
7/22/22, 3:17 PM LPU
Common content
In the following passage, there are blanks, each of which has been numbered.Choose words that complete passage appropriately
Agriculture has always been celebrated as the primary sector in India. Thanks to the Green Revolution, India is now ___(1)____ in food
production. Indian agriculture has been ____(2)___ advancement as well. Does that mean everything is looking bright for Indian
agriculture? A superficial analysis of the above points would tempt one to say yes, but the ___(3)_____. The reality is that Indian farmers
have to face extreme poverty and financial crisis, which is _____(4)___ suicides. What are the grave adversities that drive the farmers to
commit suicide? At a time when the Indian economy is supposed __(5)____ to take on the world?
Question
Fill in the blank numbered(3)
demand is same
reality is bright
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 13/20
7/22/22, 3:17 PM LPU
Select the option that is most nearly OPPOSITE in meaning to the given word:
INGENUITY (OPPOSITE)
skillfulness
cunning
inventive
dullness CORRECT
Show solution
In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one
which best express the same sentence in Indirect/Direct speech.
He told me, “How long have you lived in the house here?”
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 14/20
7/22/22, 3:17 PM LPU
Show solution
In the following question, statements 1 and 6 are respectively the first and the last sentences of a paragraph and statements A, B, C and D
come in between them. Rearrange A, B, C and D in such a way that they make a coherent paragraph together with statements 1 and 6.
Select the correct order from the given choices and mark its number as your answer.
1. Very popular with the younger crowd of the twin cities are bowling alleys.
C. Their plush interiors, music and cafeteria facilities make them the ideal places for youngsters to take their friends out for a treat.
D. There are already four of them in town with another ready to join the club.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 15/20
7/22/22, 3:17 PM LPU
6. The older kids who use them swear they have the best time in the world.
CBAD
ABCD
DCBA CORRECT
BADC
Show solution
From the given options choose the one which best expresses the given sentence in active/passive voice:
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 16/20
7/22/22, 3:17 PM LPU
Show solution
in CORRECT
for
on
to
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 17/20
7/22/22, 3:17 PM LPU
Subject: Prepositions
I hope you will enjoy _____ at the reunion party this weekend because I won't be able to be there ______.
you / myself
yourself / mine
yours / oneself
you / me
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 18/20
7/22/22, 3:17 PM LPU
In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one
which best express the same sentence in Indirect/Direct speech.
Show solution
of
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 19/20
7/22/22, 3:17 PM LPU
from
on
with CORRECT
First 1 2 Last
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 20/20
7/22/22, 3:17 PM LPU
Attempt 1
Test Duration: 00:16:13 Test Start Time: Jul 21, 2022 | 11:18 AM Test Submit Time: Jul 21, 2022 | 11:36 AM Resume Count: 1
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 1/15
7/22/22, 3:17 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 2/15
7/22/22, 3:17 PM LPU
2 Question Wrong: 2
Partially Correct: 0
0 Question Wrong: 0
Partially Correct: 0
/2 /1
Question Not Viewed: 0 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
Pointing to a lady, a man said, ’The father of her brother is the only son of my Grandfather’. How is that lady related to that man?
Sister CORRECT
Daughter
Aunt(father’s sister)
Mother in law
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 3/15
7/22/22, 3:17 PM LPU
If ROAST is coded as PQYUR in a certain language, then how will SLOPPY be coded?
MRNAQN
NRMNQA
QNMRNA CORRECT
RANNMQ
Show solution
Question No: 3 Multi Choice Type Question Report Error
The question below consists of a question and two statements numbered A and B given below it. You have to decide whether the data
provided in the statements are sufficient to answer the questions. Read both the statements and give an answer.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 4/15
7/22/22, 3:17 PM LPU
Show solution
sbaba
bb
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 5/15
7/22/22, 3:17 PM LPU
sabbs
sbabs CORRECT
bsabs
Show solution
A woman introduces a man as the son of the brother of her mother. How is the man's father related to the woman?
Nephew
Son
Uncle CORRECT
Data inadequate
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 6/15
7/22/22, 3:17 PM LPU
Show solution
Common content
Read the following information carefully and answer the questions given beside.
Eight people sitting in two parallel rows facing each other. Each row contains five seats and one of the seats is vacant. No two vacant
seats in each row facing each other. In Row-1, A, B, C and D are seated and facing north, while In Row-2, P, Q, R and S are seated and
facing south. All the given information is not necessary in the same order. D sits third to the right of the vacant seat. Only one seat is
between A and C, who neither faces S nor faces P. R sits second to the left of the vacant seat. Only one person sits between S and Q, who
does not face A. Only one person sits between A and B. P does not face D.
Question
How many seats are there between A and D?
One
Two
Three CORRECT
None
Show solution
Common content
Read the following information carefully and answer the questions given beside.
Eight people sitting in two parallel rows facing each other. Each row contains five seats and one of the seats is vacant. No two vacant
seats in each row facing each other. In Row-1, A, B, C and D are seated and facing north, while In Row-2, P, Q, R and S are seated and
facing south. All the given information is not necessary in the same order. D sits third to the right of the vacant seat. Only one seat is
between A and C, who neither faces S nor faces P. R sits second to the left of the vacant seat. Only one person sits between S and Q, who
does not face A. Only one person sits between A and B. P does not face D.
Question
Who among the following person faces the person who sits second to the right of Q?
Vacant CORRECT
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 8/15
7/22/22, 3:17 PM LPU
Show solution
Common content
Study Table and answer the questions given below that.
Question
The ratio between the total expenditure on Taxes for all the years and the total expenditure on Fuel and Transport for all the years
respectively is approximately_______.
4:7
10:13 CORRECT
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 9/15
7/22/22, 3:17 PM LPU
15:18
5:8
Show solution
Common content
Study Table and answer the questions given below that.
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 10/15
7/22/22, 3:17 PM LPU
Question
The total expenditure of the company over these items during the year 2000 is?
Show solution
Amit travelled 15 km. east-ward, then turned left and travelled 5 km, then turned left and travelled 15 km. How far was Amit from the
starting point?
30 km
35 km
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 11/15
7/22/22, 3:17 PM LPU
15 km
5 km CORRECT
Show solution
A dice is rolled twice and the two positions are shown in the figure below. What is the number of dots at the bottom face when the dice is
in position (i)?
6 CORRECT
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 12/15
7/22/22, 3:17 PM LPU
Show solution
4 CORRECT
Question type: MCQ Single Correct Subject: Aptitude Subject: Reasoning Ability
Subject: Visual Reasoning
Show solution
Considering given statements as true, select a logical conclusion based on the given statements.
Statements:
No tree is a flower
Some trees are fruits
Conclusions:
(I) Fruits that are trees are not flowers.
(II) No fruit is a flower.
Show solution
In the following number series, one number is wrong. Find out the wrong number.
27
13 CORRECT
113
561
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 15/15
7/22/22, 3:15 PM LPU
Attempt 1
Test Duration: 00:16:13 Test Start Time: Jul 21, 2022 | 11:18 AM Test Submit Time: Jul 21, 2022 | 11:36 AM Resume Count: 1
Rank: NA Rank: NA
Rank: NA Rank: NA
Rank: NA Rank: NA
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 1/14
7/22/22, 3:15 PM LPU
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 2/14
7/22/22, 3:15 PM LPU
2 Question Wrong: 2
Partially Correct: 0
0 Question Wrong: 0
Partially Correct: 0
/2 /1
Question Not Viewed: 0 Question Not Viewed: 0
Topic wise Analysis Quants Section Logical Reasoning English Section Coding
In how many ways can 5 prizes be given away to 4 boys, when each boy is eligible for all the prizes?
4!
1024 CORRECT
5!
512
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 3/14
7/22/22, 3:15 PM LPU
Walking at 3/4 of his normal speed, Abhishek is 16 min late in reaching the office. The usual time by him to cover the distance between
his home and his office is _____.
48 min CORRECT
64 min
32 min
60 min
Show solution
Question No: 3 Multi Choice Type Question Report Error
The average temperature for Monday, Tuesday, Wednesday and Thursday was 48 degrees and for Tuesday, Wednesday, Thursday and
Friday was 46 degrees. If the temperature on Monday was 42 degrees, find the temperature on Friday.
30
32
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 4/14
7/22/22, 3:15 PM LPU
34 CORRECT
44
Show solution
The population of a town increases each year by 5% of its total at beginning of the year. If the population on 1 January 2015 was 40000.
What was it on 1 January 2017?
44100 CORRECT
44200
48500
45000
Subject: Percentages
Show solution
A shopkeeper declared 20% discount on an item. Kanahaiya bought the item from the shop for Rs. 9600 after getting discount. Kanahaiya
sells the item to another person in such a way that he earned a profit of 18% on the marked price. What is the selling price for second
person?
Rs 14000
Rs 12000
Rs 14160 CORRECT
Rs 11460
Show solution
Neha’s salary is decreased by 20%. By what per cent her decreased salary be raised to have the original salary?
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 6/14
7/22/22, 3:15 PM LPU
10
25 CORRECT
30
15
Show solution
After selling a fan at 6% gain and a fridge at 9% gain, a shopkeeper gains Rs 5100. But if he sells the fan at 9% gain and the fridge at 6%
loss, he gains Rs 1800 on the whole transaction. Find the original price of the fan.
30000
32000
36000
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 7/14
7/22/22, 3:15 PM LPU
40000 CORRECT
Show solution
The LCM of the two numbers is 48 and their HCF is 6. If one of the numbers is 12, then find the other number.
18
16
24 CORRECT
20
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 8/14
7/22/22, 3:15 PM LPU
n being a multiple of 11
n to be even CORRECT
n to be odd
Show solution
Question No: 10 Multi Choice Type Question Report Error
A sum of money doubles itself in 5 years. In how many years will it become four fold (if interest is compounded)?
15
10 CORRECT
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 9/14
7/22/22, 3:15 PM LPU
20
12
Show solution
Colonel, Major and General started a work together for Rs. 816. Colonel and Major did 8
17
of the total work, while Major and General
together did 12
17
of the whole work. If Major did 3
17
, what is the amount to be given to the least efficient person?
256
144 CORRECT
85
Can’t be determined
Show solution
A train 270 metres long is running with a speed of 54 km per hour. The time taken by it to cross a tunnel 270 metres long is :
24 sec
36 sec CORRECT
30 sec
35 sec
Show solution
The speed of three cars are in the ratio 3 : 4 : 5. The ratio between the time taken by these cars to travel the same distance is
5:4:3
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 11/14
7/22/22, 3:15 PM LPU
12 : 15 : 20
20 : 15 : 12 CORRECT
9 : 15 : 20
Show solution
A, B and C completed a work costing Rs. 1,800. A worked for 6 days, B for 4 days and C for 9 days. If their daily wages are in the ratio of 5
: 6 : 4, how much amount will be received by A?
Rs. 800
Rs. 900
Rs. 750
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 12/14
7/22/22, 3:15 PM LPU
The price of 10 chairs is equal to that of 4 tables. The price of 15 chairs and 3 tables together is Rs. 4500. The total price of 12 chairs and
5 tables is
4200
4500
4600
4900 CORRECT
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 13/14
7/22/22, 3:15 PM LPU
From a bag containing 8 green and 5 red balls, three are drawn one after the other. The probability of all three balls beings green if the
balls drawn are replaced before the next ball pick the balls drawn are not replaced, are respectively?
512/2197,337/2196
512/2197,336/1716 CORRECT
336/2197,512/2197
336/1716,512/2197
Show solution
https://lpu375.examly.io/result?testId=U2FsdGVkX1%2F6yFfZcnuhKW4YzEYXlJT%2FAGr9CTOuWs4htUgO352Gh1dotahAtGOh 14/14