1. Each pixel in digital image is assigned a tonal value (black, white, shades of gray or color), which is represented in:

Answer: Binary code

Reply

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

Comments

Tags
Show Similar Question And Answers
QA->Each pixel in digital image is assigned a tonal value (black, white, shades of gray or color), which is represented in:....
QA->Read the statements carefully and answer the question which follow: A cube has six sides each of a different colour.The red side is opposite black.The green side is between red and black.The blue side is adjacent to white .The brown side is adjacent to blue.The red side is face down.The side opposite brown is:....
QA->There are 50 students in a class. In a class test 22 students get 25 marks each, 18 students get 30 marks each. Each of the remaining gets 16 marks. The average mark of the whole class is :....
QA->The attribute of color by means of which a color is identified ?....
QA->“For that light represented something more than the immediate past, it represented the living, the eternal truths, reminding us of the right path, drawing us from error, taking this ancient country to freedom.” Who said these words when Gandhiji passed away?....
MCQ->Each pixel in digital image is assigned a tonal value(black,white,shades of gray or color),which is represented in:...
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->Which of the following statements are correct about the following code snippet? int a = 10; int b = 20; bool c; c = !(a > b); There is no error in the code snippet. An error will be reported since ! can work only with an int. A value 1 will be assigned to c. A value True will be assigned to c. A value False will be assigned to c....
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 | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution