Skip to main content

Posts

Showing posts from March, 2012

Rohypnol (roofies, 'date-rape' drug)

Rohypnol (roofies, 'date-rape' drug)   What is Rohypnol? Rohypnol is an intermediate-acting benzodiazepine with general properties similar to those of Valium (diazepam). It is used in the short-term treatment of insomnia, as a pre-medication in surgical procedures and for inducing anaesthesia. Like other benzodiazepines (such as Valium, Librium and Xanax), Rohypnol's effects include sedation, muscle relaxation, reduction in anxiety, and prevention of convulsions. However, Rohypnol's sedative effects are approximately 7 to 10 times stronger than Valium. The effects of Rohypnol appear 15 to 20 minutes after administration and last approximately four to six hours. Some residual effects can be found 12 hours or more after administration. Since the 1990s Rohypnol has been used illegally to lessen the depression caused by the abuse of stimulants, such as cocaine and methamphetamine, and also as an aid for sexual assault. The so-called “da

Informatics practice IP Sample question paper 2012 (no SQL)

Section – A Q.1 . Find the output of the following:- (a). class MAIN{ void calculate( int a, int b) {  show( a+b); System.out.print(“Calculating”)   } public MAIN( int x, int y) {calculate( x,y); System.out.print(“ In Initialize “ + x+” & “ +y +”Place”); } void show( int x) {System.out.print(I am Printing: ” + x);} Public static void main(String args[]) {MAIN ob=new Mani(10,-90); } } (b). i. private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) { display(11, 19 ); } void display(int i, int j ){ System.out.println(i>>j); System.out.println(i<<j); } ii. private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) { manipulate(11 ); } void manipulate(int i){ int n=i*5; System.out.println(“i= ” + i%i++ ); i%=--n+1; System.out.println(“n= ” + n ); } Q2 . Find Errors and Rewrite correct code the following program code:- (a) .public class MAINPRO { int a,b; public void MAINPRO(int x, in