Job Roles

Q:

Explain how garbage collection manages the reclamation of unused memory?

Answer

The garbage collector assumes that all objects in the managed heap are garbage. It starts walking the roots and builds a graph of all objects reachable from the roots recursively. It stops when it attempts to add an object to the graph that it previously added. The graph contains the set of all objects that are reachable from the application's roots. Any object/s that is not in the graph is not accessible by the application, and is considered garbage. Collection only occurs when the heap is full. In such a case, each and every garbage object calls the Finalize method and reclaims the unused memory

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

0 1713
Q:

The present of Rs.169 due in 2years at 4% per annum compound interest is

A) Rs.150.50 B) Rs.154.75
C) Rs.156.25 D) Rs.158
 
Answer & Explanation Answer: C) Rs.156.25

Explanation:

Present worth = 169/(1+4/100)^n = 156.25

Report Error

View Answer Report Error Discuss

Filed Under: Simple Interest
Exam Prep: GRE
Job Role: Analyst

4 5296
Q:

What is anonymous FTP and why would you use it

Answer

Anonymous FTP enables users to connect to a host without using a valid login and password. Usually, anonymous FTP uses a login called anonymous or guest, with the password usually requesting the user's ID for tracking purposes only. Anonymous FTP is used to enable a large number of users to access files on the host without having to go to the trouble of setting up logins for them all. Anonymous FTP systems usually have strict controls over the areas an anonymous user can access

Report Error

View answer Workspace Report Error Discuss

1 2838
Q:

Explain how a web application works.

Answer

A web application resides in the server and serves the client’s requests over internet. The client access the web page using browser from his machine. When a client makes a request, it receives the result in the form of HTML which are interpreted and displayed by the browser.


A web application on the server side runs under the management of Microsoft Internet Information Services (IIS). IIS passes the request received from client to the application. The application returns the requested result in the form of HTML to IIS, which in turn, sends the result to the client.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

0 2078
Q:

What are the ways of preserving data on a Web Form in ASP.NET?

Answer

These objects provide two levels of scope:


Application State


Data stored in the application object can be shared by all the sessions of the application.


Application object stores data in the key value pair.

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

0 2237
Q:

Define Virtual folder.?

Answer

It is the folder that contains web applications. The folder that has been published as virtual folder by IIS can only contain web applications

Report Error

View answer Workspace Report Error Discuss

Subject: .NET
Job Role: Software Architect

0 2131
Q:

At what rate of compound interest per annum will a sum of rs.1200 becomes rs.1348.32 in 2 years

A) 66%% B) 6.5%
C) 7% D) 7.5%
 
Answer & Explanation Answer: A) 66%%

Explanation:

rate=r%

1200 (1+r/100)^2=1348.32

r=6%

Report Error

View Answer Report Error Discuss

Filed Under: Simple Interest
Exam Prep: GRE
Job Role: Analyst

42 31270
Q:

Define void pointer using C++.?

Answer

In C++, void represents the absence of type, so void pointers are pointers that point to a value that has no type. The void pointers can point to any data type.


You can declare void pointer as follows:


void *p;

Report Error

View answer Workspace Report Error Discuss

Subject: C++
Job Role: Software Architect

0 3435