Skip to main content

Posts

Net banking

Net banking If you are tried to stand in stand in a ling queue waiting for a passbook to be updates or wait for the next day for a demand draft to the prepared. Internet technology has evaded the portals of our banking institutions and everything is click away innovations like tale banking and automated teller machines (ATM) have considerably put customers at ease in the recent past but with net banking the customer will be able to transact with the help of mouse and visit to the neighborhood bank will become a thing of the past. Tough a modest start has been given in India; net banking has still a long way to go, ICICI Bank, HDFC Bank. Citibank have endeavored to make real time banking a reality before this century closes. An average customer will be interested to know whatever firstly, net banking offers him/her a wide range of services, secondly show a history of transactions made, thirdly transfer funds between accounts and most importantly whether the services offered are well

DATA FLOW DIAGRAM(DFD)

DATA FLOW DIAGRAM D.F.D. (Data Flow Diagram) is a set of technique and graphical tools that allow the programmer to develop a kind of software specification that is easily understood by the user. It shows a sequence of functional transformations that convert system input to required output. It represents how a data flows through a system and how output is derived from the input through a sequence of function formation. They describe the end-to-end processing in the form of a flow chart from top to bottom. The Data Flow Diagram shows the use of data in the system pictorially structured analysis making use of some standard conventions. A full description of a system actually consists of a set of DFDs. Different levels of the system can be expressed using different DFD’s. The notations that are used by out DFD are described in brief below: 1. Rounded Rectangle : It represents functions, which transform input to output. The name inside the rectangle indicates its functio

3BHK ,starting just Rs. 18 Lakhs near Chandigarh

3BHK ,starting  just Rs. 18 Lakhs near Chandigarh 3BHK starting @ just Rs. 18 Lakhs near Chandigarh.3 Bedrooms, Drawing Dining Room, Modular Kitchen, 2 Bathrooms, 2 Balconies, Car Parking, Lush Green Park, Kids Playing Area, Secured entrance of complex etc. Call: 9216-333-666 The key attractions of our project are: - Punjab Govt. Approved Project - Situated on NH-21, Chandigarh-Ropar Road, Kharar - Modern Design with Superior Architecture - Options available in 1BHK / 2BHK / 3BHK - The project offers Budget Class Housing - Good Quality Construction & Low Price - Surrounded with a lot of Educational Institutions - Loan Facility available from Leading Banks Call: 9216-333-666, 9216-44-22-33 Email: agbperfecthomes@gmail.com

List of Open University In India

1. Indira Gandhi National Open University - DELHI 2. Dr. B.R. Ambedkar Open University - Hyderabad 3. Kota Open University - Rajasthan 4. Nalanda Open University - Patna 5. Madhya Pradesh Bhoj University - Bhopal, Madhya Pradesh 6.Dr.Babasaheb Ambedkar Open University - Ahmedabad, Gujarat 7. Yashwantrao Chavan Maharashtra Open University - Nashik ,Maharashtra 8.Netaji Subhas Open University - Kolkata ,West Bengal 9. U.P.Rajarshi Tandon Open University - Allahabad 10. Karnataka State Open University - Karnataka

Function for initializing the matrices 'tt' and 'w' for Gaussian Integration

% Function for initializing the matrices 'tt' and 'w' for Gaussian % Integration; with n = 5, 10, 20, 24, 32, 40 or 48 % SAMPLE CODE FOR IMPLEMENTING DOUBLE INTEGRATION % gaussian_points = 10 ; % Define the number of points to be used % % a = 1; % Lower integration limit for y % b = 2; % Upper integration limit for y % % c = 3; % Lower integration limit for x % d = 4; % Upper integration limit for x % % sum = 0; % % for ii = 1:gaussian_points % % yy = ((d - c)*tt(ii) + d + c)/2; % % inner_sum = 0; % % for jj = 1:gaussian_points % xx = ((b - a)*tt(jj) + b + a)/2; % Fm1 = xx + yy*yy; % I N T E G R A N D % inner_sum = inner_sum + 0.5*(b - a)*Fm1*w(jj); % end % % sum = sum + 0.5*(d - c)*inner_sum*w(ii); % % end % ------------------------------------------------------------------------- function [tt w] = func_gaussian_integration_weights (gaussian_points) switch (gaussian_points)

ASP.NET 2.0,3.5 Interview Questions

ASP.NET 2.0 What improvements are provided in ASP.NET 2.0? How does ASP.NET 2.0 eliminate tedious coding? How do we encrypt web.config files in ASP.NET 2.0 ? With the above technique can you encrypt everything in the web.config file? In .NET 1.X how was the encryption implemented for config files? Can you explain membership and role providers in ASP.Net 2.0? What kind of security web controls are introduced in ASP.NET 2.0? Can you explain master pages concept in ASP.NET? what is the concept of Web parts? What are the different components of the web part framework? What are partial classes in ASP.NET ? Can you explain generics in .NET ? Can you explain the concept of generic collection? How do you send a email using ASP.NET ? How did you deployment and setup in ASP.NET ? .NET 3.5 Define LINQ ? We already have common data access model what is special about LINQ? How can you make entity classes from the table itself ? How can we transform LINQ to objects ? How to tr

Java Interview Questions of JNI Architecture XML JDBC etc

JNI What is Native Interface in JAVA? Can you say in brief steps required to implement Native interfaces in Java? Can JNI be used for VB6, C# or VB.NET directly? What are JNI functions and pointers? How does the garbage collector know JNI objects are no more used? Twist: - What are the different types of references JNI supports? Twist: - How to do you delete global objects? how does the native language C or C++ understand data types in JAVA? Can you explain exception handling in JNI? What are limitations for “JNIEnv” pointer in multi-threading scenarios? What are the advantages and disadvantages of using “JNI”? Architecture What are design patterns ? What is the difference between Factory and Abstract Factory Patterns? What is MVC pattern? Twist: - How can you implement MVC pattern in Servlets and JSP? How can we implement singleton pattern in JAVA? How do you implement prototype pattern in JAVA? Twist: - How to implement cloning in JAVA? What is shallow copy and