MCQOPTIONS
Saved Bookmarks
This section includes 5400 Mcqs, each offering curated multiple-choice questions to sharpen your Current Affairs knowledge and support exam preparation. Choose a topic below to get started.
| 4351. |
What does the following method specify?public static WebRequest Create(string requestUriString) |
| A. | Creates a WebRequest object for the URI specified by the string passed by requestUriString |
| B. | The object returned will implement the protocol specified by the prefix of the URI |
| C. | The object will be an instance of the class that inherits WebRequest |
| D. | All of the mentioned |
| Answer» E. | |
| 4352. |
What does the following form define?Protocol://HostName/FilePath?Query |
| A. | Protocol specifies the protocol being used, such as HTTP |
| B. | HostName identifies a specific server, such as mhprofessional.com or www.google.com |
| C. | FilePath specifies the path to a specific file |
| D. | All of the mentioned |
| Answer» E. | |
| 4353. |
Choose the statement which defines the Nullable type Correctly: |
| A. | A special version of a value type that is represented by a structure |
| B. | A nullable type can also store the value null |
| C. | Nullable types are objects of System.Nullable, where T must be a non nullable value type |
| D. | All of the mentioned |
| Answer» E. | |
| 4354. |
What does the following code depicts?1. System.Nullable count;2. bool? done; |
| A. | Code 1 declares the objects of nullable of type Nullable defined in the System namespace |
| B. | Code 2 declares a nullable type in much shorter and in more commonly used way using ‘?’ |
| C. | Both a & b |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |
| 4355. |
What does the following code specify?object Invoke(object obj, object[] parameters) |
| A. | Calling a type using invoke() |
| B. | Any arguments that need to be passed to the method are specified in the array parameters |
| C. | The value returned by the invoked method is returned by Invoke() |
| D. | All of the mentioned |
| Answer» E. | |
| 4356. |
Attributes can be applied to 1. Method 2. Class3. Assembly4. Namespace5. Enum |
| A. | 1 and 2 only |
| B. | 1, 2 and 3 |
| C. | 4 and 5 only |
| D. | All of the above |
| Answer» C. 4 and 5 only | |
| 4357. |
What does the following property define in C#?public static int BinarySearch(T[] array, int index, int length, T value) |
| A. | Searches a portion of the array specified by array for the value specified by value |
| B. | The search begins at the index specified by index and is restricted to length elements. Returns the index of the first match. |
| C. | If value is not found, returns a zero value |
| D. | Both a and b |
| Answer» E. | |
| 4358. |
Which operator among the following supplies the information about characteristics of a typeof? |
| A. | is |
| B. | as |
| C. | typeof |
| D. | none of the mentioned |
| Answer» D. none of the mentioned | |
| 4359. |
What does the following code signify?expr is type |
| A. | Determines the type of an object |
| B. | a simple deceleration |
| C. | Both a & b |
| D. | None of the mentioned |
| Answer» B. a simple deceleration | |
| 4360. |
What does the following property defined in the array class defines in C#?public bool IsReadOnly { get; } |
| A. | a property is read only by nature |
| B. | property is true if the array object is read only and false otherwise |
| C. | value is false for arrays |
| D. | All of the above |
| Answer» E. | |
| 4361. |
What is the full form of URL in Miscellaneous? |
| A. | Uniform Resource Locator |
| B. | Uniform Resource Latch |
| C. | Universal Resource Locator |
| D. | Universal Resource Latch |
| Answer» B. Uniform Resource Latch | |
| 4362. |
Which of these exceptions is thrown by the URL class’s constructors? |
| A. | URLNotFound |
| B. | URLSourceNotFound |
| C. | MalformedURLException |
| D. | URLNotFoundException |
| Answer» D. URLNotFoundException | |
| 4363. |
Which of the following are the protocols defined by .NET runtime: |
| A. | HTTP |
| B. | HTTPS |
| C. | File |
| D. | All of the mentioned |
| Answer» E. | |
| 4364. |
Among the given pointer which of following cannot be incremented? |
| A. | int |
| B. | char |
| C. | float |
| D. | void |
| Answer» E. | |
| 4365. |
What does the following declaration specify?MethodInfo[] GetMethods() |
| A. | Returns an array of MethodInfo objects |
| B. | Returns a list of the public methods supported by the type by using GetMethods() |
| C. | Both a & b |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |
| 4366. |
How many values can be returned from a function simultaneously using pointers? |
| A. | 1 |
| B. | 2 |
| C. | 3 |
| D. | as many as user wants |
| Answer» E. | |
| 4367. |
Consider an integer pointer *a.++*a will increment ___________ while *a++ will increment __________ |
| A. | value at a, address contained in a |
| B. | value at a,value at a |
| C. | address contained in a, address contained in a |
| D. | address contained in a, value at a |
| Answer» B. value at a,value at a | |
| 4368. |
What does the given code snippet specify?public Thread(ThreadStart start) |
| A. | Defines a thread |
| B. | Declaration of a thread constructor |
| C. | Only a |
| D. | Only a & b |
| Answer» E. | |
| 4369. |
What is mutex? |
| A. | a mutually exclusive synchronization object |
| B. | can be acquired by more than one thread at a time |
| C. | helps in sharing of resource which can be used by one thread |
| D. | all of the mentioned |
| Answer» B. can be acquired by more than one thread at a time | |
| 4370. |
Which of the following statements are correct?1. A struct can contain properties.2. A struct can contain constructors.3. A struct can contain protected data members.4. A struct cannot contain methods.5. A struct cannot contain constants. |
| A. | 1, 2 |
| B. | 3, 4 |
| C. | 1, 2, 4 |
| D. | 3, 5 |
| Answer» B. 3, 4 | |
| 4371. |
Which of the following is the correct way to define a variable of the type struct Emp declared below?1. Emp e(); e = new Emp();2. Emp e = new Emp;3. Emp e; e = new Emp;4. Emp e = new Emp();6. Emp e; |
| A. | 1, 3 |
| B. | 2, 5 |
| C. | 4, 5 |
| D. | 1, 2, 4 |
| Answer» D. 1, 2, 4 | |
| 4372. |
Which Indian cities ranked among the top 20 tourist destinations in Asia Pacific Region as per the 'Mastercard Asia Pacific Destinations Index 2017'? |
| A. | Chennai and Bengaluru |
| B. | New Delhi and Bengaluru |
| C. | Chennai and Mumbai |
| D. | Chennai and New Delhi |
| Answer» D. Chennai and New Delhi | |
| 4373. |
Indian Railways set to launch its first _____ train with Wi-Fi, entertainment screens, and vending machines for passengers. |
| A. | Howrah Express |
| B. | Tanjore Express |
| C. | Tejas Express |
| D. | Delhi Express |
| Answer» D. Delhi Express | |
| 4374. |
Prime Minister Narendra Modi released a commemorative stamp on the 1,000th birth anniversary of ___________. |
| A. | Madhvacharya |
| B. | Advaita Acharya |
| C. | Raghavendra |
| D. | Ramanujacharya. |
| Answer» E. | |
| 4375. |
What is the name of the web portal launched by the Department of Telecommunications to know the information on Mobile Tower Radiation? |
| A. | EMF |
| B. | NPTEL |
| C. | Tarang Sanchar |
| D. | TAMRA |
| Answer» D. TAMRA | |
| 4376. |
Who of the following will represent India at the 2017 Universal Periodic Review (UPR) of the UN Human Rights Council (UNHRC)? |
| A. | Shaktikanta Das |
| B. | Amitabh Kant |
| C. | Arvind Panagariya |
| D. | Mukul Rohatgi |
| Answer» E. | |
| 4377. |
Which airport becomes International Airport as per provisions of Andhra Pradesh Reorganisation Act, 2014? |
| A. | Visakhapatnam |
| B. | Rajahmundry |
| C. | Tirupati |
| D. | Vijayawada |
| Answer» E. | |
| 4378. |
The World's highest railway bridge is coming up in _________. |
| A. | Jammu and Kashmir |
| B. | Uttar Pradesh |
| C. | Odisha |
| D. | Goa |
| Answer» B. Uttar Pradesh | |
| 4379. |
Whis is the host country of 27th session of the Universal Periodic Review (UPR) of the UN Human Rights Council (UNHRC)? |
| A. | Britain |
| B. | Singapore |
| C. | Siria |
| D. | Switzerland |
| Answer» E. | |
| 4380. |
India has successfully carried out a fresh user trial of Agni-II ballistic missile in ______. |
| A. | Abdul Kalam Island, Odisha |
| B. | Kerala |
| C. | Andhra Pradesh |
| D. | Balasore Odisha |
| Answer» B. Kerala | |
| 4381. |
Which type of Mango received a Geographical Indication(GI) tag? |
| A. | Himsagar |
| B. | Alphonso |
| C. | Banganapalli |
| D. | Chaunsa |
| Answer» D. Chaunsa | |
| 4382. |
How many cities were surveyed for Swachh Survekshan 2017? |
| A. | 234 cities |
| B. | 414 cities |
| C. | 434 cities |
| D. | 334 cities |
| Answer» D. 334 cities | |
| 4383. |
The Cabinet Committee on Economic Affairs (CCEA) approved a schemes _________ for the period of 2016-20 with the 14th Finance Commission cycle. |
| A. | ATUFS |
| B. | Solar Park Project |
| C. | Foreign Investment proposal |
| D. | SAMPADA |
| Answer» E. | |
| 4384. |
The 2017 India Integrated Transport and Logistics Summit was held in ________. |
| A. | Chennai |
| B. | Mummbai |
| C. | Kolkata |
| D. | New Delhi |
| Answer» E. | |
| 4385. |
The world's biggest X-ray laser generated its first light in ___________. |
| A. | Italy |
| B. | Denmark |
| C. | Germany |
| D. | Algeria |
| Answer» D. Algeria | |
| 4386. |
How many themes are included in the Indian Transport Summit? |
| A. | 3 |
| B. | 4 |
| C. | 6 |
| D. | 5 |
| Answer» D. 5 | |
| 4387. |
Which Indian group topped the UK rich list 2017 recently? |
| A. | Ashok leyland group |
| B. | Reliance group |
| C. | Hinduja - group |
| D. | Larsen and toubro group |
| Answer» D. Larsen and toubro group | |
| 4388. |
The Prime Minister Narendra Modi will travel to Srilanka on May 11 to attend which of the following festival? |
| A. | Unduvap |
| B. | Vesak |
| C. | Binara |
| D. | Poson |
| Answer» C. Binara | |
| 4389. |
What is the new name of the Chhatrapati Shivaji International Airport? |
| A. | Indira Gandhi International Airport |
| B. | Devi Ahilyabai Holkar Airport |
| C. | Chhatrapati Shivaji Maharaj International Airport |
| D. | Chaudhary Charan Singh Airport |
| Answer» D. Chaudhary Charan Singh Airport | |
| 4390. |
Which railway station is renamed as 'Prabhadevi' by the Central Govt? |
| A. | Dudhsagar |
| B. | Elphinstone Road station |
| C. | Cuttack |
| D. | Howrah Station |
| Answer» C. Cuttack | |
| 4391. |
Which organisation has been instructed by Home Ministry to use core banking services? |
| A. | Indian Institute of Packaging (IIP) |
| B. | Agricultural and Processed Food Products Export Development Authority (APEDA) |
| C. | Non Government Organisation (NGO) |
| D. | Indian Institute of Foreign Trade (IIFT) |
| Answer» D. Indian Institute of Foreign Trade (IIFT) | |
| 4392. |
Which flight going to introduce 50 ATR-72 aircraft? |
| A. | Indigo |
| B. | Sahara |
| C. | Air Asia |
| D. | Air India |
| Answer» B. Sahara | |
| 4393. |
The 29th series of IndiaIndonesia CORPAT is being conducted at ________. |
| A. | Haldia Port |
| B. | Paradip Port |
| C. | Port Blair |
| D. | Kandla Port |
| Answer» D. Kandla Port | |
| 4394. |
Which metro services decided to employ the transgender workers in India? |
| A. | Delhi Metro services |
| B. | Mumbai Metro services |
| C. | Chennai Metro Services |
| D. | Kochi Metro services |
| Answer» E. | |
| 4395. |
Which department launched a new e-facility to link a person's Aadhaar with the PAN? |
| A. | Department of Revenue |
| B. | Central Bureau of Narcotics |
| C. | Income Tax department |
| D. | Reserve Bank of India (RBI) |
| Answer» D. Reserve Bank of India (RBI) | |
| 4396. |
Which digital filing system has been launched for Supreme Court of India (SCI)? |
| A. | Integrated Case Management Information System |
| B. | Integrated Digital Transparency System |
| C. | Integrated e-filing Information System |
| D. | Integrated Transparency Information System |
| Answer» B. Integrated Digital Transparency System | |
| 4397. |
Which organization launched the National Contact Centre with a toll-free No 1800111950? |
| A. | Planning Commission |
| B. | Election Commission of India |
| C. | Aadhaar |
| D. | Reserve Bank of India |
| Answer» C. Aadhaar | |
| 4398. |
Nitin Gadkari launched the NHAI __________ bond at the London Stock Exchange. |
| A. | Yankee Bonds |
| B. | Euroyen bonds |
| C. | Samurai bonds |
| D. | Masala Bonds |
| Answer» E. | |
| 4399. |
Which Public service commission decided to share online scores of candidates taking competitive exams in order to boost hiring by the private sector? |
| A. | Union Public Service Commission |
| B. | Assam Public Service Commission |
| C. | Uttar Pradesh Public Service Commission |
| D. | Kerala Public Service Commission |
| Answer» B. Assam Public Service Commission | |
| 4400. |
The President of India conferred the Florence Nightingale Awards to ______ nurses on International Nurses Day at the Rashtrapati Bhavan, New Delhi. |
| A. | 32 |
| B. | 36 |
| C. | 34 |
| D. | 35 |
| Answer» E. | |