<<= Back Next =>>
You Are On Multi Choice Question Bank SET 567

28351. Oil is good------burns





28352. IF you work hard,you-----------





28353. The jury----------divided in their opinion





28354. The pen is--------------than sword





28355. English is--------------easy language





28356. Sitha is as smart as-------------





28357. What is the passive form of “Big brother is watching you very carefully”





28358. Antonym of “Incorporate “is





28359. One among the following is not synonym of ‘resentment’





28360. He won’t do it,----------?





28361. ”He had a change of heart”means:





28362. Sachin -------------playing cricket last year





28363. Find out the exact word which means”change to suit a purpose”





28364. Replace the underlined word with its antonym





28365. Hostile cr





28366. Change into passive





28367. Geetha worked hard------------not succeeded





28368. Find the correct spelled word





28369. Find correct spelled word





28370. The thief----------in the waste bin





28371. A-----------of ants were found on the floor





28372. ”They racked the brain but of no use”means:





28373. How will you write ½ as a percentage?





28374. 3/45 1/3=





28375. 40 is what percentage of 800?





28376. A man travelled 240 km at the rate of 20 km/hour.Find the time taken by him.





28377. Which of the following is the greatest?





28378. 33-4+5-1=





28379. 33=





28380. If p=-Find the value of -8p+6:





28381. Find the missing term of 4,2,1,1/2----------





28382. 82+42+2212=





28383. Which of the following are equivalent?





28384. Find x if 2x=32





28385. Which of the following is a cube root of 8?





28386. 12 3/5+6 5/3=





28387. What percentage of a day is 6 hours?





28388. 6464-36=





28389. Find the average of 30,42 and 51





28390. 1+11+111+1111=





28391. Which of the following statements is correct about the C#.NET code snippet given below? class Trial { int i; Decimal d; } struct Sample { private int x; private Single y; private Trial z; } Sample ss = new Sample();






28392. How many bytes will the structure variable samp occupy in memory if it is defined as shown below? class Trial { int i; Decimal d; } struct Sample { private int x; private Single y; private Trial z; } Sample samp = new Sample();






28393. Which of the following will be the correct result of the statement b = a in the C#.NET code snippet given below? struct Address { private int plotno; private String city; } Address a = new Address(); Address b; b = a;






28394. Which of the following statements are correct? A struct can contain properties. A struct can contain constructors. A struct can contain protected data members. A struct cannot contain methods. A struct cannot contain constants.





28395. C#.NET structures are always value types.



28396. When would a structure variable get destroyed?





28397. Which of the following statements is correct about the C#.NET code snippet given below? struct Book { private String name; private int noofpages; private Single price; } Book b = new Book();






28398. Which of the following will be the correct output for the C#.NET program given below? namespace IndiabixConsoleApplication { struct Sample { public int i; } class MyProgram { static void Main(string[] args) { Sample x = new Sample(); x.i = 10; fun(ref x); Console.Write(x.i + " "); } public static void fun(ref Sample y) { y.i = 20; Console.Write(y.i + " "); } } }






28399. How many numbers from 1 to 20 have a squares that end in the digit 4?





28400. Which of the following statements are correct about the structure declaration given below? struct Book { private String name; protected int totalpages; public Single price; public void Showdata() { Console.WriteLine(name + " " + totalpages + " " + price); } Book() { name = " "; totalpages = 0; price = 0.0f; } } Book b = new Book(); We cannot declare the access modifier of totalpages as protected. We cannot declare the access modifier of name as private. We cannot define a zero-argument constructor inside a structure. We cannot declare the access modifier of price as public. We can define a Showdata() method inside a structure.





<<= Back Next =>>
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