MTA certifications are a great place to start if you would like to get into the technology field. MTA certifications address a wide spectrum of fundamental technical concepts, assess and validate core technical knowledge, and enhance technical credibility. Give the software quiz below a test to gauge how conversant you are on softwares.
5 percent
10 percent
15 percent
20 percent
Rate this question:
Requirements analysis, design, coding, testing, and release
Design, requirements analysis, coding, testing, and release
Release, requirements analysis, coding, testing, and design
Requirements analysis, design, release, coding, and testing
Rate this question:
C#
Visual Basic
Common Intermediate Language
C ++
Rate this question:
While
For
Foreach
Do-while
Rate this question:
White-box testing
Black-box testing
Alpha testing
Beta testing
Rate this question:
Casr
Break
If-else
Switch
Rate this question:
Void
Private
Int
String
Rate this question:
Int
Float
Double
Long
Rate this question:
Method
Property
Event
Delegate
Rate this question:
Integration testing
System testing
Acceptance testing
Regression testing
Rate this question:
Numbers[0]
Numbers[1]
Numbers[2]
Numbers[3]
Rate this question:
Inside the try block, before the first catch block
Inside the catch block that catches SqlException objects
Inside the catch block that catches Exception objects
Inside the finally block
Rate this question:
13
19
20
14
Rate this question:
Public
Protected
Private
Internal
Rate this question:
White-box testing
Black-box testing
Alpha testing
Beta testing
Rate this question:
Abstract
Virtual
New
Overrides
Rate this question:
Array
Linked list
Stack
Queue
Rate this question:
Cascading Style Sheet (CSS)
Hypertext Markup Language (HTML)
JavaScript
Hypertext Transmission Protocol (HTTP)
Rate this question:
< LINK >
< IMG >
< A >
< HTML>
Rate this question:
720
120
24
6
Rate this question:
Sealed
Abstract
Abstract
Internal
Rate this question:
Change the code in line 01 to int count = 1;
Change the code in line 02 to: while (count == 5)
Change the code in line 02 to while (count >= 5)
Change the code in line 05 to ++count;
Rate this question:
You can use the this keyword reference with a static method or property
Only one copy of a static field is shared by all instances of a class.
Static members of a class can be used only after an instance of a class is created.
The static keyword is used to declare members that do not belong to individual objects but to a class itself.
Rate this question:
Requirements analysis
Design
Coding
Testing
Rate this question:
User interface designer
Content developer
User interface designer
Technical writer
Rate this question:
A linked list does not allow random access to its items.
A link to the head node can help you locate all the nodes in a linked list.
The items in a linked list must be stored in contiguous memory locations.
Linked lists are extremely fast in performing insert and delete operations.
Rate this question:
0
1
2
3
Rate this question:
Virtual
Sealed
Interface
Abstract
Rate this question:
Encapsulation
Abstraction
Polymorphism
Inheritance
Rate this question:
User interface designer
Developer
Architect
Technical writer
Rate this question:
Array
Linked list
Stack
Queue
Rate this question:
47
84
24
34
Rate this question:
Pop
Push
Peek
Contains
Rate this question:
10
11
12
13
Rate this question:
Namespace
Override
Delegate
Class
Rate this question:
Try { bool success = ApplyPicardoRotation(100, 0); // additional code lines here } catch(DivideByZeroException dbze) { //exception handling code } catch(ArithmeticException ae) { //exception handling code } catch(OverflowException oe) { //exception handling code }
Try { bool success = ApplyPicardoRotation(100, 0); // additional code lines here } catch(DivideByZeroException dbze) { //exception handling code } catch(Exception e) { //exception handling code } catch(OverflowException oe) { //exception handling code }
Try { bool success = ApplyPicardoRotation(100, 0); www.vceplus.com - Website designed to help IT pros advance their careers - Born to Learn // additional code lines here } catch(DivideByZeroException dbze) { //exception handling code } catch(NotFiniteNumberException nfne) { //exception handling code } catch(OverflowException oe) { //exception handling code } catch(ArithmeticException ae) { //exception handling code }
Try { bool success = ApplyPicardoRotation(100, 0); // additional code lines here } catch(DivideByZeroException dbze) { //exception handling code } catch(NotFiniteNumberException nfne) { //exception handling code } catch(Exception e) { //exception handling code } catch(ArithmeticException ae) { //exception handling code }
Rate this question:
Create a static method in the Product class to initialize data members.
Create a constructor in the Product class to initialize data members.
Create a static property in the Product class to initialize data members
Create an event in the Product class to initialize data members.
Rate this question:
Testing
Design
Release
Requirements analysis
Rate this question:
Enqueue
Dequeue
Peek
Contains
Rate this question:
Link to the head node
Link to the tail node
Data in the head node
Data in the tail node
Rate this question:
Public int CompareTo(object obj) Polygon target = (Polygon)obj; double diff = this.GetArea() - target.GetArea(); if (diff == 0) return 0; else if (diff > 0) return 1; else return -1; } { Polygon target = (Polygon)obj; double diff = this.GetArea() - target.GetArea(); if (diff == 0) return 0; else if (diff > 0) return 1; else return -1; }
Public int CompareTo(object obj) { Polygon target = (Polygon)obj; double diff = this.GetArea() - target.GetArea(); if (diff == 0) return 1; else if (diff > 0) return -1; else return 0; }
Public int CompareTo(object obj) { Polygon target = (Polygon)obj; if (this == target) return 0; else if (this > target) return 1; else return -1; } if (this == target) return 0; else if (this > target) return 1; else return -1; }
Public int CompareTo(object obj) { Polygon target = (Polygon)obj; if (this == target) return 1; else if (this > target) return -1; else return 0; }
Rate this question:
Polygon p = (Polygon) o;
Polygon p = o is Polygon;
Polygon p = o as Polygon;
Polygon p = (o != null) ? o as Polygon : (Polygon) o;
Rate this question:
Rectangle r = (Rectangle) o;
Rectangle r = o;
Rectangle r = o as Rectangle;
Rectangle r = o is Rectangle;
Rate this question:
Array
Circular linked list
Linked list
Doubly linked list
Rate this question:
10
20
30
40
Rate this question:
Static int[] QuickSort(int[] numbers, int left, int right) { if (right > left) { int pivotIndex = left + (right - left) / 2; pivotIndex = Partition( numbers, left, right, pivotIndex); QuickSort( numbers, left, pivotIndex - 1); QuickSort( numbers, pivotIndex + 1, right); } return numbers; }
Static int[] QuickSort(int[] numbers, int left, int right) { if (right > left) { int pivotIndex = left + (right - left) / 2; pivotIndex = Partition( numbers, left, right, pivotIndex); QuickSort( numbers, left, pivotIndex); QuickSort( numbers, pivotIndex + 1, right); } return numbers; }
Static int[] QuickSort(int[] numbers, int left, int right) { if (right > left) { int pivotIndex = left + (right - left) / 2; pivotIndex = Partition( numbers, left, right, pivotIndex); QuickSort( numbers, left, pivotIndex - 1); QuickSort( numbers, pivotIndex, right); } return numbers; }
Static int[] QuickSort(int[] numbers, int left, int right) { if (right > left) { int pivotIndex = left + (right - left) / 2; pivotIndex = Partition( numbers, left, right, pivotIndex); QuickSort( numbers, left, pivotIndex + 1); QuickSort( numbers, pivotIndex + 1, right); } return numbers; }
Rate this question:
Quiz Review Timeline (Updated): Mar 21, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.