MCQ 2511 MarkWhich of the following is used to represent two-dimensional data structure ?✓MatrixBVectorCObjectDClassAnswerCorrect option: A. MatrixAView full question & answer→
MCQ 2521 MarkWhich number represents Saturday in DAY_OF_WEEK ?A$0$B1✓7D6AnswerCorrect option: C. 7CView full question & answer→
MCQ 2531 MarkWhich number represents Sunday in DAY_OF_WEEK ?✓1B$0$C6D7AnswerCorrect option: A. 1AView full question & answer→
MCQ 2541 MarkWhich number represents December in Month of calendar ?A1B$0$C10✓11AnswerCorrect option: D. 11DView full question & answer→
MCQ 2551 MarkWhich number represents January in Month of calendar ?A1✓$0$C11D10AnswerCorrect option: B. $0$BView full question & answer→
MCQ 2561 MarkWhich number represents first day in DAY_OF_YEAR ?A$0$✓1CAny A or BD100AnswerCorrect option: B. 1BView full question & answer→
MCQ 2571 MarkWhich constant of Calendar class will return Week number within the year?✓WEEK_OF_YEARBWeekOfYearCWEEK_MONTHDWEEK_YEARAnswerCorrect option: A. WEEK_OF_YEARAView full question & answer→
MCQ 2581 MarkWhich constant of Calendar class will return Week number within the month?AWEEKBWEEK_NOCWEEKDAY✓WEEK_OF_MONTHAnswerCorrect option: D. WEEK_OF_MONTHDView full question & answer→
MCQ 2591 MarkWhich constant of Calendar class will return AM or PM notation ?AHOUR✓AM_PMCMINUTESDSECONDSAnswerCorrect option: B. AM_PMBView full question & answer→
MCQ 2601 MarkWhich constant of Calendar class will return Seconds ?ASecondsBSeconds_Of_TimeCSECONDS✓SECONDAnswerCorrect option: D. SECONDDView full question & answer→
MCQ 2611 MarkWhich constant of Calendar class will return Minutes ?AMinutes✓MINUTECMinute_TimeDMinute_Of_TimeAnswerCorrect option: B. MINUTEBView full question & answer→
MCQ 2621 MarkWhich constant of Calendar class will return Hours in 24-hour notation ?AHOUR_CALBHour_Of_Time✓HOUR_OF_DAYDHOURAnswerCorrect option: C. HOUR_OF_DAYCView full question & answer→
MCQ 2631 MarkWhich constant of Calendar class will return same value as DATE?ADAYBDayOfMonthCDateOfMonth✓DAY_OF_MONTHAnswerCorrect option: D. DAY_OF_MONTHDView full question & answer→
MCQ 2641 MarkWhich brackets are used to specify the size of two dimensions row and column respectively?AParenthesisBCurly brackets✓Square bracketsDAngular bracketsAnswerCorrect option: C. Square bracketsCView full question & answer→
MCQ 2651 MarkWhich array class method is used to search an element in an array ?ASearch( )✓binarySearch( )Cbinary( )DSearchArray( )AnswerCorrect option: B. binarySearch( )BView full question & answer→
MCQ 2661 MarkWith which values array is initialized, as array is an object?AClass name✓Default valuesCParameters of bracketsDObject nameAnswerCorrect option: B. Default valuesBView full question & answer→
MCQ 2671 MarkFrom which value does Index start?✓$0$B1C2D3AnswerCorrect option: A. $0$AView full question & answer→
MCQ 2681 MarkWhich of the following is a one - dimensional data structure ?AMatrix✓VectorCClassDMethodAnswerCorrect option: B. VectorBView full question & answer→
MCQ 2691 MarkWhich operator can compare two strings ?ACompareB=C→✓==AnswerCorrect option: D. ==DView full question & answer→
MCQ 2701 MarkWhich of the following are stored in memory?ANumbersBElements✓LiteralsDNone of theseAnswerCorrect option: C. LiteralsCView full question & answer→
MCQ 2711 MarkWhat can we use with array of bytes as an argument ?AObject✓ConstructorCClassDMethodAnswerCorrect option: B. ConstructorBView full question & answer→
MCQ 2721 MarkWhat can we use instead of 'array of characters', to save space ?✓Array of bytesBArray of numbersCArray of ASCIIDArray of stringsAnswerCorrect option: A. Array of bytesAView full question & answer→
MCQ 2731 MarkWhat can we use to save space, if the characters are ASCII ?AArray of numbersBArray of ASCIICArray of Index✓Array of bytesAnswerCorrect option: D. Array of bytesDView full question & answer→
MCQ 2741 MarkWhat is used to create a String object that refers to the literal specified in argument?AString (String strObj)✓String (string literal)CString ( )DString (String strObj)AnswerCorrect option: B. String (string literal)BView full question & answer→
MCQ 2751 MarkHow many types of strings are supported by Java to use variables which can store stings?A1✓2C3D4AnswerCorrect option: B. 2BView full question & answer→
MCQ 2761 MarkWhich of the following can be considered as a string ?A2-D array of stringBTabular array of string✓1 - D array of charactersDMatrix array of stringAnswerCorrect option: C. 1 - D array of charactersCView full question & answer→
MCQ 2771 MarkWhich of the following is a sequence of characters ?AArray✓StringCString BufferDAlphanumeric valuesAnswerCorrect option: B. StringBView full question & answer→
MCQ 2781 MarkWhich kind of array does not create an array object?AArray with valuesBArray with square brackets and values✓Array without initializationDArray with element valuesAnswerCorrect option: C. Array without initializationCView full question & answer→
MCQ 2791 MarkWhich of the following property is used to get the number of elements in 1 - D array?ASize✓LengthCMeasureDDefineSizeAnswerCorrect option: B. LengthBView full question & answer→
MCQ 2801 MarkWhich property of 1 - D array is used to know the size of each row ?✓LengthBSizeCMeasureDDefineAnswerCorrect option: A. LengthAView full question & answer→
MCQ 2811 MarkWhich of the following is considered as an array of 1 - D array', in Java ?AVector✓2 - DCMatrixDMulti-dimensionalAnswerCorrect option: B. 2 - DBView full question & answer→
MCQ 2821 MarkWhat is considered as 1 array element, in 2 - D array ?AEach elementBEach column✓Each rowDAll A, B & CAnswerCorrect option: C. Each rowCView full question & answer→
MCQ 2831 MarkHow many numbers of dimensions can be created in array ?ATwo onlyBOne onlyCLimited✓UnlimitedAnswerCorrect option: D. UnlimitedDView full question & answer→
MCQ 2841 MarkWhich kind of array can be created by an array of array ?A1 - DBVectorCMulti-dimensional✓2 - DAnswerCorrect option: D. 2 - DDView full question & answer→
MCQ 2851 MarkWhich arrays are not supported directly by Java ?ASingle✓Multi-dimensionalCTabularD2 - DAnswerCorrect option: B. Multi-dimensionalBView full question & answer→
MCQ 2861 MarkWhich brackets are used to specify the size of two dimensions row and column respectively ?AParenthesisBCurly brackets✓Square bracketsDAngular bracketsAnswerCorrect option: C. Square bracketsCView full question & answer→
MCQ 2871 MarkHow many pairs of square brackets are used to declare 2 -D array ?A1B4C3✓2AnswerCorrect option: D. 2DView full question & answer→
MCQ 2881 MarkIn which form 2D arrays store tabular data ?AVectors✓Rows and ColumnsC1 - DDAll A, B & CAnswerCorrect option: B. Rows and ColumnsBView full question & answer→
MCQ 2891 MarkWhich method does element by element comparison in a serial fashion ?ABinaryBFind✓LinearDSearchAnswerCorrect option: C. LinearCView full question & answer→
MCQ 2901 MarkWhich of the following search is used to search an element in array by writing our own method?✓LinearBBinaryCSortDFindAnswerCorrect option: A. LinearAView full question & answer→
MCQ 2911 MarkWhich of the following arguments are required to fill partial array from element to (last-1) with specified value ?AArray, fill, start, last✓Array, start, last, valueCArray, start, value, lastDArray, value, start, lastAnswerCorrect option: B. Array, start, last, valueBView full question & answer→
MCQ 2921 MarkHow many arguments are required to fill array partially ?A1B2C3✓4AnswerCorrect option: D. 4DView full question & answer→
MCQ 2931 MarkWhich arguments are required, when the "fill" method is invoked ?AArray, start✓Array, valueCArray, lastDArray, fillAnswerCorrect option: B. Array, valueBView full question & answer→
MCQ 2941 MarkHow many arguments are required when the "fill" method is invoked ?A3B5✓2D1AnswerCorrect option: C. 2CView full question & answer→
MCQ 2951 MarkWhat is the range of elements for partial sort?AStart to last✓Start to (last - 1)CStart to endDEnd to startAnswerCorrect option: B. Start to (last - 1)BView full question & answer→
MCQ 2961 MarkWhat is contained by array name?✓Reference to memory locationBConstant valueCVariable listDMethod nameAnswerCorrect option: A. Reference to memory locationAView full question & answer→
MCQ 2971 MarkWhich three argument are required to sort array partially?AArray, 1, 2✓Array, start, lastCArray, fill, valueDArray, sort, valueAnswerCorrect option: B. Array, start, lastBView full question & answer→
MCQ 2981 MarkWith how many arguments array will sort partially ?A1B2✓3D4AnswerCorrect option: C. 3CView full question & answer→
MCQ 2991 MarkWhich kind of sorting is done, when we use only array as an argument?✓Sort an entire arrayBSort partial arrayCSort particular fieldsDAll A, B, CAnswerCorrect option: A. Sort an entire arrayAView full question & answer→
MCQ 3001 MarkWhich method is used to sort entire or a part of an array ?AFill( )BPsort( )CAsort( )✓Sort( )AnswerCorrect option: D. Sort( )DView full question & answer→