How much marks you got as compared to last year
- +0-10
- -10-20
- +10-20
- -0-10
- -20-30
- +20-30
0 voters
How much marks you got as compared to last year
0 voters
mocks me 120 v nhi banta h...exam me 168 kaise aa rha.. hope result me v itna aa jaye... thanks to all the puys for all the help i got till now.
Could have done better, 160. 4 wrong out of 85 attempts.
I have applied the logic as (6+1)*(7+1) =56 (8+1)*(4+1)=45 similarly (6+2)*(3+1)= 32. someone explain ssc's logic please
Are both these questions marked correctly by SSC??
Marks nikaalne ka koi script ready hai is baar?
143 1st attempt
ssc adda prediction just now. 117 to 122 UR
At this point, as ssc aspirants our passions are high, be it over joy or be it over sadness....but id take this moment to remind us all that in 2016....guys who just got through T1 on the edge...scored a job and aspirants who had marks equal to cutoff + 30-35...failed to score.... only 2/7 part of the process is visible for now....or even less considering CPT/DEST....so in few words, The race has just begun.
127 Marks 😐 Should I prepare for Tier2? 😐
50+26.5+50+42.5=169 🤘🤘pickle rick!! 🤘🤘
173 through gods grace including 3 wrong answers given by ssc 17 august 2 nd shift , THERE WAS ONE QUESTION ASKED ABOUT , T(X,0) CUTTING LINE SEGMENT PASSING THROUGH , S (5,1) AND U (-1,-2) , I ANSWERED 2/1 ANSWER IS 1/2 SO IT CAN BE BOTH ANSWER ???
152
Passage of electric current through electrolyte is -
0 voters
Logic kya h iska
Is the answer correct, puys?
Answer key link? I cam just see the notice..plz put thw libk here
19th august 1.15pm to 2.15pm marks kitna aa raha he?
Here is the code for checking ur score with the following steps:
1. right click- inspect element (select)
2. click on the option 'console'
3. try pasting the code after the sign >> at the bottom of the screen (source credit @narottamvats )
var cnt1 = 0, cnt2 = 0; var cnt3 = 0; var score = 0; for(var i=0;i<100;i++){ var x = 3+i*5; var correct = $("body > .section1_content > tbody > tr:nth-child("+(x)+") > td").innerHTML.trim().replace("Correct",""); var candidate = $("body > .section1_content > tbody > tr:nth-child("+(x+1)+") > td").innerHTML.trim().replace("Candidate",""); var skipped = 'ANSWERED '; if(correct.localeCompare(candidate)==0){ console.log(" Correct:"+ (i+1)); cnt1++; score += 2; }else{ if(candidate.includes(skipped)){ console.log(" Skipped:" + (i+1)); cnt3++; } else{ console.log( " Incorrect:" + (i+1)); cnt2++; score -= .5; } } } console.log("Correct:" + cnt1); console.log("InCorrect:" + cnt2); console.log("Skipped :"+ cnt3); console.log("Score is "+ score); alert("Correct:" + cnt1+"\nInCorrect:" + cnt2+"\nYour Score is :"+score);
4. press enter
to know score press f12 then go to console and paste this and enter:
var cnt1 = 0, cnt2 = 0; var cnt3 = 0; var score = 0; for(var i=0;i<100;i++){ var x = 3+i*5; var correct = $("body > .section1_content > tbody > tr:nth-child("+(x)+") > td").innerHTML.trim().replace("Correct",""); var candidate = $("body > .section1_content > tbody > tr:nth-child("+(x+1)+") > td").innerHTML.trim().replace("Candidate",""); var skipped = 'ANSWERED '; if(correct.localeCompare(candidate)==0){ console.log(" Correct:"+ (i+1)); cnt1++; score += 2; }else{ if(candidate.includes(skipped)){ console.log(" Skipped:" + (i+1)); cnt3++; } else{ console.log( " Incorrect:" + (i+1)); cnt2++; score -= .5; } } } console.log("Correct:" + cnt1); console.log("InCorrect:" + cnt2); console.log("Skipped :"+ cnt3); console.log("Score is "+ score); alert("Correct:" + cnt1+"\nInCorrect:" + cnt2+"\nYour Score is :"+score);