Posts

SSB PP&DT PART 2

Image
Manoj is an NCC Cadet, he went out for a movie with his friends during the liberty granted to him, after coming out of the theatre while he was about to sit in his car ,he heard someone a lady shouting thief thief running, he saw the thief running by passing his car, he along with his friend chased the thief through a distance but the thief could not make it long and finally got over him handed him to the police and returned the baggage to the   lady, and told the lady to be careful next time , he and his friends was praised by his training officer. Raju is a student. During his post graduation he visited the village near to his city. He found that people were illiterate in great number. He decided to educate them by imparting basic teaching. He met village people , and addressed the village gathering. He gave the people the importance of education. People agreed and showed their desire for learning. He started from the basics of literacy, i.e. reading and wr

SSB PP&DT

Image
PPDT FOR SSB 1 . Answer •      kishore is a school boy of class 16,he was on his way to school when he saw a car is moving on a   road very fastly got collided with rickshawala which was coming from front , the car instead of stopping tried to escape from the accident area, kishore immediately noted down the car number   called for ambulance and gave the number to nearby police station , with the information given by kishore police track down the driver and kishore was awarded and praised for his work. 2.Answer •      Vijay lives in a small village in Andhra pradesh,he along with his friends decided to go the riverside of their nearby village, it was morning time and all of them were enjoying, run then saw dead fishes lying along the bank of river, he went near the river and jumped into it, what he saw was unbelievable for him, the river water which is going to his village, which they are using for every purpose is being

PYTHON EMAIL SENT WITH ATTACHMENT THROUGH COMMAND LINE

import smtplib from email.mime.text import MIMEText from email.mime.multipart import MIMEMultipart from email.mime.base import MIMEBase from email import encoders email_user = 'your_email' email_password = 'your_password' email_send = 'recipient_email' subject = 'subject' msg = MIMEMultipart() msg['From'] = email_user msg['To'] = email_send msg['Subject'] = subject body = 'Hi Python' msg.attach(MIMEText(body,'plain')) filename='filename' attachment  =open(filename,' ') part = MIMEBase('application','octet-stream') part.set_payload((attachment).read()) encoders.encode_base64(part) part.add_header('Content-Disposition',"attachment; filename= "+filename) msg.attach(part) text = msg.as_string() server = smtplib.SMTP('smtp.gmail.com',587) server.starttls() server.login(email_user,email_password) server.sendmail(email_user,email

PYTHON SNAKE PROGRAM

import random import curses s = curses.initscr() curses.curs_set(0) sh, sw = s.getmaxyx() w = curses.newwin(sh, sw, 0, 0) w.keypad(1) w.timeout(100) snk_x = sw/4 snk_y = sh/2 snake = [     [snk_y, snk_x],     [snk_y, snk_x-1],     [snk_y, snk_x-2] ] food = [sh/2, sw/2] w.addch(food[0], food[1], curses.ACS_PI) key = curses.KEY_RIGHT while True:     next_key = w.getch()     key = key if next_key == -1 else next_key     if snake[0][0] in [0, sh] or snake[0][1]  in [0, sw] or snake[0] in snake[1:]:         curses.endwin()         quit()     new_head = [snake[0][0], snake[0][1]]     if key == curses.KEY_DOWN:         new_head[0] += 1     if key == curses.KEY_UP:         new_head[0] -= 1     if key == curses.KEY_LEFT:         new_head[1] -= 1     if key == curses.KEY_RIGHT:         new_head[1] += 1     snake.insert(0, new_head)     if snake[0] == food:         food = None         while food is None:             nf = [                 random.ra

FOR SSB TAT STORIES

FOLLOW THIS LINK AND DOWNLOAD FREE AND PRACTICE TAT STORIES ENJOY!!!!!! https://docs.google.com/file/d/0B4PpZ68CNqh7bUdkRVhVV2lsTjA/view

SSB INTER VIEW BODY TECHNIQUES

1)Body posture A good posture goes a long way in making a perception about someone’s lifestyle and confidence. We must try to make our body as straight as possible as it is the very important. Look straight in the eyes while talking, that shows that you have a good stamina and a brave person. If your body posture is not correct and you are not making an eye contact, the other person will think that you are not wiling to talk or you are showing lack of interest. We must maintain the body posture like a soldier. Don’t make a stiff body posture which can again mislead the people about you, have a relaxed yet straight posture when you are talking to someone. 2) Have a smiling face- When you are at SSB, be cheerful and enthusiastic. If you try to fake a smile, the assessor will know because of your eye movements. So, tell only the truth and keep smiling as the smile will comfort everyone with you. Also, a smile is an indication that you remain cool in tough situations. You might as

AFCAT APTITUDE

FOLLOW THIS LINK : https://www.pdfdrive.net/rsagarwal-aptitude-test-book-jdrryolasitecom-e15624338.html