The Service Selection Board (SSB) is an organization responsible for selecting candidates for officer positions in the armed forces of India. It plays a crucial role in evaluating and assessing potential candidates' suitability for a career as an officer in the Indian Army, Navy, or Air Force. The selection process conducted by the SSB is rigorous and comprehensive, designed to assess various attributes such as intelligence, personality, leadership potential, and compatibility with the military way of life.
+
+
The SSB process typically consists of a series of tests and interviews conducted over several days, during which candidates are evaluated on various parameters including:
+
+
Officer Intelligence Rating (OIR) Tests: These tests assess a candidate's logical reasoning, verbal and non-verbal intelligence.
+
+
Psychological Tests: Psychological tests are conducted to gauge the candidate's personality traits, attitude, and psychological suitability for an officer role.
+
+
Group Testing Officer (GTO) Tasks: These tasks include group discussions, group planning exercises, outdoor group tasks, and individual obstacles to assess the candidate's leadership qualities, teamwork, and problem-solving abilities.
+
+
Personal Interview: Candidates undergo a one-on-one interview with an interviewing officer, during which they are assessed on various aspects such as motivation, communication skills, and general awareness.
+
+
Conference: A final conference is held by the SSB board members to discuss and evaluate each candidate's performance throughout the selection process.
+
+
The SSB aims to select individuals who not only possess the necessary skills and qualifications but also exhibit the leadership qualities and character traits required to serve as officers in the Indian Armed Forces. Successful candidates who pass the SSB interview undergo further medical examinations and background checks before being recommended for commissioning as officers.
+
Meet the Archons, the driving force behind PsychoDrill. Comprising four dedicated members currently pursuing their B.Tech in Computer Science and Engineering from Lucknow University, the Archons bring a diverse range of skills and expertise to our platform. United by a shared passion for supporting aspiring candidates in clearing Service Selection Board (SSB) interviews, each member of our team plays a crucial role in shaping the vision and mission of PsychoDrill.
+
+
1. Alia Haider:
With a keen interest in technology and a flair for innovation, Alia leads our development efforts, ensuring that PsychoDrill remains at the forefront of educational technology.
+
+
2. Mayank Gupta:
Mayank is our resident expert in psychological testing methodologies. His insights and expertise are invaluable in designing effective preparation resources for SSB interviews.
+
+
3. Ashmita:
Ashmita is the creative mind behind our platform's user experience. Their eye for design and user interface optimization enhances the accessibility and engagement of PsychoDrill for all users.
+
+
4. Ayush Raman:
Ayush wears multiple hats within our team. Apart from overseeing community engagement and support, he also contributes significantly to our development efforts. His versatility and dedication ensure that PsychoDrill continues to evolve and improve, meeting the needs of our users with excellence.
+
+
Together, the Archons are dedicated to realizing the vision of PsychoDrill and empowering students to excel in SSB interviews. With their collective expertise and unwavering determination, they form the backbone of our platform, driving innovation and excellence every step of the way.
+
+
+ Welcome to the Self-Description Section. In this part of the assessment, you will have 15 minutes to compose five paragraphs, each addressing different perspectives regarding yourself.
+
Task Overview:
+ You are required to write about:
+ a- What your parents think of you.
+ b- What your teacher/employer thinks of you.
+ c- What your friends and colleagues think of you.
+ d- Your own perception of yourself.
+ e- The type of person you aspire to become or the improvements you wish to make.
+
Guidelines:
+ -Your descriptions should be realistic and genuine, reflecting your actual qualities.
+ -Avoid overly praising yourself without a basis, as it may appear insincere.
+ -Strive to project your positive qualities while acknowledging areas for improvement.
+ -Ensure coherence and clarity in your writing.
+
Example:
+ Parents: "My parents perceive me as a talented individual with diverse skills. They encourage me to excel not only in academics but also in extracurricular activities. They rely on my dependability and trust me to handle tasks effectively."
+
Note:
+ Use the given time effectively to provide thoughtful responses.
+ Be honest and introspective in your self-description.
+
Best of luck with your writing!
+ Please begin when ready.
+
+
+
+
+
\ No newline at end of file
diff --git a/srt.jpg b/srt.jpg
new file mode 100644
index 0000000..bfc9968
Binary files /dev/null and b/srt.jpg differ
diff --git a/srt.js b/srt.js
new file mode 100644
index 0000000..ce3a07c
--- /dev/null
+++ b/srt.js
@@ -0,0 +1,77 @@
+let qu=[" He and his brother have gone to a forest; they lose their way and it is becoming dark., start running in the direction of his village "," While going to attend an important meeting, he saw a ghastly accident between an auto rickshaw and a tonga."," He and his friend are standing on a bridge over a river. His friend who does not know swimming, suddenly falls down"]
+const questionbox=document.querySelector("#quesboxb");
+console.log(questionbox);
+
+previous=document.querySelector("#prev");
+next=document.querySelector("#next");
+console.log(previous);
+console.log(next);
+
+let i=0
+
+previous.addEventListener("click",()=>{
+ i=i-1;
+ questionbox.textContent=qu[i];
+ if (i<0) {
+ questionbox.textContent="no previous question";
+
+ }
+})
+
+next.addEventListener("click",()=>{
+ i=i+1;
+ questionbox.textContent=qu[i];
+ if (i>(qu.length)-1) {
+ questionbox.textContent="no noext questions";
+ }
+})
+let timeInSeconds = 3240;
+let timerElement = document.getElementById('timertwo');
+
+
+function displayTime() {
+ let minutes = Math.floor(timeInSeconds / 60);
+ let seconds = timeInSeconds % 60;
+
+
+ minutes = minutes < 10 ? '0' + minutes : minutes;
+ seconds = seconds < 10 ? '0' + seconds : seconds;
+
+
+ timerElement.textContent = minutes + ':' + seconds;
+}
+
+
+function startTimer() {
+ displayTime();
+ let timer = setInterval(function() {
+ timeInSeconds--;
+ displayTime();
+
+
+ if (timeInSeconds === 0) {
+ clearInterval(timer);
+ timerElement.textContent = 'Time\'s up!';
+ }
+ }, 1000);
+}
+
+
+startTimer();
+
+let answers=[]
+
+function saveText() {
+ var text = document.getElementById("ans").value;
+ console.log("Text saved:", text);
+
+}
+
+let submit=document.querySelector("#submit");
+submit.addEventListener("click",()=>{
+ var text = document.getElementById("ans").value;
+ answers.push(text);
+ console.log("Text saved:", text);
+
+})
+
diff --git a/srtimgnew - Copy.jpg b/srtimgnew - Copy.jpg
new file mode 100644
index 0000000..e4467df
Binary files /dev/null and b/srtimgnew - Copy.jpg differ
diff --git a/srtimgnew.jpg b/srtimgnew.jpg
new file mode 100644
index 0000000..e4467df
Binary files /dev/null and b/srtimgnew.jpg differ
diff --git a/srtinstructionpage.css b/srtinstructionpage.css
new file mode 100644
index 0000000..238443f
--- /dev/null
+++ b/srtinstructionpage.css
@@ -0,0 +1,121 @@
+body{
+ margin: 0cap;
+}
+#rec13{
+ /* POSITION ABSOLURTE KARKE NAV KO UPAR NICHE KAR LENA BAKI JIJE CHANGE NHI HOGI */
+ /* position: absolute; */
+ background-color: #F0F6F3;
+ height: 60px;
+ /* width: 1105px; */
+ top: 49px;
+ left: 350px;
+ gap: 0px;
+ opacity: 0px;
+ display:flex;
+ flex-direction: row;
+ align-items: center;
+}
+#back{
+ background-color: #F0F6F3;
+ border: 0cm;
+ height: 50px;
+ margin-left: 20px;
+}
+#textname{
+ font-size: x-large;
+ padding-left: 50px;
+}
+#instructionbox{
+ position: absolute;
+ display: flex;
+ flex-direction:column;
+ align-items: center;
+ justify-content: center;
+ width: 1096px;
+ height: 780px;
+ top: 110px;
+ left: 220px;
+ gap: 0px;
+ opacity: 0px;
+ background: #F0F6F3;
+ box-shadow: 0px 4px 4px 0px #00000040;
+
+}
+#instructions{
+ width: 949px;
+ height: 697px;
+ top: 266px;
+ left: 248px;
+ gap: 0px;
+ opacity: 0px;
+ font-family: Fenix;
+ font-size: 23px;
+ font-weight: 400;
+ line-height: 25.69px;
+ text-align: left;
+
+
+}
+#insone{
+ width: 191px;
+ height: 31px;
+ top: 174px;
+ left: 634px;
+ gap: 0px;
+ opacity: 0px;
+ font-family: Fenix;
+ font-size: 28px;
+ font-weight: 400;
+ line-height: 31.28px;
+ text-align: left;
+ box-shadow: 0px 4px 4px 0px #00000040;
+}
+#textname{
+ font-family: Calibri;
+ font-size: 25px;
+ font-weight: 700;
+ line-height: 30.52px;
+ text-align: left;
+}
+#startbut{
+ position:absolute;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 135.39px;
+ height: 50.63px;
+ top: 819px;
+ left: 1103px;
+ gap: 0px;
+ opacity: 0px;
+ border: 1.5px 0px 0px 0px;
+ border-radius: 15%;
+ background-color: #F0F6F3;
+ border: 1.5px solid #0E371B;
+ box-shadow: 0px 2.0930233001708984px 2.0930233001708984px 0px #00000040;
+}
+#start{
+ width: 56px;
+ height: 23px;
+ top: 22.5px;
+ left: 62.25px;
+ gap: 0px;
+ opacity: 0px;
+ font-family: Calibri;
+ font-size: 18.75px;
+ font-weight: 700;
+ line-height: 22.89px;
+ text-align: left;
+ color: #528C6E;
+}
+#useless{
+ position:absolute;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ width: 135.39px;
+ height: 50.63px;
+ top: 100px;
+ left: 3px;
+ visibility: hidden;
+}
\ No newline at end of file
diff --git a/srtinstructionpage.html b/srtinstructionpage.html
new file mode 100644
index 0000000..1a8c0ed
--- /dev/null
+++ b/srtinstructionpage.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+ srtinstructionpage
+
+
+
+
+
+
+
+
Situation Reaction Test (SRT)
+
+
+
Test Instructions
+
+ Welcome to the Situation Reaction Test. This test aims to evaluate your common sense, reasoning ability, and maturity through your responses to various situations.
+ Test Overview:
+ You will be presented with 60 different situations.
+ Your task is to respond to each situation in writing within a total of 30 minutes.
+ This test does not require any specialized intelligence or knowledge; it focuses on assessing your natural responses.
+
Conducting the Test:
+ Situations will be provided in a booklet in SSB interview, in our platform one situation displayed at a time and you can access previous and next situation easily.
+ As the time is limited, your immediate, unfiltered responses will reveal your true personality.
+ Practicing is key to performing well in this test.
+
Tips for Responding:
+ Avoid contradicting your earlier responses if a similar situation is repeated.
+ Instead of just stating your reactions, provide a concise description of the full action.
+
Example:
+ Situation: Just before the starting of a doubles match, he found his partner missing.
+ Reaction: He took the substitute player.
+ Complete Action: He took the substitute player, played the match, and won it.
+
Best of luck with your test!
+ Please proceed when ready.
+
His exams are starting next week and he is not fully prepared. His father's fast friend suddenly comes to the house and there is no one else to look after him
Picture Presentation:
+ -12 pictures will be displayed sequentially for 30 seconds each.
+ -Write a short story based on each picture within 4 minutes (approx. 100 words).
+ -Final Picture:
+ -The last slide is a blank canvas; create any story you wish.
+
Guidelines:
+ -Personal Projection:
+ -Portray yourself as the main character, reflecting your behavior and reactions.
+ -Interpretation:
+ -Interpret pictures creatively, emphasizing personal perspectives and emotions.
+
Notes:
+ -Your stories should reflect how you would behave in the depicted situations.
+ -Samples provided illustrate desired traits projected through the stories.
+ -Please attempt the test on your own, without external assistance or resources.
+
+
+ Notification released
+ Availability of online application
+ Last date to apply
+ Correction in OTR details
+ Withdraw of application
+ NDA 2024 exam date
+ Announcement of result
+ Interview
+
+
+
+
+
NDA I
+
+ 20th December 2023
+ 20th December 2023
+ 9th January 2024
+ 10th - 16th January 2024
+ 4th week of March 2024
+ 21st April 2024
+ 1st week of May 2024
+ May/June 2024
+
+
+
+
+
NDA II
+
+ 15th May 2024
+ 15th May 2024
+ 4th June 2024
+ 2nd week of June 2024
+ June/July 2024
+ Last week of August 2024
+ 1st September 2024
+ September 2024
+ September/October 2024
+
Welcome to the Word Association Test. Please carefully review the following guidelines:
+ Test Overview:
+ You will be presented with a series of 60 words, one after the other.
+ Each word will be displayed for 15 seconds.
+ Your task is to construct a short sentence using the given word. The usage can be in any form (e.g., agreeable, agreed, agreement).
+ Aim to attempt at least 45 out of the 60 words.
+ Sentence Construction:
+ Be creative and original in your sentence construction.
+ Avoid using idioms, phrases lacking originality, or preachy statements.
+ Refrain from using the first-person pronoun 'I' excessively, as it may reflect selfishness.
+ Negative sentences should be avoided.
+ Minimize references to celebrities or known figures.
+ Preferred Sentence Types:
+ Craft sentences that reflect your beliefs and values.
+ Include factual sentences based on recent events or occurrences, showcasing your awareness.
+ Emphasize positive statements that resonate with your personal perspective.
+ Practice:
+ Practice constructing sentences within the given time constraint to enhance your performance.
+ Final Note:
+ Due to the time constraint, your natural responses will be evident. Hence, practice is essential for optimal performance.
+ Best of luck with your test!
+