What is Remote Interface ?

Answer Posted / satya

Remote interface is an interface which can be implemented
by remote objects

Is This Answer Correct ?    10 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is an iterator interface in java programming?

541


Is space a char?

534


Can a static class implement an interface?

562


Is logger a singleton?

528


What are java packages?

586






What is assembly language?

553


Can we call thread start () twice?

521


What’s a deadlock?

612


What are the object and class classes used for?

565


What is the independent variable in an experiment?

552


How do you override a method in java?

539


What is hash table in java?

494


How many bytes is a string java?

536


What is pre increment and post increment in java?

506


For ease of programming you can consider the maze as a 2D array with colors represented by below integer and characters (in capital letters). • B - Black • W -White • G- Green • R- Red R B W B W W W W W W B W B B W W W W W W W B W B W W W B W W W W B B W W W B W W W B W W B B B B W B W B W W B W W W B W W W B B B W W B W W W B W W B W B W W W B W B W W W W B B W W W W B W W W W W G Shortest Route Problem: • Solution that finds the shortest Route between Red and Green  White will have 1 Weight.  Red and Green carry no weights.  Shortest path is the path with less weight when you add up the weights in the path.

1585