Saturday, March 22, 2008
Fresher job sites links
www.naukrihub.com/job-openings/corporate/software-development-jobs/hyderabad1.html
www.freshershome.com/jobs
www.thisismyindia.com/jobs/hyderabad.html
jobblogr.com/2008/02/28/bcom-mba-freshers-amazoncom-hyderabad
www.freshersdreams.com
www.yuvajobs.com/jobsview_all.asp
hyderabadjobs.thozhilmela.com/freshers-job
Tuesday, March 11, 2008
MOZILLA FIREFOX 3.0
The creator of the open-source browser said the new beta includes improvements to performance and memory usage, fixes for stability, and platform-specific enhancements. Some of the enhancements include a new download manager to make locating downloads easier; a full page zoom feature that allows you to zoom in and out of pages more easily; and integration for Vista, Mac OS X, and Linux that features platform-specific icons, buttons, and other user interface elements.
The current beta of Firefox 3.0, which is expected to get its final release later this year, is available for download now at Mozilla.com.
Firefox, which has been slowly chipping away at the lead held by Microsoft's Internet Explorer, recently announced that it had passed the 500 million download milestone.
Firefox accounted for more than 17 percent of all browsers used last month, while IE accounted for nearly 75 percent, according to research conducted by Net Applications, a Web measurement company. However, IE's share stood at more than 79 percent a year ago, and use has been dropping steadily over the past eight months, the company said.
Monday, February 25, 2008
Sunday, February 17, 2008
Thursday, February 7, 2008
ASP.NET certification course faq's
asp.net Certification Faqs
Query1
======
A project on which you are working calls for you
to store small bits of frequently changing information
about a page on the client. For this project,
security is not a worry.
In the above scenario, which type of state management do you use?
Choice 1 A cookie
Choice 2 A query string
Choice 3 A url
Choice 4 A javascript function
Choice 5 A hidden form field (Works even if cookies are disabled.etc.)
Ans: Choice 5
Query 2
======
What is the last stage of the Web forms lifecycle?
Choice 1 Event Handling
Choice 2 Page_Load
Choice 3 Validate
Choice 4 Page_Unload
Choice 5 Page_Init
Ans: Choice 4
Query 3
======
What does the IIS Connection Timeout setting control?
Choice 1 The number of minutes the user can remain inactive without being disconnected
Choice 2 The maximum time any process can take before it is abandoned
Choice 3 The number of seconds a user can remain inactive without being disconnected
Choice 4 The total time, in minutes, that a session stays alive
Choice 5 The maximum total time any user can stay connected to the Web server
Not Sure
Query 4
======
How does ASP.NET store SessionIDs by default?
Choice 1 In cache
Choice 2 In cookies
Choice 3 In a global variable
Choice 4 In URL strings
Choice 5 In a database
Ans: Choice 4 and 2 (in case cokkies are disabled)
Query 5
======
Which server setting must be set in order to be able
to store variables outside of a page in an application?
Choice 1 Enable application storage
Choice 2 Enable session state
Choice 3 Enable variable storage
Choice 4 Enable server-side variables
Choice 5 Enable Web forms
Question not clear as to store variables Choice 1, Choice 2 can be used.
Query 6
======
Sample Code :<%@ Page Language="vb" Inherits="support" Src="demo.vb" %>
For the code referenced above to work correctly in your
application, in which one of the following directories
does the compiled DLL from the
file demo.vb need to be?
Choice 1 The directory named support
Choice 2 The same directory as the .aspx file calling it
Choice 3 The Web root for the application
Choice 4 /bin directory of the application
Choice 5 The Web root for the site
Ans: Choice 4
Query 7
=======
An application using cookie authentication was working fine
on another server. When moved to a new server, cookie authentication is not
working correctly.
Which one of the following is the likely explanation of the above problem?
Choice 1 The new IIS server is not configured to allow anonymous access.
Choice 2 SSL is not properly configured.
Choice 3 The users are not correctly entering their passwords.
Choice 4 Passport authentication is not correctly configured.
Choice 5 The IP address of the new server does not match the prior server IP address.
Not sure
Query 8
======
When using code behind pages, what access modifiers must the class
and functions in an ASP.NET application have in order for them to be
accessible in a .aspx page?
Choice 1 Public class and public function
Choice 2 Protected class and private function
Choice 3 Public class and private function
Choice 4 Private class and internal function
Choice 5 Private class and public function
Ans:Public or Protected irrespective of it is function or
variable and there are no Private classes(atleast in C3)
Query 9
======
Scenario :You have developed a server control, but your boss comes back
and asks you to develop a user interface for it.
From which class do you derive your custom server
control in the above scenario?
Choice 1 System.Web.UI.Control.WebControl
Choice 2 System.Web.UI.WebControls.WebControl
Choice 3 System.Web.UI.Control.Interface
Choice 4 System.Web.UI.Interface.Control
Choice 5 System.Web.UI.Control
Ans:Question not clear as a Server Control has to
derive either from WebControl/Control
Query 10
======
During what stage of a Web form's lifecycle does the OnDataBinding Event fire, as shown above?
Choice 1 Load
Choice 2 Init
Choice 3 SaveState
Choice 4 Render
Choice 5 PreRender
Ans:Not sure, but I guess it should be before SaveState.
Query 11
======
Sample Code : http://server.com/(nav45m672ren60vizat)/page.aspx
In the URL listed above, what does the string (nav45m672ren60vizat) represent?
Choice 1 ApplicationID
Choice 2 SessionID
Choice 3 CookieID
Choice 4 ConnectionStringID
Choice 5 DatabaseID
Ans:Depends on how the application is designed. It could be application id.
Query 12
======
Error Message : Parser Error Message:
It is an error to use a section registered as
allowDefinition='MachineToApplication' beyond application level. This error can be caused by a
virtual directory not being configured as an application in IIS.
The error message above occurs when attempting to enter an application. How do you fix the problem?
Choice 1 Create a global.asax file in the root directory of the intended application.
Choice 2 Create a global.asax file in the root directory of the Web Site.
Choice 3 Include a web.config file in the root directory of the intended application.
Choice 4 Change allowDefinition='MachineToApplication' to allowDefinition='SiteToApplication' in the web.config file.
Choice 5 Create an application from the directory in the Internet Services Manager.
Ans:Choice 5
Query 13
========
What is the result of enabling tracing in the constructor of a component class?
Choice 1 Tracing in the component will only be enabled for specific pages.
Choice 2 Pages that access the component will have tracing enabled only if the page has it enabled.
Choice 3 Pages that access the method of the component will have tracing enabled only if the page has it enabled.
Choice 4 All pages that access the component will have tracing enabled even if the page does not have it enabled.
Choice 5 Only the pages that access the method of the component will
have tracing enabled even if the page does not have it enabled.
Ans:Not Sure
Query 14
========
Code <%@ Page Language="vb" Inherits="support" Src="demo.vb" %>
For the code referenced above to work correctly in your application,
in which one of the following directories does the compiled DLL from the
file demo.vb need to be?
Choice 1 The same directory as the .aspx file calling it
Choice 2 /bin directory of the application
Choice 3 The Web root for the application
Choice 4 The Web root for the site
Choice 5 The directory named support
Ans: Choice 2
Query 15
========
Problem
You have created a Web server control on a page but the attached
code never seems to execute. You have already checked and ensured
that the runat="server" attribute has been correctly set for the control.
Referring to the problem above, which one of the following is the likely problem?
Choice 1 You failed to properly call the server-side include (SSI).
Choice 2 You failed to instantiate the server.control class.
Choice 3 You failed to set the server="execute" attribute for the form.
Choice 4 You failed to set the runat="server" attribute for the form.
Choice 5 You failed to set the server="execute" attribute for the control.
Ans: Can you rephrase the question?
C#.Net
Query 16
======
Sample Code SqlCommand cmd = new SqlCommand();
using (cmd) {...}
Referring to the above, what method is implicitly called at the end of the "using" statement?
Choice 1 Cancel
Choice 2 Finalize
Choice 3 Destructor
Choice 4 Close
Choice 5 Dispose
Ans: Choice 5