Java
Networking
C#
AngularJS
Math/ Calculus
100
what does this output? String name = colton; name = name.SubString(1,2); System.Output(name);
What is 'o'
100
What is port 80?
What port is used when the HTTP client initiates TCP connection to server?
100
What is frmMain?
What is the name you should give your form when it is first created in a Windows Application?
100
AngularJS expressions are written using?
double braces like {{ expression}} or ng-bind="expression".
100
The answer to cos(0) is
What is 1?
200
What is 3 Different Traversals of a Binary Tree?
1. Preorder 2. Inorder 3. Post Order
200
What is an acknowledgement request?
What does ACK mean?
200
Model View Controller or MVC as it is popularly called, is a software design pattern for developing web applications. A Model View Controller pattern is made up of the following three parts: Model − It is the lowest level of the pattern responsible for maintaining data. View − It is responsible for displaying all or a portion of the data to the user. Controller − It is a software Code that controls the interactions between the Model and View.
What is MVC?
200
How would you make a call to a web API in your project with the name, personListJson.jsp ?
$http.get('personListJson.jsp').
200
The answer to this expression is a boolean value -[True || False] & [[False & True] || [True & True]]
What is False?
300
What is the origin name of the Java programming language?
What is OAK
300
What is a buffer?
What is store (data) in a buffer while it is being processed or transferred.
300
What is function overloading and operator overloading
C# provides two techniques to implement static polymorphism. What are they?
300
What is $rootScope and how does it relate to $scope?
$rootScope is the parent object of all $scope Angular objects created in a web page.
300
The determinant of [-1 3 5 0 4 4 9 3 0] is a negative value.
What is -60
400
Object based programming languages follow all the features of OOPs except Inheritance. Examples of object based programming languages are JavaScript, VBScript etc.
What is difference between object oriented programming language and object based programming language?
400
What is it resends Packets 2-10
For a TCP connection, a sender sends 10 packets and packet 2 is dropped what happens if the sender uses, Go Back N?
400
What is the ternary operator
Expressed as "?:", this operator can be a replacement for a simple if/else statement.
400
What directive do you use to display data in a table?
What is the ng-repeat directive. Example:
{{ x.Name }} {{ x.Country }}
400
For her work, the publishing company is giving her a choice of a one-time payment of $13,000 or $2,000 plus 10% royalties per copy sold. If her royalty rate results in a royalty of $5.50 per study guide sold, how many study guides need to be sold for the total income received by Kali to be the same from either choice?
What is 2000?
500
Given an array of ints, return true if 6 appears as either the first or last element in the array. The array will be length 1 or more. firstLast6([1, 2, 6]) → true firstLast6([6, 1, 2, 3]) → true firstLast6([13, 6, 1, 2, 3]) → false public boolean firstLast6(int[] nums) {}
Given an array of ints, return true if 6 appears as either the first or last element in the array. The array will be length 1 or more. firstLast6([1, 2, 6]) → true firstLast6([6, 1, 2, 3]) → true firstLast6([13, 6, 1, 2, 3]) → false public boolean firstLast6(int[] nums) {} What is: public boolean firstLast6(int[] nums) { if(nums[0] == 6 || nums[nums.length - 1] == 6) return true; else return false; }
500
What is "the sender waits for an ACK after sending each packet before sending the next packet"
Describe the operation of stop and wait
500
The default scoping keyword for new class definitions created in code files.
What is private
500
What is the $location service?
The $location service has methods which return information about the location of the current web page. Like the $location service, it seems like you could use objects that are already in the DOM, like the window.location object, and you could, but it would have some limitations, at least for your AngularJS application. EX: var app = angular.module('myApp', []); app.controller('customersCtrl', function($scope, $location) { $scope.myUrl = $location.absUrl(); });
500
The answer to this integral tan^3(x) * sec^5(x) dx
What is 1/7sec^7(x) - 1/5sec^5(x) + C
M
e
n
u