1. Which color travels most slowly through glass?

Answer: Violet

Reply

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

Comments

Tags
Show Similar Question And Answers
QA->Which color travels most slowly through glass?....
QA->WHICH COLOUR OF LIGHT TRAVELS MOST SLOWLY THROUGH GLAS S....
QA->The chemical that imparts yellow color to glass:....
QA->Which type of glass is used for making glass reinforced plastic?....
QA->Which type of glass is used for making glass containers such as bottles and jars ?....
MCQ->Which of the following statements are correct about the C#.NET code snippet given below? namespace IndiabixConsoleApplication ( class Sample { private enum color : int { red, green, blue } public void fun() { Console.WriteLine(color.red); } } class Program { static void Main(string[ ] args) { // Use enum color here } } } To define a variable of type enum color in Main(), we should use the statement, color c; . enum color being private it cannot be used in Main(). We must declare enum color as public to be able to use it outside the class Sample. To define a variable of type enum color in Main(), we should use the statement, Sample.color c; . We must declare private enum color outside the class to be able to use it in Main()....
MCQ->What is the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { public enum color { red, green, blue }; class SampleProgram { static void Main (string[ ] args) { color c = color.blue; switch (c) { case color.red: Console.WriteLine(color.red); break; case color.green: Console.WriteLine(color.green); break; case color.blue: Console.WriteLine(color.blue); break; } } } }...
MCQ->In this section,each passage consists of 6 sentences.The first and sixth sentences are given in the beginning as S1 and S6.The middle four sentences in each are removed and jumbled up.These are labelled P,Q,R,S.You are required to find out the proper order of the sentences and mark accordingly on the answer sheet S1:At the roadside a driver will be asked to blow through a small glass tube into a plastic bag S6:The driver will be asked to go to the police station P:And if the color change did not reach the line the driver cannot be punished under the new law. Q:Inside the tube are chemically treated crystals which change color if the driver has alcohol on his brreath R:But if the color change did reach the line,then the test has proved positive S:If the color change goes beyond a certainline marked on the tube then this indicates the driver is probably over the specified limit The proper sequence should be...
MCQ-> Read the given passage carefully and select the best answer to each question out of the four given alternatives.The Divine Comedy is a narrative poem describing Dante's imaginary journey. Midway on his journey through life Dante realizes he has taken the wrong path. The Roman poet Virgil searches for the lost Dante at the request of Beatrice; he finds Dante in the woods on the evening of Good Friday in the year 1300 and serves as a guide as Dante begins his religious pilgrimage to find God. To reach his goal, Dante passes through Hell, Purgatory and Paradise. The Divine Comedy was not titled as such by Dante; his title for the work was simply Commedia or Comedy. Dante’s use of the word "comedy" is medieval by definition. To Dante and his contemporaries, the term "comedy" meant a tale with a happy ending, not a funny story as the word has since come to mean. Dante and Virgil enter the wide gates of Hell and descend through the nine circles of Hell. In each circle they see sinners being punished for their sins on earth; Dante sees the torture as Divine justice. Dante first travels through circles of hell and then through 3 rings before entering the 8th circle. Then there are 9 bowge before Dante reached the 9th circle. After 9th circle Dante has to travel 4 more regions. On Easter Sunday, Dante emerges from Hell. Through his travels, he has found his way to God and is able, once more, to look upon the stars.To reach god, Dante has to pass through which of the following?
 ...
MCQ->Which of the following will be the correct output for the C#.NET code snippet given below? enum color : int { red = -3, green, blue } Console.Write( (int) color.red + ", "); Console.Write( (int) color.green + ", "); Console.Write( (int) color.blue );...
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