IBM Paper.doc

35
8/14/2019 IBM Paper.doc http://slidepdf.com/reader/full/ibm-paperdoc 1/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. notifAll(); &. isnterru'ted(); . snchroni/ed(); +. interru't();

Transcript of IBM Paper.doc

Page 1: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 1/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();

Page 2: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 2/35

0. wait(lon% msecs);

. slee'(lon% msecs);

. ield();

A. 1# 2#

B. 2# # +

C. 1# 2# 0

D. 2# &#

Answer: C

. class 3 im'lements !unna"le

4

'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%?

Page 3: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 3/35

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 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

D. here is no wa to "e a"solutel certain.

Answer: D

. class @a'' *ar"a%e 1

4

'u"lic static void main($trin% ar%s56)

4

Page 4: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 4/35

@a'' *ar"a%e 1 h new @a'' *ar"a%e 1();

h.methodA(); 78 >ine 0 87

:

,"-ect methodA()

4

,"-ect o"-1 new ,"-ect();

,"-ect 56 o"-2 new ,"-ect516;

o"-25 6 o"-1;

o"-1 null;

return o"-25 6;

:

:

Where will "e the most chance of the %ar"a%e collector "ein% invo ed?

A. After line

B. After line 1

C. After line 11

D. *ar"a%e collector never invo ed in methodA()

Answer< D

. class Bar 4 :

class est

4

Bar doBar()

4

Bar " new Bar(); 78 >ine 0 87

Page 5: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 5/35

return "; 78 >ine 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 # when doBar() com'letes

D. after line 1+# when main() com'letes

Answer: B

. class est

4

'rivate Demo d;

void start()

4

d new Demo();

this.ta eDemo(d); 78 >ine 87

Page 6: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 6/35

: 78 >ine 87

void ta eDemo(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

B. After line

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

1 . 'u"lic class 3

4

'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 87

doCom'lex$tuff();

:

static 3 m1(3 mx)

Page 7: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 7/35

4

mx new 3();

return mx;

:

:

After line runs. how man o"-ects are eli%i"le for %ar"a%e collection?

A.

B. 1

C. 2

D. &

Answer: B

11. 'u"lic class est2

4

'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 / ; 78 >ine 11 87

assert / 2< foo(/); 78 >ine 12 87

if ( / E )

Page 8: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 8/35

assert / ; 78 >ine 1 87

switch (/)

4

case < $ stem.out.'rintln( );

case +< $ stem.out.'rintln( + );

default< assert / E 1 ;

:

if ( / E 1 )

assert / < /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. 'u"lic class est

4

'u"lic void foo()

4

Page 9: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 9/35

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

Page 10: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 10/35

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 ));

:

:

Page 11: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 11/35

:.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 );

:

Page 12: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 12/35

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 -d 1.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

Page 13: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 13/35

"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

1 . Which of the followin% statements is false?

A. A function is a "loc of code that 'erforms a s'ecific tas

Page 14: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 14/35

B. Munctions allow 'ro%rammers to "rea lar%e and com'lex 'ro"lems into small andmana%ea"le tas s

C. Munctions allow 'ro%rammers to use existin% code to 'erform common tas s

D. Munctions can "e called# or invo ed# onl once in a 'ro%ram

N. =ro%rammerOdefined functions can "e either valueOreturnin% or void

1 . he %eneric t 'e in a tem'late function

A. must "e

B. can "e

C. cannot "e for functions ou create# "ut ma "e for CFFPs "uiltOin functions

D. cannot "e

1 . When a child class function is called# the com'iler loo s first for a matchin% functionname in the LLLLL

A. class of the o"-ect usin% the function name

B. immediate ancestor class

C. "ase class

D. descendant class

2 . 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

Page 15: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 15/35

21. f no constructors can s'ecified for a derived class# o"-ects of the derived class will usethe 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 invo ed it

D. a co' of the o"-ect that invo ed it

2&. he most efficient data t 'e for a varia"le that the num"er 2 is the LLLLL datat '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

Page 16: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 16/35

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' 5 6 ar%s;

x ar%Co' 5 6.len%th;

for (int ; E x; FF)

4

$ stem.out.'rint( F ar%Co' 5 65 6);

:

:

:

and the commandOline invocation is

-ava CommandAr%s hree 1 2 &

A.

B. 1 2

Page 17: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 17/35

C.

D. 1 2 &

Answer: D

2 . 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

-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

Page 18: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 18/35

2 . 'u"lic class M 1

4

'u"lic void main( $trin%56 ar%s )

4

$ stem.out.'rintln( @ello F ar%s5 6 );

:

:

What will "e the out'ut of the 'ro%ram# if this code is executed with the command line<

-ava M 1 world

A. @ello

B. @ello Moo 1

C. @ello world

D. he code does not run.

Answer: D

2 . 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%s5265 6.to$trin%());

:

:

Page 19: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 19/35

class Do% 4 :

A. null

B. the Do%s

C. Com'ilation fails

D. An exce'tion is thrown at runtime

Answer: D

& . 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 1 ;

for (int ; E+; FF# xOO)

$ stem.out.'rint(x F # );

:

:

A. 1 # # # # 0#

B. # # # 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?

Page 20: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 20/35

'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 87

:

:

And the command line invocation<

-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);

Page 21: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 21/35

:

:

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?

'ac a%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

Page 22: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 22/35

:

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

4

9 Hector v new 9 QewHector(); 78 >ine 1 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(x5 6);

:

:

A.

B. null

Page 23: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 23/35

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( ));

Page 24: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 24/35

A. 2

B. &

C.

D. 2.+

Answer: B

& . Which of the followin% would com'ile without error?

A. int a 9ath.a"s(O+);

B. int " 9ath.a"s(+. );

C. int c 9ath.a"s(+.+M);

D. int d 9ath.a"s(+>);

Answer: A

& . Which of the followin% are valid calls to 9ath.max?

1. 9ath.max(1# )

2. 9ath.max(2.&# +)

&. 9ath.max(1# &# +# )

. 9ath.max(O1.+# O2. f)

A. 1# 2 and

B. 2# & and

C. 1# 2 and &

D. 2# & and

Answer: A

Page 25: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 25/35

& . 'u"lic class 9 file

4

'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 1 2 &

. 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 87

:

When is the B o"-ect# created in line &# eli%i"le for %ar"a%e collection?

Page 26: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 26/35

A. after line +

B. after line 0

C. after line

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(a15 6 F a1516 F a1526 F );

$ stem.out.'rintln(a25 6 F a2516 F a2526);

:

lon% 5 6 fix(lon% 5 6 a&)

4

a&516 ;

Page 27: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 27/35

return a&;

:

:

A. 12 1+

B. 1+ 1+

C. & + & +

D. & + & +

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);

:

Page 28: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 28/35

"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

Page 29: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 29/35

$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 x ;

$ stem.out.'rint(x F and );

Page 30: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 30/35

x x &1;

$ stem.out.'rintln(x);

:

:

A. O21 &0 and 1

B. x and x 1

C. O21 &0 and O1

D. 1 and O21 &0

+. 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 1 ;

dou"le 1 .1;

"oolean " (x ); 78 >ine 87

$ stem.out.'rintln(");

:

:

A. true

B. false

C. Com'ilation fails

D. An exce'tion is thrown at runtime

Answer: C

Page 31: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 31/35

Page 32: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 32/35

• 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 havesimple 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 .

Page 33: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 33/35

%&.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.

Page 34: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 34/35

. 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 nowA0. 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.

Page 35: IBM Paper.doc

8/14/2019 IBM Paper.doc

http://slidepdf.com/reader/full/ibm-paperdoc 35/35