1. Which one of the following is the result of Green HouseEffect?





Write Comment

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Tags
Show Similar Question And Answers
QA->If the average of the first 6 result is 59 and that of the last six is 62, find the sixth result?....
QA->Which of the following typecasts result in loss of information?....
QA->“One vision, One identity, One Community” is the motto of which of the following organizations?....
QA->Which ofthe following gas is not known as green house gas ?....
QA->Which of the following is a protective food?(Fish, Green leafy vegetables, Liver, Egg)....
MCQ->What will be the output of the program? public class WrapTest { public static void main(String [] args) { int result = 0; short s = 42; Long x = new Long("42"); Long y = new Long(42); Short z = new Short("42"); Short x2 = new Short(s); Integer y2 = new Integer("42"); Integer z2 = new Integer(42); if (x == y) / Line 13 / result = 1; if (x.equals(y) ) / Line 15 / result = result + 10; if (x.equals(z) ) / Line 17 / result = result + 100; if (x.equals(x2) ) / Line 19 / result = result + 1000; if (x.equals(z2) ) / Line 21 / result = result + 10000; System.out.println("result = " + result); } }....
MCQ->What will be the output of the program? public class BoolTest { public static void main(String [] args) { int result = 0; Boolean b1 = new Boolean("TRUE"); Boolean b2 = new Boolean("true"); Boolean b3 = new Boolean("tRuE"); Boolean b4 = new Boolean("false"); if (b1 == b2) / Line 10 / result = 1; if (b1.equals(b2) ) / Line 12 / result = result + 10; if (b2 == b4) / Line 14 / result = result + 100; if (b2.equals(b4) ) / Line 16 / result = result + 1000; if (b2.equals(b3) ) / Line 18 / result = result + 10000; System.out.println("result = " + result); } }....
MCQ->What will be the output of the program? public class ObjComp { public static void main(String [] args ) { int result = 0; ObjComp oc = new ObjComp(); Object o = oc; if (o == oc) result = 1; if (o != oc) result = result + 10; if (o.equals(oc) ) result = result + 100; if (oc.equals(o) ) result = result + 1000; System.out.println("result = " + result); } }....
MCQ-> Answer the questions based on the following information. In a motor race competition certain rules are given for the participants to follow. To control direction and speed of the motorists, guards are placed at different signal points with caps of different colour. Guard with red cap indicates the direction of participant’s movement and guards with green cap indicates the speed of the participant’s movement. At any signal point presence of three guards, two guards and one guard with red cap means the participant must stop, turn left and turn right respectively. Signal points with three guards, two guards and one guard with green cap means the participants must move at 10, 4 and 2 km/hour respectively. Kartikay, one of the participants, starts at a point where his car was heading towards north and he encountered signals as follows: at start point one guard with green cap; after half an hour two guards with red cap and two guards with green cap at first signal; after fifteen minutes one guard with red cap at second signal; after half an hour one guard with red cap and three guards with green caps at third signal; after 24 minutes two guard with red cap and two guards with green cap at fourth signal; after 15 minutes three guard with red cap at fifth signal. (Time mentioned in each case is applicable after crossing the previous signal).Total distance travelled by Kartikay from starting point till last signal is:
 ....
MCQ-> A country has the following types of traffic signals.3 red lights = stop2 red lights = turn left1 red light = turn right3 green lights = go at 100 km/hr speed2 green lights = go at 40 km/hr speed1 green light = go at 20 km/hr speedA motorist starts at a point on a road and follows all traffic signals. His car is heading towards the north. He encounters the following signals (the time mentioned in each case below is applicable after crossing the previous signal).Starting point - 1 green lightAfter half an hour, 1st signal - 2 red and 2 green lightsAfter 15 min, 2nd signal - 1 red lightAfter half an hour, 3rd signal - 1 red and 3 green lightsAfter 24 min, 4th signal - 2 red and 2 green lightsAfter 15 min, 5th signal - 3 red lightsThe total distance travelled by the motorist from the starting point till the last signal is
 ....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions