SlideShare a Scribd company logo
1 of 9
Download to read offline
1/9/23, 8:01 PM BIT Placements App
https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 1/9
Result & Analysis
Student: ANBARASU C Email id: anbarasuchithambaram@gTest: Exam 58 Course: Placement Assessment - 20
Attempt 1
IP Address: 2409:4072:e85:3281:f5d4:a74d:80c4:c10 Tab switches: 0 OS used: Windows Browser used: Chrome
Test Duration: 01:15:14 Test Start Time: Jan 9, 2023 | 07:16 PM Test Submit Time: Jan 9, 2023 | 07:58 PM
Overall score
57
/ 70
Rank: NA
Topper score: 70.00 / 70
Average score: 22.72 / 70
Least score: 0.00 / 70
Quantitative Aptitude
20
/ 20
Rank: NA
Topper score: 20.00 / 20
Average score: 14.53 / 20
Least score: 0.00 / 20
Verbal Ability
18
/ 20
Rank: NA
Topper score: 20.00 / 20
Average score: 14.33 / 20
Least score: 0.00 / 20
Technical Ability
19
/ 30
Rank: NA
Topper score: 30.00 / 30
Average score: 19.60 / 30
Least score: 0.00 / 30
Overall Question Status
60
/ 61
Total Questions: 61
Questions Attempted: 60
Questions Correct: 57
Question Wrong: 3
Partially Correct: 0
Question Not Viewed: 0
Questions Skipped : 1
Quantitative Aptitude - Question Status
20
/ 20
Total Questions: 20
Questions Attempted: 20
Questions Correct: 20
Question Wrong: 0
Partially Correct: 0
Question Not Viewed: 0
Questions Skipped : 0
Verbal Ability - Question Status
20
/ 20
Total Questions: 20
Questions Attempted: 20
Questions Correct: 18
Question Wrong: 2
Partially Correct: 0
Question Not Viewed: 0
Questions Skipped : 0
Technical Ability - Question Status
20
/ 21
Total Questions: 21
Questions Attempted: 20
Questions Correct: 19
Question Wrong: 1
Partially Correct: 0
Question Not Viewed: 0
Questions Skipped : 1
Topic wise Analysis Quantitative Aptitu… Verbal Ability Technical Ability
Question No: 1 Multi Choice Type Question
Which among the given options compares atmost n characters of string ch to string s?
CORRECT

Report Error
int strcmp(s, ch)
int strncmp(ch, s, n)
int strcmp(ch, s)
1/9/23, 8:01 PM BIT Placements App
https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 2/9
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 2 Multi Choice Type Question
In RDBMS, different classes of relations are created using __________ technique to prevent modification anomalies.
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 3 Multi Choice Type Question
What is the use of function char *strchr(ch, c)?
CORRECT
Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 4 Multi Choice Type Question
Consider the following tables :
What will be the output of following SQL query ?
int strncmp(s, ch, n)
Report Error
Normal Forms
Referential integrity
Functional Dependencies
Data integrity
Report Error
return pointer to first occurrence of ch in c or NULL if not present
return pointer to first occurrence of cin ch or ignores if not
present
return pointer to first occurrence of ch in c or ignores if not
present
return pointer to first occurrence of c in ch or NULL if
not present
Report Error
1/9/23, 8:01 PM BIT Placements App
https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 3/9
SELECT * FROM EMPLOYEE E
WHERE 2 = (SELECT COUNT(DISTINCT E1.SALARY)
FROM EMPLOYEE E1
WHERE E1.SALARY>E.SALARY)
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 5 Multi Choice Type Question
Predict the output of following C++ progran
#include <iostream>
using namespace std;
int i;
class A
{
public:
~A()
{
i=10;
}
};
int foo()
{
i=3;
A ob;
return i;
}
int main()
{
cout << foo() << endl;
return 0;
}
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Two distinct salary of employees
Second highest salary
Employee with second highest salary
Third highest salary
Report Error
3
None of the above
10
0
1/9/23, 8:01 PM BIT Placements App
https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 4/9
Question No: 6 Multi Choice Type Question
Which of the following related to snowflake schema is true?
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 7 Multi Choice Type Question
The minimum number of stacks needed to implement a queue is
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 8 Multi Choice Type Question
#include <iostream>
using namespace std;
class A
{
int id;
static int count;
public:
A() {
count++;
id = count;
cout << "constructor for id " << id << endl;
}
~A() {
cout << "destructor for id " << id << endl;
}
};
int A::count = 0;
int main() {
A a[3];
return 0;
}
Report Error
Maintenance efforts are less
It is not an extension of star schema
Dimension tables are normalised
Each dimension is represented by a single dimensional table
Report Error
1
2
3
4
Report Error
1/9/23, 8:01 PM BIT Placements App
https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 5/9
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 9 Multi Choice Type Question
Can destructors be private in C++?
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 10 Multi Choice Type Question
A B-Tree used as an index for a large database table has four levels including the root node. If a new key is inserted in this index, then the
maximum number of nodes that could be newly created in the process are
CORRECT
constructor for id 1
destructor for id 1
constructor for id 1
constructor for id 2
constructor for id 3
destructor for id 1
destructor for id 2
destructor for id 3
Compiler Dependent.
constructor for id 1
constructor for id 2
constructor for id 3
destructor for id 3
destructor for id 2
destructor for id 1
Report Error
Yes
No
Report Error
4
2
1
5
1/9/23, 8:01 PM BIT Placements App
https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 6/9
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 11 Single File Programming Question
sumDigits:
Given a string, print the sum of the digits 0-9 that appear in the string, ignoring all other characters. Print 0 if there are no digits in the string.
Input format
Input contains a single string
Output format
Output contains a single integer
Code constraints
0<=length of input string<=100
Sample testcases
Input 1
aa1bc2d3
Output 1
6

Status: Skipped Mark obtained: 0/10 Hints used: 0 Times compiled: 0
Times submitted: 0 Level: Easy Question type: Single File Programming
Question No: 12 Multi Choice Type Question
A three dimensional array in ‘C’ is declared as int A[x][y][z]. Consider that array elements are stored in row major order and indexing begins
from 0. Here, the address of an item at the location A[p][q][r] can be computed as follows (where w is the word length of an integer):
CORRECT
Report Error
C (17)  
// You are using GCC
Show testcase scores Show solution
Report Error
&A[0][0][0] + w(y * z * p + z*q + r)
&A[0][0][0] + w(x * y * q + z * p + r)
1
2
1/9/23, 8:01 PM BIT Placements App
https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 7/9
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 13 Multi Choice Type Question
Which code from the given option return pointer to last occurrence of c in ch or NULL if not present?
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 14 Multi Choice Type Question
Which among the given options is the right explanation for the statement size_t strcspn(c, s)?
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 15 Multi Choice Type Question
The postorder traversal of a binary tree is 8, 9, 6, 7, 4, 5, 2, 3, 1. The inorder traversal of the same tree is 8, 6, 9, 4, 7, 2, 5, 1, 3. The height of a
tree is the length of the longest path from the root to any leaf. The height of the binary tree above is ________ . Note -This was Numerical Type
question.
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
&A[0][0][0] + w(y * z * q + z * p + r)
&A[0][0][0] + w(x * y * p + z * q+ r)
Report Error
char *strrchr(ch, c)
char *strchr(ch, c)
char *strcat(ch, c)
char *strncat(ch, c)
Report Error
return length of prefix of c consisting of characters not
in s
return length of prefix of s consisting of characters not in c
return length of prefix of c consisting of characters present in s
return length of prefix of s consisting of characters present in c
Report Error
5
3
4
2
1/9/23, 8:01 PM BIT Placements App
https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 8/9
Question type: MCQ Single Correct
Question No: 16 Multi Choice Type Question
Consider a table that describes the customers :
Customers(custid, name, gender, rating)
The rating value is an integer in the range 1 to 5 and only two values (male and female) are recorded for gender. Consider the query “how
many male customers have a rating of 5”? The best indexing mechanism appropriate for the query is
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 17 Multi Choice Type Question
Can destructors be virtual in C++?
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 18 Multi Choice Type Question
Like constructors, can there be more than one destructors in a class?
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 19 Multi Choice Type Question
Consider the following conditions: (a)The solution must be feasible, i.e. it must satisfy all the supply and demand constraints. (b)The number
of positive allocations must be equal to m1n21, where m is the number of rows and n is the number of columns. (c)All the positive allocations
must be in independent positions. The initial solution of a transportation problem is said to be non-degenerate basic feasible solution if it
satisfies: Codes:
Report Error
Bit-mapped hashing
Extendible hashing
B+ Tree
Linear hashing
Report Error
No
Yes
Report Error
No
Yes
Report Error
(a) and (c) only
1/9/23, 8:01 PM BIT Placements App
https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 9/9
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
Question No: 20 Multi Choice Type Question
Which of the following related to snowflake schema is true?
CORRECT
Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy
Question type: MCQ Single Correct
(a), (b) and (c)
(b) and (c) only
(a) and (b) only
Report Error
Maintenance efforts are less
It is not an extension of star schema
Dimension tables are normalised
Each dimension is represented by a single dimensional table
First 1 2 Last

More Related Content

Similar to 9 January 2023(Tech).pdf

important C questions and_answers praveensomesh
important C questions and_answers praveensomeshimportant C questions and_answers praveensomesh
important C questions and_answers praveensomeshpraveensomesh
 
Technical aptitude Test 1 CSE
Technical aptitude Test 1 CSETechnical aptitude Test 1 CSE
Technical aptitude Test 1 CSESujata Regoti
 
White Box testing by Pankaj Thakur, NITTTR Chandigarh
White Box testing by Pankaj Thakur, NITTTR ChandigarhWhite Box testing by Pankaj Thakur, NITTTR Chandigarh
White Box testing by Pankaj Thakur, NITTTR ChandigarhPankaj Thakur
 
Online examination
Online examinationOnline examination
Online examinationAstha Patel
 
Mid term sem 2 1415 sol
Mid term sem 2 1415 solMid term sem 2 1415 sol
Mid term sem 2 1415 solIIUM
 
PVS-Studio vs Chromium
PVS-Studio vs ChromiumPVS-Studio vs Chromium
PVS-Studio vs ChromiumPVS-Studio
 
Technical aptitude test 2 CSE
Technical aptitude test 2 CSETechnical aptitude test 2 CSE
Technical aptitude test 2 CSESujata Regoti
 
OXUS20 JAVA Programming Questions and Answers PART I
OXUS20 JAVA Programming Questions and Answers PART IOXUS20 JAVA Programming Questions and Answers PART I
OXUS20 JAVA Programming Questions and Answers PART IAbdul Rahman Sherzad
 
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2Knowledge Center Computer
 
Testing lab manual Testing lab manual sqa
Testing lab manual Testing lab manual sqaTesting lab manual Testing lab manual sqa
Testing lab manual Testing lab manual sqaMuhammadAdnan845624
 

Similar to 9 January 2023(Tech).pdf (20)

important C questions and_answers praveensomesh
important C questions and_answers praveensomeshimportant C questions and_answers praveensomesh
important C questions and_answers praveensomesh
 
Technical aptitude Test 1 CSE
Technical aptitude Test 1 CSETechnical aptitude Test 1 CSE
Technical aptitude Test 1 CSE
 
Ansi c
Ansi cAnsi c
Ansi c
 
Python Programming
Python ProgrammingPython Programming
Python Programming
 
Technical questions
Technical questionsTechnical questions
Technical questions
 
c programing
c programingc programing
c programing
 
White Box testing by Pankaj Thakur, NITTTR Chandigarh
White Box testing by Pankaj Thakur, NITTTR ChandigarhWhite Box testing by Pankaj Thakur, NITTTR Chandigarh
White Box testing by Pankaj Thakur, NITTTR Chandigarh
 
C Programming
C ProgrammingC Programming
C Programming
 
Online examination
Online examinationOnline examination
Online examination
 
C MCQ
C MCQC MCQ
C MCQ
 
CodeChecker summary 21062021
CodeChecker summary 21062021CodeChecker summary 21062021
CodeChecker summary 21062021
 
C lab-programs
C lab-programsC lab-programs
C lab-programs
 
Mid term sem 2 1415 sol
Mid term sem 2 1415 solMid term sem 2 1415 sol
Mid term sem 2 1415 sol
 
PVS-Studio vs Chromium
PVS-Studio vs ChromiumPVS-Studio vs Chromium
PVS-Studio vs Chromium
 
LMmanual.pdf
LMmanual.pdfLMmanual.pdf
LMmanual.pdf
 
Technical aptitude test 2 CSE
Technical aptitude test 2 CSETechnical aptitude test 2 CSE
Technical aptitude test 2 CSE
 
OXUS20 JAVA Programming Questions and Answers PART I
OXUS20 JAVA Programming Questions and Answers PART IOXUS20 JAVA Programming Questions and Answers PART I
OXUS20 JAVA Programming Questions and Answers PART I
 
Arrays in C language
Arrays in C languageArrays in C language
Arrays in C language
 
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2
UGC-NET, GATE and all IT Companies Interview C++ Solved Questions PART - 2
 
Testing lab manual Testing lab manual sqa
Testing lab manual Testing lab manual sqaTesting lab manual Testing lab manual sqa
Testing lab manual Testing lab manual sqa
 

Recently uploaded

AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubaikojalkojal131
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtrahman018755
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...tanu pandey
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...SUHANI PANDEY
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls DubaiEscorts Call Girls
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableSeo
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirtrahman018755
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
 

Recently uploaded (20)

AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
Al Barsha Night Partner +0567686026 Call Girls Dubai
Al Barsha Night Partner +0567686026 Call Girls  DubaiAl Barsha Night Partner +0567686026 Call Girls  Dubai
Al Barsha Night Partner +0567686026 Call Girls Dubai
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 

9 January 2023(Tech).pdf

  • 1. 1/9/23, 8:01 PM BIT Placements App https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 1/9 Result & Analysis Student: ANBARASU C Email id: anbarasuchithambaram@gTest: Exam 58 Course: Placement Assessment - 20 Attempt 1 IP Address: 2409:4072:e85:3281:f5d4:a74d:80c4:c10 Tab switches: 0 OS used: Windows Browser used: Chrome Test Duration: 01:15:14 Test Start Time: Jan 9, 2023 | 07:16 PM Test Submit Time: Jan 9, 2023 | 07:58 PM Overall score 57 / 70 Rank: NA Topper score: 70.00 / 70 Average score: 22.72 / 70 Least score: 0.00 / 70 Quantitative Aptitude 20 / 20 Rank: NA Topper score: 20.00 / 20 Average score: 14.53 / 20 Least score: 0.00 / 20 Verbal Ability 18 / 20 Rank: NA Topper score: 20.00 / 20 Average score: 14.33 / 20 Least score: 0.00 / 20 Technical Ability 19 / 30 Rank: NA Topper score: 30.00 / 30 Average score: 19.60 / 30 Least score: 0.00 / 30 Overall Question Status 60 / 61 Total Questions: 61 Questions Attempted: 60 Questions Correct: 57 Question Wrong: 3 Partially Correct: 0 Question Not Viewed: 0 Questions Skipped : 1 Quantitative Aptitude - Question Status 20 / 20 Total Questions: 20 Questions Attempted: 20 Questions Correct: 20 Question Wrong: 0 Partially Correct: 0 Question Not Viewed: 0 Questions Skipped : 0 Verbal Ability - Question Status 20 / 20 Total Questions: 20 Questions Attempted: 20 Questions Correct: 18 Question Wrong: 2 Partially Correct: 0 Question Not Viewed: 0 Questions Skipped : 0 Technical Ability - Question Status 20 / 21 Total Questions: 21 Questions Attempted: 20 Questions Correct: 19 Question Wrong: 1 Partially Correct: 0 Question Not Viewed: 0 Questions Skipped : 1 Topic wise Analysis Quantitative Aptitu… Verbal Ability Technical Ability Question No: 1 Multi Choice Type Question Which among the given options compares atmost n characters of string ch to string s? CORRECT  Report Error int strcmp(s, ch) int strncmp(ch, s, n) int strcmp(ch, s)
  • 2. 1/9/23, 8:01 PM BIT Placements App https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 2/9 Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 2 Multi Choice Type Question In RDBMS, different classes of relations are created using __________ technique to prevent modification anomalies. CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 3 Multi Choice Type Question What is the use of function char *strchr(ch, c)? CORRECT Status: Wrong Mark obtained: 0/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 4 Multi Choice Type Question Consider the following tables : What will be the output of following SQL query ? int strncmp(s, ch, n) Report Error Normal Forms Referential integrity Functional Dependencies Data integrity Report Error return pointer to first occurrence of ch in c or NULL if not present return pointer to first occurrence of cin ch or ignores if not present return pointer to first occurrence of ch in c or ignores if not present return pointer to first occurrence of c in ch or NULL if not present Report Error
  • 3. 1/9/23, 8:01 PM BIT Placements App https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 3/9 SELECT * FROM EMPLOYEE E WHERE 2 = (SELECT COUNT(DISTINCT E1.SALARY) FROM EMPLOYEE E1 WHERE E1.SALARY>E.SALARY) CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 5 Multi Choice Type Question Predict the output of following C++ progran #include <iostream> using namespace std; int i; class A { public: ~A() { i=10; } }; int foo() { i=3; A ob; return i; } int main() { cout << foo() << endl; return 0; } CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Two distinct salary of employees Second highest salary Employee with second highest salary Third highest salary Report Error 3 None of the above 10 0
  • 4. 1/9/23, 8:01 PM BIT Placements App https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 4/9 Question No: 6 Multi Choice Type Question Which of the following related to snowflake schema is true? CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 7 Multi Choice Type Question The minimum number of stacks needed to implement a queue is CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 8 Multi Choice Type Question #include <iostream> using namespace std; class A { int id; static int count; public: A() { count++; id = count; cout << "constructor for id " << id << endl; } ~A() { cout << "destructor for id " << id << endl; } }; int A::count = 0; int main() { A a[3]; return 0; } Report Error Maintenance efforts are less It is not an extension of star schema Dimension tables are normalised Each dimension is represented by a single dimensional table Report Error 1 2 3 4 Report Error
  • 5. 1/9/23, 8:01 PM BIT Placements App https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 5/9 CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 9 Multi Choice Type Question Can destructors be private in C++? CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 10 Multi Choice Type Question A B-Tree used as an index for a large database table has four levels including the root node. If a new key is inserted in this index, then the maximum number of nodes that could be newly created in the process are CORRECT constructor for id 1 destructor for id 1 constructor for id 1 constructor for id 2 constructor for id 3 destructor for id 1 destructor for id 2 destructor for id 3 Compiler Dependent. constructor for id 1 constructor for id 2 constructor for id 3 destructor for id 3 destructor for id 2 destructor for id 1 Report Error Yes No Report Error 4 2 1 5
  • 6. 1/9/23, 8:01 PM BIT Placements App https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 6/9 Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 11 Single File Programming Question sumDigits: Given a string, print the sum of the digits 0-9 that appear in the string, ignoring all other characters. Print 0 if there are no digits in the string. Input format Input contains a single string Output format Output contains a single integer Code constraints 0<=length of input string<=100 Sample testcases Input 1 aa1bc2d3 Output 1 6  Status: Skipped Mark obtained: 0/10 Hints used: 0 Times compiled: 0 Times submitted: 0 Level: Easy Question type: Single File Programming Question No: 12 Multi Choice Type Question A three dimensional array in ‘C’ is declared as int A[x][y][z]. Consider that array elements are stored in row major order and indexing begins from 0. Here, the address of an item at the location A[p][q][r] can be computed as follows (where w is the word length of an integer): CORRECT Report Error C (17)   // You are using GCC Show testcase scores Show solution Report Error &A[0][0][0] + w(y * z * p + z*q + r) &A[0][0][0] + w(x * y * q + z * p + r) 1 2
  • 7. 1/9/23, 8:01 PM BIT Placements App https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 7/9 Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 13 Multi Choice Type Question Which code from the given option return pointer to last occurrence of c in ch or NULL if not present? CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 14 Multi Choice Type Question Which among the given options is the right explanation for the statement size_t strcspn(c, s)? CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 15 Multi Choice Type Question The postorder traversal of a binary tree is 8, 9, 6, 7, 4, 5, 2, 3, 1. The inorder traversal of the same tree is 8, 6, 9, 4, 7, 2, 5, 1, 3. The height of a tree is the length of the longest path from the root to any leaf. The height of the binary tree above is ________ . Note -This was Numerical Type question. CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy &A[0][0][0] + w(y * z * q + z * p + r) &A[0][0][0] + w(x * y * p + z * q+ r) Report Error char *strrchr(ch, c) char *strchr(ch, c) char *strcat(ch, c) char *strncat(ch, c) Report Error return length of prefix of c consisting of characters not in s return length of prefix of s consisting of characters not in c return length of prefix of c consisting of characters present in s return length of prefix of s consisting of characters present in c Report Error 5 3 4 2
  • 8. 1/9/23, 8:01 PM BIT Placements App https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 8/9 Question type: MCQ Single Correct Question No: 16 Multi Choice Type Question Consider a table that describes the customers : Customers(custid, name, gender, rating) The rating value is an integer in the range 1 to 5 and only two values (male and female) are recorded for gender. Consider the query “how many male customers have a rating of 5”? The best indexing mechanism appropriate for the query is CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 17 Multi Choice Type Question Can destructors be virtual in C++? CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 18 Multi Choice Type Question Like constructors, can there be more than one destructors in a class? CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 19 Multi Choice Type Question Consider the following conditions: (a)The solution must be feasible, i.e. it must satisfy all the supply and demand constraints. (b)The number of positive allocations must be equal to m1n21, where m is the number of rows and n is the number of columns. (c)All the positive allocations must be in independent positions. The initial solution of a transportation problem is said to be non-degenerate basic feasible solution if it satisfies: Codes: Report Error Bit-mapped hashing Extendible hashing B+ Tree Linear hashing Report Error No Yes Report Error No Yes Report Error (a) and (c) only
  • 9. 1/9/23, 8:01 PM BIT Placements App https://bit410.examly.io/result?testId=U2FsdGVkX18OnZIkYIEbGUBfFa%2BeK2bOzX0prDOxE%2FtrIEhX4NMMRUZCaMmWV1xy 9/9 CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct Question No: 20 Multi Choice Type Question Which of the following related to snowflake schema is true? CORRECT Status: Correct Mark obtained: 1/1 Hints used: 0 Level: Easy Question type: MCQ Single Correct (a), (b) and (c) (b) and (c) only (a) and (b) only Report Error Maintenance efforts are less It is not an extension of star schema Dimension tables are normalised Each dimension is represented by a single dimensional table First 1 2 Last