
Mettl Technology Simulators Demo v3
demo2
| 1496752937137
Test Name::
Mettl Technology Simulators Demo v3
Overall Status:
Completed
Detailed Status:
Test-taker Completed
Test Finish Time:
1496752937137
d
d
demo2
demo2@mettl.com
Test-Taker ID: - 10348318
Overall Summary
50
Marks Scored
out of 50
100
%
100
percentile
out of 71 Test Takers
3m
49s
Time taken
of 3hr
Marks Scored
Attempt Summary
Distribution of questions attempted in a total of 5 question(s).
Question-Wise Details
Section 1
Code Snippet Questions (Codelysis)
1
question(s)
17s
Time taken
10/10
Marks Scored
Question
Caesar Cipher
Given a ciphertext encrypted with Caesar cipher, find the corresponding plaintext. Encryption is done by replacing each letter with the letter at 3 positions to the left.
You need to fill in a function that takes as input a string, the cipher text and sets the output variable to the corresponding plaintext. The ciphertext contains only lowercase alphabets.
Example
Given a ciphertext encrypted with Caesar cipher, find the corresponding plaintext. Encryption is done by replacing each letter with the letter at 3 positions to the left.
e.g. 'a' is replaced with 'x', 'b' with 'y', ..., 'd' with 'a' and so on.
You need to fill in a function that takes as input a string, the cipher text and sets the output variable to the corresponding plaintext. The ciphertext contains only lowercase alphabets.
Input
input1: the ciphertext
Output
Return the corresponding plaintext.
Example
Input: nrfzh
Output: quick
Explanation:
Since encryption is done by replacing each letter with the letter at 3 positions to the left, therefore to decrypt, we need to find letters at 3 positions to the right.
The alphabet at 3 positions to the right of 'n' is 'p'.
Similarly, the alphabets at 3 positions to the right of 'r', 'f', 'z' and 'h' are 'u', 'i', 'c' and 'k' respectively.
Therfore, "nrfzh" is decrypted as "quick".
❤
Response
Compilation
Successful
Time Taken
17s
Marks Scored
10
Out of
10
Language
CSHARP
CSHARP
00:00:00
/
00:00:00
Sample Test Case Timestamp
Graded Test Case Timestamp
Graded Test Case Code Compilation :
1
Successful
1
Attempt
Sample Test Case Code Compilation :
1
Successful
1
Attempt
Code complexity
:
80
Total no. of Testcase :
15
Total Passed :
15
Test Case
Marks
Cpu (ms)
Processing (ms)
Memory (KB)
Inputs
Expected output
Actual output
Error Message
simple
0
0
20
424
nrfzh
quick
quick
NA
Basic Testcase 1
0.71
0
19
392
phqgh
sktjk
sktjk
NA
Basic Testcase 2
0.71
0
19
392
umeaylnlfd
xphdboqoig
xphdboqoig
NA
Basic Testcase 3
0.71
0
19
416
xfircvscxggbwkfnqdux
ailufyvfajjezniqtgxa
ailufyvfajjezniqtgxa
NA
Basic Testcase 4
0.71
0
18
392
wfnfozvsrtkjprepggxrpnrvystmwcysyycqpevikeffmznimk
ziqircyvuwnmsuhsjjausquybvwpzfbvbbftshylnhiipcqlpn
ziqircyvuwnmsuhsjjausquybvwpzfbvbbftshylnhiipcqlpn
NA
Necessary Testcase 1
0.71
0
19
632
kasvwsrenzkycxfxtlsgypsfadpooefxzbcoejuvpvaboygpoeylfpbnpljvrvipyamyeh
ndvyzvuhqcnbfaiawovjbsvidgsrrhiacefrhmxysyderbjsrhboiseqsomyuylsbdpbhk
ndvyzvuhqcnbfaiawovjbsvidgsrrhiacefrhmxysyderbjsrhboiseqsomyuylsbdpbhk
NA
Necessary Testcase 2
0.71
0
19
416
wqnqrqpmxujjloovaowuxwhmsncbxcoksfzkvatxdknlyjyhfixjswnkkufnuxxzrzbmnmgqooketlyhnkoaugzqrcddiuteiojw
ztqtutspaxmmorrydrzxazkpvqfeafrnvicnydwagnqobmbkilamvzqnnxiqxaacucepqpjtrrnhwobkqnrdxjctufgglxwhlrmz
ztqtutspaxmmorrydrzxazkpvqfeafrnvicnydwagnqobmbkilamvzqnnxiqxaacucepqpjtrrnhwobkqnrdxjctufgglxwhlrmz
NA
Necessary Testcase 3
0.71
0
20
22236
ayyzpvscmpsajlfvgubfaaovlzylntrkdcpwsrtesjwhdizcobzcnfwlqijtvdwvxhrcbldvgylwgbusbmborxtlhcsmpxohgmgnkeufdxotogbgxpeyanfetcukepzshkljugggekjdqzjenpevqg
...
dbbcsyvfpsvdmoiyjxeiddryocboqwungfszvuwhvmzkglcfrecfqizotlmwygzyakufeogyjbozjexveperuawokfvpsarkjpjqnhxigarwrjejashbdqihwfxnhscvknomxjjjhnmgtcmhqshytj
...
dbbcsyvfpsvdmoiyjxeiddryocboqwungfszvuwhvmzkglcfrecfqizotlmwygzyakufeogyjbozjexveperuawokfvpsarkjpjqnhxigarwrjejashbdqihwfxnhscvknomxjjjhnmgtcmhqshytj
...
NA
Necessary Testcase 4
0.71
0
19
416
qdcyzjeeuhmsrqcozijipfioneeddpszrnavymmtatbdzqsoemuvnpppsuacbazuxmhecthlegrpunkdmbppweqtgjoparmowzdqyoxytjbbhawdydcprjbxphoohpkwqyuhrqzhnbnfuvqnqqlrzj
...
tgfbcmhhxkpvutfrclmlsilrqhhggsvcuqdybppwdwegctvrhpxyqsssvxdfedcxapkhfwkohjusxqngpesszhtwjmrsduprzcgtbrabwmeekdzgbgfsumeaskrrksnztbxkutckqeqixytqttoucm
...
tgfbcmhhxkpvutfrclmlsilrqhhggsvcuqdybppwdwegctvrhpxyqsssvxdfedcxapkhfwkohjusxqngpesszhtwjmrsduprzcgtbrabwmeekdzgbgfsumeaskrrksnztbxkutckqeqixytqttoucm
...
NA
Necessary Testcase 5
0.71
0
20
392
ceyhjugixwtbvtrehbbcpxifbxvfbcgkcfqckcotzgkubmjrmbsztsshfroefwsjrxjhguzyupzwweiqurpixiqflduuveoowqcudhnefnjhaimuczfskuiduburiswtbrecuykabfcvkdzeztoidu
...
fhbkmxjlazweywuhkeefsalieayiefjnfitfnfrwcjnxepmupevcwvvkiurhizvmuamkjxcbxsczzhltxuslaltiogxxyhrrztfxgkqhiqmkdlpxfcivnxlgxexulvzweuhfxbndeifyngchcwrlgx
...
fhbkmxjlazweywuhkeefsalieayiefjnfitfnfrwcjnxepmupevcwvvkiurhizvmuamkjxcbxsczzhltxuslaltiogxxyhrrztfxgkqhiqmkdlpxfcivnxlgxexulvzweuhfxbndeifyngchcwrlgx
...
NA
Necessary Testcase 6
0.71
0
19
392
cdwracgfmzkgipdfodkjmjqwiqpuoqhimvfvuzwyvijgfullkjduhsjafbtlkmfqrmyjfjnhhssqctydteamdcjbprhtnegyiwxgcjwlgrsmeaearwtvjsjbaoiojlwhypnvruihoswkifygtydhac
...
fgzudfjipcnjlsgirgnmpmtzltsxrtklpyiyxczbylmjixoonmgxkvmdiewonpitupbmimqkkvvtfwbgwhdpgfmesukwqhjblzajfmzojuvphdhduzwymvmedrlrmozkbsqyuxlkrvznlibjwbgkdf
...
fgzudfjipcnjlsgirgnmpmtzltsxrtklpyiyxczbylmjixoonmgxkvmdiewonpitupbmimqkkvvtfwbgwhdpgfmesukwqhjblzajfmzojuvphdhduzwymvmedrlrmozkbsqyuxlkrvznlibjwbgkdf
...
NA
Corner Testcase 1
0.71
0
19
24548
smvnonwafxwhgbibabvqopqfoviussqfqwehtxdzujtlntxmrjxxwtlggkytbiolydnilqadojskkvfxahhjmbocljarintdwcldvdxropbyjzwyyojuothwmlvrglfzdzdbtubxuoffvncrswsazn
...
vpyqrqzdiazkjeledeytrstirylxvvtitzhkwagcxmwoqwapumaazwojjnbwelrobgqlotdgrmvnnyiadkkmperfomdulqwgzfogygaursebmczbbrmxrwkzpoyujoicgcgewxeaxriiyqfuvzvdcq
...
vpyqrqzdiazkjeledeytrstirylxvvtitzhkwagcxmwoqwapumaazwojjnbwelrobgqlotdgrmvnnyiadkkmperfomdulqwgzfogygaursebmczbbrmxrwkzpoyujoicgcgewxeaxriiyqfuvzvdcq
...
NA
Corner Testcase 2
0.71
0
20
24548
gzmbintattnhodtonpyzwotkgnguphpkxeatowzabsdnvqhkfcmofisfrfqgvpmvorpjfzslzmpjjnehrykxjzubuacclfkcyzobghtuoxrajvprecwgxxpswcgmmvedewdmfnqwcuqdsciliqecih
...
jcpelqwdwwqkrgwrqsbczrwnjqjxsksnahdwrzcdevgqytknifprilviuitjyspyrusmicvocpsmmqhkubnamcxexdffoinfbcrejkwxraudmysuhfzjaasvzfjppyhghzgpiqtzfxtgvflolthflk
...
jcpelqwdwwqkrgwrqsbczrwnjqjxsksnahdwrzcdevgqytknifprilviuitjyspyrusmicvocpsmmqhkubnamcxexdffoinfbcrejkwxraudmysuhfzjaasvzfjppyhghzgpiqtzfxtgvflolthflk
...
NA
Time Complexity Testcase 1
0.71
0
19
416
euvczvicthrxsxclprgdlwxfaigayrueicufdiamhtkbxotdirxxgvzqmeyrovfichqnivfjzauqfdftgmopsrgpugxtuhlcvspihazrssfszwxbqmurwmxcdbhumrgjqmvnkyrtnsjvwzxssqxnjo
...
hxyfcylfwkuavafosujgozaidljdbuxhlfxigldpkwnearwgluaajyctphburyilfktqlyimcdxtigiwjprsvujsxjawxkofyvslkdcuvvivczaetpxuzpafgekxpujmtpyqnbuwqvmyzcavvtaqmr
...
hxyfcylfwkuavafosujgozaidljdbuxhlfxigldpkwnearwgluaajyctphburyilfktqlyimcdxtigiwjprsvujsxjawxkofyvslkdcuvvivczaetpxuzpafgekxpujmtpyqnbuwqvmyzcavvtaqmr
...
NA
Time Complexity Testcase 2
0.71
0
19
392
nfhdaxphbsywztpwjngjncpxrjvbvccefkbemgsdymzmmkwdehfkruqbyvecmpesromdxllubryyeshqlzmrewqnkqitxgiigquskwtcznlterxbltzydyzvahnkixjwzztdjpqsuowkvfccockvrj
...
qikgdaskevbzcwszmqjmqfsaumyeyffhinehpjvgbpcppnzghkinuxtebyhfpshvurpgaooxeubbhvktocpuhztqntlwajlljtxvnzwfcqowhuaeowcbgbcydkqnlamzccwgmstvxrznyiffrfnyum
...
qikgdaskevbzcwszmqjmqfsaumyeyffhinehpjvgbpcppnzghkinuxtebyhfpshvurpgaooxeubbhvktocpuhztqntlwajlljtxvnzwfcqowhuaeowcbgbcydkqnlamzccwgmstvxrznyiffrfnyum
...
NA
Question-Wise Details
Section 2
Database Query Writing Questions (DBlysis)
1
question(s)
40s
Time taken
10/10
Marks Scored
Question
Displaying Employee Details
Write a MySQL query to find the employee number and birth date of all female employees.
You can view the database schema by clicking the
View Schema
tab at the bottom of the query window on the right-hand side of the screen.
❤
Loading...
Response
answer
answer
Test taker's response
Test taker's response
Test Cases
Test Case
Expected output
Actual output
Scored
System message
Check for employee id and birth date
23 Row(s), 2 Columns(s)
23 Row(s), 2 Columns(s)
100.0/100.0
Question-Wise Details
Section 3
IDE Style App Development Questions (CodeProject)
1
question(s)
1m 36s
Time taken
10/10
Marks Scored
Question
Area Calculator
You are required a develop a Java based app which can calculate area of a square or a rectangle according to the inputs provided.
Given:
You are given a class named Area with two overloaded but un-implemented methods.
Objective(s):
- You are required to complete the app such that when an object of the Area class is used to call the calculate_area() method, it should return the appropriate answer depending upon the types of input provided.
- There are only two types of figures, namely square and rectangle, for which area needs to be calculated. Your app should automatically detect the type of figure depending upon the inputs and provide the appropriate answer.
Constrain(s):
- Do not change the class or method names or return types.
- Do not delete any of the class files.
❤
Response
Graded Unit Test Case and Method
Result
Marks
mypackage.GradingSampleTest
- area_square
Pass
5.0/5.0
- area_rectangle
Pass
5.0/5.0
Test Taker Unit Test Case and Method
Result
Marks
mypackage.CandidateSampleTest
- testApp
Pass
0.0/0.0
Static Code Analysis
No violations found
Question-Wise Details
Section 4
Front-end Development Questions (FES)
1
question(s)
42s
Time taken
10/10
Marks Scored
Question
Login Box
You are the Front-end developer
of your company and are working on a new web application project. To start with, you decided to build and design the login page of the application.
Given:
You started building and completed the basic HTML structure of the login page. You also added some CSS styling to the page.
You started building and completed the basic HTML structure of the login page. You also added some CSS styling to the page.
Objective(s):
You are now required to use HTML and JavaScript and complete the following tasks:
You are now required to use HTML and JavaScript and complete the following tasks:
- Display a <h1> sized header with the text "Login" at the top of the page i.e. above the two input boxes.
- Add a default value of "demo@mettl.com" for the first input box.
- Add a default value of "password" for the second input box.
- Add a functionality to the reset button such that upon clicking it, the values of the two input boxes are reset to the default values provided in points 2 and 3 above respectively.
Constrain(s):
- Do not change the "name" or "id" of any element in the form as it will cause the code developed by the back-end developer to fail.
- Do not remove the CDN link for jQuery as your code will not run without it.
- You are not required to add/change any CSS styling in the form.
❤
EASY
FES - Front-end Development Question
TestCases :
Title
Check for all objectives
Description
Javascript Precondition
?
Yes
Rules:
Title:
Check value of H1 header
Type of Rule:
JS
Weightage Scored:
25.0
Description
:
Execution Results
:
Premise
Condition
Weightage
Result
IF
header_flag
25.0
PASS
Title:
Check value of email input
Type of Rule:
JS
Weightage Scored:
25.0
Description
:
Execution Results
:
Premise
Condition
Weightage
Result
IF
email_flag
25.0
PASS
Title:
Check value of password input
Type of Rule:
JS
Weightage Scored:
25.0
Description
:
Execution Results
:
Premise
Condition
Weightage
Result
IF
password_flag
25.0
PASS
Title:
Check reset button
Type of Rule:
JS
Weightage Scored:
25.0
Description
:
Execution Results
:
Premise
Condition
Weightage
Result
IF
reset_flag
25.0
PASS
Test Log
17 Mar,2017
About the Report
This Report is generated electronically on the basis of the inputs received from the assessment takers. This Report including the AI flags that are generated in case of availing of proctoring services, should not be solely used/relied on for making any business, selection, entrance, or employment-related decisions. Mettl accepts no liability from the use of or any action taken or refrained from or for any and all business decisions taken as a result of or reliance upon anything, including, without limitation, information, advice, or AI flags contained in this Report or sources of information used or referred to in this Report.