You are on page 1of 35

1. What is the name of the method used to start a thread execution? A. init(); B. start(); C. run(); D.

resume(); Answer: B

2. Which two are valid constructors for hread? 1. hread(!unna"le r# $trin% name) 2. hread() &. hread(int 'riorit() ). hread(!unna"le r# hread*rou' %) +. hread(!unna"le r# int 'riorit() A. 1 and & B. 2 and ) C. 1 and 2 D. 2 and + Answer: C

&. Which three are methods of the ,"-ect class? 1. notif((); 2. notif(All(); &. is.nterru'ted(); ). s(nchroni/ed(); +. interru't();

0. wait(lon% msecs); 1. slee'(lon% msecs); 2. (ield(); A. 1# 2# ) B. 2# )# + C. 1# 2# 0 D. 2# &# ) Answer: C

). 4

class 3 im'lements !unna"le

'u"lic static void main($trin% ar%s56) 4 78 9issin% code? 87 : 'u"lic void run() 4: : Which of the followin% line of code is suita"le to start a thread ? A. hread t ; new hread(3); B. hread t ; new hread(3); t.start(); C. 3 run ; new 3(); hread t ; new hread(run); t.start(); D. hread t ; new hread(); x.run(); Answer< C

+. Which cannot directl( cause a thread to sto' executin%?

A. Callin% the $et=riorit(() method on a hread o"-ect. B. Callin% the wait() method on an o"-ect. C. Callin% notif(() method on an o"-ect. D. Callin% read() method on an .n'ut$tream o"-ect. Answer: C

0.

void start() 4 A a ; new A(); B " ; new B(); a.s("); " ; null; 78 >ine + 87 a ; null; 78 >ine 0 87 $(stem.out.'rintln(?start com'leted?); 78 >ine 1 87

: When is the B o"-ect# created in line &# eli%i"le for %ar"a%e collection? A. after line + B. after line 0 C. after line 1 D. here is no wa( to "e a"solutel( certain. Answer: D

1. class @a''(*ar"a%eA1 4 'u"lic static void main($trin% ar%s56) 4

@a''(*ar"a%eA1 h ; new @a''(*ar"a%eA1(); h.methodA(); 78 >ine 0 87 : ,"-ect methodA() 4 ,"-ect o"-1 ; new ,"-ect(); ,"-ect 56 o"-2 ; new ,"-ect516; o"-25A6 ; o"-1; o"-1 ; null; return o"-25A6; : : Where will "e the most chance of the %ar"a%e collector "ein% invoBed? A. After line C B. After line 1A C. After line 11 D. *ar"a%e collector never invoBed in methodA() Answer< D

2.

class Bar 4 :

class est 4 Bar doBar() 4 Bar " ; new Bar(); 78 >ine 0 87

return "; 78 >ine 1 87 : 'u"lic static void main ($trin% ar%s56) 4 est t ; new est(); 78 >ine 11 87 Bar newBar ; t.doBar(); 78 >ine 12 87 $(stem.out.'rintln(?newBar?); newBar ; new Bar(); 78 >ine 1) 87 $(stem.out.'rintln(?finishin%?); 78 >ine 1+ 87 : : At what 'oint is the Bar o"-ect# created on line 0# eli%i"le for %ar"a%e collection? A. after line 12 B. after line 1) C. after line 1# when doBar() com'letes D. after line 1+# when main() com'letes Answer: B

C. 4

class est

'rivate Demo d; void start() 4 d ; new Demo(); this.taBeDemo(d); 78 >ine 1 87

: 78 >ine 2 87 void taBeDemo(Demo demo) 4 demo ; null; demo ; new Demo(); : : When is the Demo o"-ect eli%i"le for %ar"a%e collection? A. After line 1 B. After line 2 C. After the start() method com'letes D. When the instance runnin% this code is made eli%i"le for %ar"a%e collection. Answer: D

1A. 4

'u"lic class 3

'u"lic static void main($trin% 56 ar%s) 4 3 x ; new 3(); 3 x2 ; m1(x); 78 >ine 0 87 3 x) ; new 3(); x2 ; x); 78 >ine 2 87 doCom'lex$tuff(); : static 3 m1(3 mx)

4 mx ; new 3(); return mx; : : After line 2 runs. how man( o"-ects are eli%i"le for %ar"a%e collection? A. A B. 1 C. 2 D. & Answer: B

11. 4

'u"lic class est2

'u"lic static int x; 'u"lic static int foo(int () 4 return ( 8 2; : 'u"lic static void main($trin% 56 ar%s) 4 int / ; +; assert / D A; 78 >ine 11 87 assert / D 2< foo(/); 78 >ine 12 87 if ( / E 1 )

assert / D ); 78 >ine 1) 87

switch (/) 4 case )< $(stem.out.'rintln(?) ?); case +< $(stem.out.'rintln(?+ ?); default< assert / E 1A; :

if ( / E 1A ) assert / D )< /FF; 78 >ine 22 87 $(stem.out.'rintln(/); : : which line is an exam'le of an ina''ro'riate use of assertions? A. >ine 11 B. >ine 12 C. >ine 1) D. >ine 22 Answer: D

12. 4

'u"lic class est

'u"lic void foo() 4

assert false; 78 >ine + 87 assert false; 78 >ine 0 87 : 'u"lic void "ar() 4 while(true) 4 assert false; 78 >ine 12 87 : assert false; 78 >ine 1) 87 : : What causes com'ilation to fail? A. >ine + B. >ine 0 C. >ine 12 D. >ine 1) Answer: D

1&. What will "e the out'ut of the 'ro%ram?

'u"lic class est 4 'u"lic static void main($trin%56 ar%s) 4

final $trin%Buffer a ; new $trin%Buffer(); final $trin%Buffer " ; new $trin%Buffer();

new hread() 4 'u"lic void run() 4 $(stem.out.'rint(a.a''end(?A?)); s(nchroni/ed(") 4 $(stem.out.'rint(".a''end(?B?)); : : :.start();

new hread() 4 'u"lic void run() 4 $(stem.out.'rint(".a''end(?C?)); s(nchroni/ed(a) 4 $(stem.out.'rint(a.a''end(?D?)); : :

:.start(); : :

A. ACCBAD B. ABBCAD C. CDDACB D. .ndeterminate out'ut Answer: D

1). What will "e the out'ut of the 'ro%ram? $trin% s ; ?hello?; ,"-ect o ; s; if( o.eGuals(s) ) 4 $(stem.out.'rintln(?A?); : else 4 $(stem.out.'rintln(?B?); : if( s.eGuals(o) ) 4 $(stem.out.'rintln(?C?); :

else 4 $(stem.out.'rintln(?D?); : 1. A 2. B &. C ). D

A. 1 and & B. 2 and ) C. & and ) D. 1 and 2 Answer: A

1+. What will "e the out'ut of the 'ro%ram (in -dB1.0 or a"ove)? 'u"lic class Bool est 4 'u"lic static void main($trin% 56 ar%s) 4 Boolean "1 ; new Boolean(?false?); "oolean "2; "2 ; "1."ooleanHalue(); if (I"2) 4

"2 ; true; $(stem.out.'rint(?x ?); : if ("1 J "2) 78 >ine 1& 87 4 $(stem.out.'rint(?( ?); : $(stem.out.'rintln(?/?); : : A. / B. x / C. ( / D. Com'ilation fails. Answer: B

10.

he Kifndef directive tests to see whether LLLLLLLL

A. a class has "een defined B. a varia"le has "een %iven a value C. a class has no varia"le definitions D. an( o"-ects of the class have "een instantiated

11. Which of the followin% statements is false? A. A function is a "locB of code that 'erforms a s'ecific tasB

B. Munctions allow 'ro%rammers to "reaB lar%e and com'lex 'ro"lems into small and mana%ea"le tasBs C. Munctions allow 'ro%rammers to use existin% code to 'erform common tasBs D. Munctions can "e called# or invoBed# onl( once in a 'ro%ram N. =ro%rammerOdefined functions can "e either valueOreturnin% or void

12.

he %eneric t('e in a tem'late function

A. must "e B. can "e C. cannot "e D. cannot "e for functions (ou create# "ut ma( "e for CFFPs "uiltOin functions

1C. When a child class function is called# the com'iler looBs first for a matchin% function name in the LLLLL A. class of the o"-ect usin% the function name B. immediate ancestor class C. "ase class D. descendant class

2A. A function that is called automaticall( each time an o"-ect is destro(ed is a A. constructor B. destructor C. destro(er D. terminator

21. .f no constructors can s'ecified for a derived class# o"-ects of the derived class will use the constructors in the "ase class A. rue B. Malse

22.

he %et() function returns LLLLL

A. a character B. void C. a reference to the o"-ect that invoBed it D. a co'( of the o"-ect that invoBed it

2&. he most efficient data t('e for a varia"le that the num"er 2AAAA is the LLLLL data t('e A. Character B. Dou"le C. Mloat D. >on% .nte%er N. $hort .nte%er

2).

he num"er +.+e& is a LLLLL constant

A. character literal B. named literal C. numeric literal D. strin% literal

2+.

he com'iler determines the t('e used in a tem'late function via LLLLLLLLLLL

A. the name of the function B. the first varia"le declared within the function C. the t('e of the ar%ument 'assed to the function D. the t('e of the value returned from the function

20. What will "e the out'ut of the 'ro%ram? 'u"lic class CommandAr%s hree 4 'u"lic static void main($trin% 56 ar%s) 4 $trin% 5656 ar%Co'( ; new $trin%526526; int x; ar%Co'(5A6 ; ar%s; x ; ar%Co'(5A6.len%th; for (int ( ; A; ( E x; (FF) 4 $(stem.out.'rint(? ? F ar%Co'(5A65(6); : : : and the commandOline invocation is D -ava CommandAr%s hree 1 2 &

A. A A B. 1 2

C. A A A D. 1 2 & Answer: D

21. What will "e the out'ut of the 'ro%ram? 'u"lic class CommandAr%s 4 'u"lic static void main($trin% 56 ar%s) 4 $trin% s1 ; ar%s516; $trin% s2 ; ar%s526; $trin% s& ; ar%s5&6; $trin% s) ; ar%s5)6; $(stem.out.'rint(? ar%s526 ; ? F s2); : : and the commandOline invocation is D -ava CommandAr%s 1 2 & )

A. ar%s526 ; 2 B. ar%s526 ; & C. ar%s526 ; null D. An exce'tion is thrown at runtime. Answer: D

22. 4

'u"lic class MAAC1

'u"lic void main( $trin%56 ar%s ) 4 $(stem.out.'rintln( ?@ello? F ar%s5A6 ); : : What will "e the out'ut of the 'ro%ram# if this code is executed with the command line< D -ava MAAC1 world

A. @ello B. @ello MooC1 C. @ello world D. he code does not run. Answer: D

2C. What will "e the out'ut of the 'ro%ram? 'u"lic class estDo%s 4 'u"lic static void main($trin% 56 ar%s) 4 Do% 5 65 6 theDo%s ; new Do%5&65 6; $(stem.out.'rintln(theDo%s5265A6.to$trin%()); : :

class Do% 4 :

A. null B. the Do%s C. Com'ilation fails D. An exce'tion is thrown at runtime Answer: D

&A. What will "e the out'ut of the 'ro%ram ? 'u"lic class est 4 'u"lic static void main($trin% 56 ar%s) 4 si%ned int x ; 1A; for (int (;A; (E+; (FF# xOO) $(stem.out.'rint(x F ?# ?); : : A. 1A# C# 2# 1# 0# B. C# 2# 1# 0# +# C. Com'ilation fails. D. An exce'tion is thrown at runtime Answer: C

&1. What will "e the out'ut of the 'ro%ram?

'u"lic class est 4 'u"lic static void main ($trin%56 ar%s) 4 $trin% foo ; ar%s516; $trin% "ar ; ar%s526; $trin% "a/ ; ar%s5&6; $(stem.out.'rintln(?"a/ ; ? F "a/); 78 >ine 2 87 : : And the command line invocation< D -ava est red %reen "lue A. "a/ ; B. "a/ ; null C. "a/ ; "lue D. !untime Nxce'tion Answer: D

&2. What will "e the out'ut of the 'ro%ram? 'u"lic class est 4 'u"lic static void main ($trin% ar%s56) 4 $trin% str ; QR>>; $(stem.out.'rintln(str);

: :

A. QR>> B. Com'ile Nrror C. Code runs "ut no out'ut D. !untime Nxce'tion Answer: B

&&. What will "e the out'ut of the 'ro%ram? 'acBa%e foo; im'ort -ava.util.Hector; 78 >ine 2 87 'rivate class 9(Hector extends Hector 4 int i ; 1; 78 >ine + 87 'u"lic 9(Hector() 4 i ; 2; : : 'u"lic class 9(QewHector extends 9(Hector 4 'u"lic 9(QewHector () 4 i ; ); 78 >ine 1+ 87

: 'u"lic static void main ($trin% ar%s 56) 4 9(Hector v ; new 9(QewHector(); 78 >ine 1C 87 : :

A. Com'ilation will succeed. B. Com'ilation will fail at line &. C. Com'ilation will fail at line +. D. Com'ilation will fail at line 1+. Answer: B

&). What will "e the out'ut of the 'ro%ram? 'u"lic class est 4 'rivate static int5 6 x; 'u"lic static void main($trin%5 6 ar%s) 4 $(stem.out.'rintln(x5A6); : :

A. A B. null

C. Com'ile Nrror D. Qull=ointNxce'tion at runtime Answer: D

&+. What will "e the out'ut of the 'ro%ram? im'ort -ava.util.8; class . 4 'u"lic static void main ($trin%56 ar%s) 4 ,"-ect i ; new Arra(>ist().iterator(); $(stem.out.'rint((i instanceof >ist)F?#?); $(stem.out.'rint((i instanceof .terator)F?#?); $(stem.out.'rint(i instanceof >ist.terator); : :

A. =rints< false# false# false B. =rints< false# false# true C. =rints< false# true# false D. =rints< false# true# true Answer: C

&0. What is the value of ?d? after this line of code has "een executed? dou"le d ; 9ath.round ( 2.+ F 9ath.random( ));

A. 2 B. & C. ) D. 2.+ Answer: B

&1. Which of the followin% would com'ile without error? A. int a ; 9ath.a"s(O+); B. int " ; 9ath.a"s(+.A); C. int c ; 9ath.a"s(+.+M); D. int d ; 9ath.a"s(+>); Answer: A

&2. Which of the followin% are valid calls to 9ath.max? 1. 9ath.max(1#)) 2. 9ath.max(2.&# +) &. 9ath.max(1# &# +# 1) ). 9ath.max(O1.+# O2.2f) A. 1# 2 and ) B. 2# & and ) C. 1# 2 and & D. 2# & and ) Answer: A

&C. 4

'u"lic class 9(file

'u"lic static void main ($trin%56 ar%s) 4 $trin% "i/ ; ar%s516; $trin% "a/ ; ar%s526; $trin% ri' ; ar%s5&6; $(stem.out.'rintln(?Ar% is ? F ri'); : : $elect how (ou would start the 'ro%ram to cause it to 'rint< Ar% is 2 A. -ava 9(file 222 B. -ava 9(file 1 2 2 & ) C. -ava 9(file 1 & 2 2 D.-ava 9(file A 1 2 &

)A.

void start() 4

A a ; new A(); B " ; new B(); a.s("); " ; null; 78 >ine + 87 a ; null; 78 >ine 0 87 $(stem.out.'rintln(?start com'leted?); 78 >ine 1 87 : When is the B o"-ect# created in line &# eli%i"le for %ar"a%e collection?

A. after line + B. after line 0 C. after line 1 D. here is no wa( to "e a"solutel( certain. Answer: D

)1. What will "e the out'ut of the 'ro%ram? class =assA 4 'u"lic static void main($trin% 56 ar%s) 4 =assA ' ; new =assA(); '.start(); :

void start() 4 lon% 56 a1 ; 4&#)#+:; lon% 56 a2 ; fix(a1); $(stem.out.'rint(a15A6 F a1516 F a1526 F ? ?); $(stem.out.'rintln(a25A6 F a2516 F a2526); : lon% 5 6 fix(lon% 5 6 a&) 4 a&516 ; 1;

return a&; : :

A. 12 1+ B. 1+ 1+ C. & ) + & 1 + D. & 1 + & 1 + Answer: B

)2. What will "e the out'ut of the 'ro%ram? class est 4 'u"lic static void main($trin% 56 ar%s) 4 est ' ; new est(); '.start(); :

void start() 4 "oolean "1 ; false; "oolean "2 ; fix("1); $(stem.out.'rintln("1 F ? ? F "2); :

"oolean fix("oolean "1) 4 "1 ; true; return "1; : :

A. true true B. false true C. true false D. false false Answer: B

)&. What will "e the out'ut of the 'ro%ram? class =ass$ 4 'u"lic static void main($trin% 56 ar%s) 4 =ass$ ' ; new =ass$(); '.start(); :

void start() 4

$trin% s1 ; ?sli'?; $trin% s2 ; fix(s1); $(stem.out.'rintln(s1 F ? ? F s2); :

$trin% fix($trin% s1) 4 s1 ; s1 F ?stream?; $(stem.out.'rint(s1 F ? ?); return ?stream?; : : A. sli' stream B. sli'stream stream C. stream sli' stream D. sli'stream sli' stream Answer: D

)). What will "e the out'ut of the 'ro%ram? class Bit$hift 4 'u"lic static void main($trin% 56 ar%s) 4 int x ; Ax2AAAAAAA; $(stem.out.'rint(x F ? and ?);

x ; x DDD &1; $(stem.out.'rintln(x); : : A. O21)1)2&0)2 and 1 B. Ax2AAAAAAA and AxAAAAAAA1 C. O21)1)2&0)2 and O1 D. 1 and O21)1)2&0)2

)+. What will "e the out'ut of the 'ro%ram? class NGuals 4 'u"lic static void main($trin% 56 ar%s) 4 int x ; 1AA; dou"le ( ; 1AA.1; "oolean " ; (x ; (); 78 >ine 1 87 $(stem.out.'rintln("); : : A. true B. false C. Com'ilation fails D. An exce'tion is thrown at runtime Answer: C

Describe Your Self What is DBMS What is RDBMS Primary Key, Foreign Key Tables in my minor pro ect an! as"e! me to !ra# it $%er%ie# of Ma or Pro ect &ormali'ation Definition (n! What is B)&F* +n!e,ing an! its types types -o# to !etermine the no of connections aborte! in S./* Program to print prime &os bet#een 0 to 12 What is operating system What is sche!uling What is %irtual memory Where %irtual memory is !efine! Then he as"e! if + ha! any 3uery

MR Round
Describe Your Self )onfiguration of Your P) S4R5+)4S of T)S What is +T Ser%ices* -o# !oes Win 6p #or"s +n TS) application in one place its #ritten both #hat !oes both means7*8888

Then Finally HR Round


Describe yourself (re You ner%ous* +f You are an -R #hat all 3uestions You #ill as" Recent ne#s Why T)S

Why only T)S Then about Bon! an! /ocation an! Finally got selecte! in T)S*

The sites mentioned here, well most of them, solve at least one problem really well and they all have simple web addresses (URLs) that you can easily learn by heart thus saving you a trip to Google. !. screenr.com " record movies of your des#top and send them straight to $ouTube. %. bounceapp.com " for capturing full length screenshots of web pages. &. goo.gl " shorten long URLs and convert URLs into 'R codes. (. untiny.me " find the original URLs that)s hiding behind a short URLs. *. +,loc# " find the local time of a city using a Google -ap. .. copypastecharacter.com " copy special characters that aren)t on your #eyboard. /. postpost.com " a better search engine for twitter. 0. lovelycharts.com " create flowcharts, networ# diagrams, sitemaps, etc. 1. iconfinder.com " the best place to find icons of all si2es. ! . office.com " download templates, clipart and images for your 3ffice documents. !!. followupthen.com " the easiest way to setup email reminders. !%. 4otti.org " scan any suspicious file or email attachment for viruses. !&. wolframalpha.com " gets answers directly without searching " see more wolfram tips. !(. printwhatyouli#e.com " print web pages without the clutter. !*. 4oliprint.com " reformats news articles and blog content as a newspaper. !.. ctr+l.org " a search engine for R55 feeds. !/. e.ggtimer.com " a simple online timer for your daily needs. !0. coralcdn.org " if a site is down due to heavy traffic, try accessing it through coral ,67. !1. random.org " pic# random numbers, flip coins, and more. % . pdfescape.com " lets you can +uic#ly edit 869s in the browser itself. %!. viewer.2oho.com " 8review 869s and 8resentations directly in the browser. %%. tubemogul.com " simultaneously upload videos to $ouTube and other video sites.

%&. dabbleboard.com " your virtual whiteboard. %(. scr.im " share you email address online without worrying about spam. %*. spypig.com " now get read receipts for your email. %.. si2easy.com " visuali2e and compare the si2e of any product. %/. myfonts.com:;hatThe9ont " +uic#ly determine the font name from an image. %0. google.com:webfonts " a good collection of open source fonts. %1. rege<.info " find data hidden in your photographs " see more =>?9 tools. & . livestream.com " broadcast events live over the web, including your des#top screen. &!. iwantmyname.com " helps you search domains across all TL6s. &%. homestyler.com " design from scratch or re@model your home in &d. &&. 4oin.me " share you screen with anyone over the web. &(. onlineocr.net " recogni2e te<t from scanned 869s " see other 3,R tools. &*. flightstats.com " Trac# flight status at airports worldwide. &.. wetransfer.com " for sharing really big files online. &/. pastebin.com " a temporary online clipboard for your te<t and code snippets. &0. polishmywriting.com " chec# your writing for spelling or grammatical errors. &1. mar#er.to " easily highlight the important parts of a web page for sharing. ( . typewith.me " wor# on the same document with multiple people. (!. whichdatewor#s.com " planning an eventA find a date that wor#s for all. (%. everytime2one.com " a less confusing view of the world time 2ones. (&. gtmetri<.com " the perfect tool for measuring your site performance online. ((. noteflight.com " print music sheets, write your own music online (review). (*. imo.im " chat with your buddies on 5#ype, 9aceboo#, Google Tal#, etc. from one place. (.. translate.google.com " translate web pages, 869s and 3ffice documents. (/. #le#i.com " create paintings and s#etches with a wide variety of brushes. (0. similarsites.com " discover new sites that are similar to what you li#e already. (1. wordle.net " +uic# summari2e long pieces of te<t with tag clouds. * . bubbl.us " create mind@maps, brainstorm ideas in the browser. *!. #uler.adobe.com " get color ideas, also e<tract colors from photographs. *%. liveshare.com " share your photos in an album instantly. *&. lmgtfy.com " when your friends are too la2y to use Google on their own. *(. midomi.com " when you need to find the name of a song. **. bing.com:images " automatically find perfectly@si2ed wallpapers for mobiles. *.. fa<2ero.com " send an online fa< for free " see more fa< services. */. feedmyinbo<.com " get R55 feeds as an email newsletter. *0. ge.tt " +uic#ly send a file to someone, they can even preview it before downloading. *1. pipebytes.com " transfer files of any si2e without uploading to a third@party server. . . tinychat.com " setup a private chat room in micro@seconds. .!. privnote.com " create te<t notes that will self@destruct after being read. .%. bo<oh.com " trac# the status of any shipment on Google -aps " alternative. .&. chipin.com " when you need to raise funds online for an event or a cause.

.(. downforeveryoneor4ustme.com " find if your favorite website is offline or notA .*. ewhois.com " find the other websites of a person with reverse Bnalytics loo#up. ... whoishostingthis.com " find the web host of any website. ./. google.com:history " found something on Google but can)t remember it nowA .0. aviary.com:myna " an online audio editor that lets record, and remi< audio clips online. .1. disposablewebpage.com " create a temporary web page that self@destruct. / . urbandictionary.com " find definitions of slangs and informal words. /!. seatguru.com " consult this site before choosing a seat for your ne<t flight. /%. s<c.hu " download stoc# images absolutely free. /&. 2oom.it " view very high@resolution images in your browser without scrolling. /(. scribblemaps.com " create custom Google -aps easily. /*. alertful.com " +uic#ly setup email reminders for important events. /.. encrypted.google.com " prevent your ?58 and boss from reading your search +ueries. //. formspring.me " you can as# or answer personal +uestions here. /0. sumopaint.com " an e<cellent layer@based online image editor. /1. snopes.com " find if that email offer you received is real or 4ust another scam. 0 . typingweb.com " master touch@typing with these practice sessions. 0!. mailvu.com " send video emails to anyone using your web cam. 0%. timerime.com " create timelines with audio, video and images. 0&. stupefli<.com " ma#e a movie out of your images, audio and video clips. 0(. safeweb.norton.com " chec# the trust level of any website. 0*. teu<deu<.com " a beautiful to@do app that loo#s li#e your paper dairy. 0.. deadurl.com " you)ll need this when your boo#mar#ed web pages are deleted. 0/. minutes.io " +uic#ly capture effective notes during meetings. 00. youtube.com:leanbac# " ;atch $ouTube channels in TC mode. 01. youtube.com:disco " +uic#ly create a video playlist of your favorite artist. 1 . talltweets.com " 5end tweets longer than !( characters. 1!. panca#e.io " create a free and simple website using your 6ropbo< account. 1%. builtwith.com " find the technology stac# of any website. 1&. wooran#.com " research a website from the 5=3 perspective. 1(. mi<lr.com " broadcast live audio over the web. 1*. radbo<.me " boo#mar# online videos and watch them later (review). 1.. tagmydoc.com " add 'R codes to your documents and presentations (review). 1/. notes.io " the easiest way to write short te<t notes in the browser. 10. ctrl+.org:html@mail " send rich@te<t mails to anyone, anonymously. 11. fiverr.com " hire people to do little things for D*. ! . oti<o.com " easily manage your online files on 6ropbo<, Google 6ocs, etc. ! !. ifttt.com " create a connection between all your online accounts.

You might also like