Info for guidewire documents and interview questions
What is a PID? How is it useful when troubleshooting a system?
Given a cube of size n*n*n (i.e made up of n^3 smaller cubes), find the number of smaller cubes on the surface. Extend this to k-dimension.
1. Consider the following code in our example assembly language: ; an example bit of assembly code ROOT: W FATHER FATHER: W SON1 W SON2 SON1: W NIL W NIL ; ---------------------- SON2: W GRANDSON W NIL GRANDSON: W NIL W NIL NIL = 0 Assemble this code carefully following the two pass model, and show the symbol table at the point marked by the dashed line during each pass.
can we extend a class having only one parameterised constructor.Suggest the process to do it.
What are the advantages of Server Controls over HTML/ASP Controls.
What is a programming language?
Is class is a abstract datatype in java?
what is the diff bw sql direct and jdbc update can't we do select and updating operation in sql direct
Which tag is used to break a line
how can i apply validation without using errorprovider in C# windows application
Given n red balls and m blue balls and some containers, how would you distribute those balls among the containers such that the probability of picking a red ball is maximized, assuming that the user randomly chooses a container and then randomly picks a ball from that.
Fortran cannot have value by reference True or False?