1.) What is asp.net life cycle ?
Life Cycle Events
PreInit
The properties like IsPostBack have been set at this time.
This event will be used when we want to:
Some controls like:
2.) How the request is handled by IIS ?
We give an URL to an aspx page in the browser address bar and press enter. What happens next? We get the response in terms of rendered HTML but how?
The basic and main difference between cookie and session is that cookies are stored in the user's browser but sessions can't store in user's browser. This specifies which is best used for.
• A cookie can keep all the information in the client's browser until deleted. If a person has a login and password, this can be set as a cookie in their browser so they do not have to re-login to your website every time they visit. You can store almost anything in a browser cookie.
• Sessions are not reliant on the user allowing a cookie. They work like a token in the browser which allowing access and passing information while the user has opened his browser. The problem in sessions is when you close the browser the session will automatically lost. So, if you had a site requiring a login, this couldn't be saved as a session but it can be saved as a cookie, and the user has to re-login every time they visit.
cookies are nothing but a small piece of information on the client machine. before we create a cookies we should check whether the cookies are allowed at the browser side. They are limited in a size 4k.(they are 2 types of cookies peristant cookie , and session cookies)
Sessions cookies are stored in a server memory during the client browser session.When the browser is closed the session cookies are lost.
4.) Advantages and disadvantages of Session?
Following are the basic advantages and disadvantages of using session. I have describe in details with each type of session at later point of time.
using System;
public class Person
{
protected string ssn = "444-55-6666";
protected string name = "John L. Malgraine";
public virtual void GetInfo()
{
Console.WriteLine("Name: {0}", name);
Console.WriteLine("SSN: {0}", ssn);
}
}
class Employee: Person
{
public string id = "ABC567EFG";
public override void GetInfo()
{
// Calling the base class GetInfo method:
base.GetInfo();
Console.WriteLine("Employee ID: {0}", id);
}
}
class TestClass {
public static void Main()
{
Employee E = new Employee();
E.GetInfo();
}
}
query string is used to transfer data from 1 page to anothe but this is not safe s it shows in url what data we r sending
pen any site and see url after question mark tht is url
Cookies: - Cookies are little pieces of information that a server stores on a browser. They are of two types
1. Temporary cookie
2. Persistent cookie
Temporary cookie: - They are also known as session cookies. These are volatile in nature. When the browser is shutdown they are erased.
Persistent cookie:- These may be called as permanent cookies. These are especially saved in files. It may remain for a month or year.
After the Init() and before the Page_Load().
ViewState is stored in a hidden field on the page at client side. ViewState is transported to the client and back to the server, and is not stored on the server or any other external source.
47). What are the different Session state management options available in ASP.NET?
Out-of-Process Session state management stores data in an external server. The external server may be either a SQL Server or a State Server. All objects stored in session are required to be serializable for Out-of-Process state management.
Persistent Cookie – Resides on a user’s machine for a period specified for its expiry, such as 10 days, one month, and never.
Life Cycle Events
PreInit
The properties like IsPostBack have been set at this time.
This event will be used when we want to:
- Set master page dynamically.
- Set theme dynamically.
- Read or set profile property values.
- This event is also preferred if want to create any dynamic controls.
- Raised after all the controls have been initialized with their default values and any skin settings have been applied.
- Fired for individual controls first and then for page.
- Fires only if IsPostBack is true.
- Values stored in HiddenField with id as _ViewState decoded and stored into corresponding controls.
Some controls like:
- Fires only if IsPostBack is true.
- Some controls like Textbox are implemented from IPostBackDataHandler and this fires only for such controls.
- In this event page processes postback data included in the request object pass it to the respective controls.
- Used only if want to inject logic before actual page load starts.
- Used normally to perform tasks which are common to all requests, such as setting up a database query.
- This event is fired when IsPostBack is true.
- Use these events to handle specific control events, such as a Button control's Click event or a TextBox control's TextChanged event.
- Use the event to make final changes to the contents of the page or its controls before the values are stored into the viewstate and the rendering stage begins.
- Mainly used when we want to inject custom JavaScript logic.
- All the control values that support viewstate are encoded and stored into the viewstate.
- We can add custom HTML to the output if we want here.
- Fired for individual controls first and then for page.
2.) How the request is handled by IIS ?
We give an URL to an aspx page in the browser address bar and press enter. What happens next? We get the response in terms of rendered HTML but how?
- We
are requesting something from the browser, which means indirectly we
are requesting something from the Web Server, that means IIS. IIS, based
on the file extension, decides which ISAPI extension can serve the
request.
And in case of ASP.Net (.aspx) it will be aspnet_isapi_dll so the request is passed to it for processing.
- When the first request comes to the website,
an application domain is created by the ApplicationManager class where exactly the website runs, and which creates an isolation between 2 web applications.
Within the application domain an instance of the HostingEnvironment class is created which provides access information about the application such as the name of the folder where the application is stored.
- Next ASP.Net creates core objects like HttpContext, HttpRequest,HttpResponse.
- Finally the application starts by creating an instance of the HttpApplication Class (which can be reused for multiple requests to maximize performance).
The basic and main difference between cookie and session is that cookies are stored in the user's browser but sessions can't store in user's browser. This specifies which is best used for.
• A cookie can keep all the information in the client's browser until deleted. If a person has a login and password, this can be set as a cookie in their browser so they do not have to re-login to your website every time they visit. You can store almost anything in a browser cookie.
• Sessions are not reliant on the user allowing a cookie. They work like a token in the browser which allowing access and passing information while the user has opened his browser. The problem in sessions is when you close the browser the session will automatically lost. So, if you had a site requiring a login, this couldn't be saved as a session but it can be saved as a cookie, and the user has to re-login every time they visit.
cookies are nothing but a small piece of information on the client machine. before we create a cookies we should check whether the cookies are allowed at the browser side. They are limited in a size 4k.(they are 2 types of cookies peristant cookie , and session cookies)
Sessions cookies are stored in a server memory during the client browser session.When the browser is closed the session cookies are lost.
4.) Advantages and disadvantages of Session?
Following are the basic advantages and disadvantages of using session. I have describe in details with each type of session at later point of time.
Advantages:
- It helps maintain user state and data all over the application.
- It is easy to implement and we can store any kind of object.
- Stores client data separately.
- Session is secure and transparent from the user.
Disadvantages:
- Performance overhead in case of large volumes of data/user, because session data is stored in server memory.
- Overhead involved in serializing and de-serializing session data, because in the case of
StateServer
andSQLServer
session modes, we need to serialize the objects before storing them.
5). What is state management?
Ans: State management is the process by which you maintain state and page information over multiple requests for the same or different pages.
6). Http is stateless, What does this mean?
Ans: Stateless protocol is a communications protocol that treats each request as an independent transaction that is unrelated to any previous request so that the communication consists of independent pairs of requests and responses.
7). What is Session?
Ans: We know that Http is stateless, means when we open a webpage and fill some information and then move to next page then the data which we have entered will lost.
It happed do to Http protocol stateless nature. So here session come into existence, Session provide us the way of storing data in server memory. So you can store your page data into server
memory and retrieve it back during page postbacks.
8). What are the Advantage and disadvantage of Session?
Ans: Advantages:
Session provide us the way of maintain user state/data.
It is very easy to implement.
One big advantage of session is that we can store any kind of object in it. :eg, datatabe, dataset.. etc
By using session we don't need to worry about data collesp, because it store every client data separately.
Session is secure and transparent from the user.
Disadvantages:
Performance overhead in case of large volumes of data/user, because session data is stored in server memory.
Overhead involved in serializing and de-serializing session data, because in the case of StateServer and SQLServer session modes, we need to serialize the objects before storing them.
9). What is Session ID in Asp.net?
Ans: Asp.Net use 120 bit identifier to track each session. This is secure enough and can't be reverse engineered. When client communicate with server, only session id is transmitted, between them. When client request for data, ASP.NET looks on to session ID and retrieves corresponding data.
10). By default where the sessions ID's are stored ?
Ans: By default, the unique identifier for a session is stored in a non-expiring session cookie in the browser. You can specify that session identifiers not be stored in a cookie by setting the cookieless attribute to true in the sessionState configuration element.
We can also configure our application to store it in the url by specifying a "cookieless" session
The ASP Session cookie has this format:-
ASPSESSIONIDACSSDCCC=APHELKLDMNKNIOJONJACDHFN
11). Where does session stored if cookie is disabled on client’s machine?
Ans: If you want to disable the use of cookies in your ASP.NET application and still make use of session state, you can configure your application to store the session identifier in the URL instead of a cookie by setting the cookieless attribute of the sessionState configuration element to true, or to UseUri, in the Web.config file for your application.
The following code example shows a Web.config file that configures session state to use cookieless session identifiers.
12). Can you describe all the property set in web.config under session state?
Ans:
Mode: The mode setting supports three options: inproc, sqlserver, and
stateserver. As stated earlier, ASP.NET supports two modes: in process
and out of process. There are also two options for out-of-process state
management: memory based (stateserver), and SQL Server based
(sqlserver). We'll discuss implementing these options shortly.
Cookieless: The cookieless option for ASP.NET is configured with this simple Boolean setting.
Timeout: This option controls the length of time a session is considered valid. The session timeout is a sliding value; on each request the timeout period is set to the current time plus the timeout value
Sqlconnectionstring: The sqlconnectionstring identifies the database connection string that names the database used for mode sqlserver.
Server: In the out-of-process mode stateserver, it names the server that is running the required Windows NT service: ASPState.
Port: The port setting, which accompanies the server setting, identifies the port number that corresponds to the server setting for mode stateserver.
13). What are Session Events?
Ans: There are two types of session events available in ASP.NET:
Session_Start
Session_End
You can handle both these events in the global.asax file of your web application. When a new session initiates, the session_start event is raised, and the Session_End event raised when a session is abandoned or expires.
14). How you can disable session?
Ans: If we set session Mode="off" in web.config, session will be disabled in the application. For this, we need to configure web.config the following way:
Ans: State management is the process by which you maintain state and page information over multiple requests for the same or different pages.
6). Http is stateless, What does this mean?
Ans: Stateless protocol is a communications protocol that treats each request as an independent transaction that is unrelated to any previous request so that the communication consists of independent pairs of requests and responses.
7). What is Session?
Ans: We know that Http is stateless, means when we open a webpage and fill some information and then move to next page then the data which we have entered will lost.
It happed do to Http protocol stateless nature. So here session come into existence, Session provide us the way of storing data in server memory. So you can store your page data into server
memory and retrieve it back during page postbacks.
8). What are the Advantage and disadvantage of Session?
Ans: Advantages:
Session provide us the way of maintain user state/data.
It is very easy to implement.
One big advantage of session is that we can store any kind of object in it. :eg, datatabe, dataset.. etc
By using session we don't need to worry about data collesp, because it store every client data separately.
Session is secure and transparent from the user.
Disadvantages:
Performance overhead in case of large volumes of data/user, because session data is stored in server memory.
Overhead involved in serializing and de-serializing session data, because in the case of StateServer and SQLServer session modes, we need to serialize the objects before storing them.
9). What is Session ID in Asp.net?
Ans: Asp.Net use 120 bit identifier to track each session. This is secure enough and can't be reverse engineered. When client communicate with server, only session id is transmitted, between them. When client request for data, ASP.NET looks on to session ID and retrieves corresponding data.
10). By default where the sessions ID's are stored ?
Ans: By default, the unique identifier for a session is stored in a non-expiring session cookie in the browser. You can specify that session identifiers not be stored in a cookie by setting the cookieless attribute to true in the sessionState configuration element.
We can also configure our application to store it in the url by specifying a "cookieless" session
The ASP Session cookie has this format:-
ASPSESSIONIDACSSDCCC=APHELKLDMNKNIOJONJACDHFN
11). Where does session stored if cookie is disabled on client’s machine?
Ans: If you want to disable the use of cookies in your ASP.NET application and still make use of session state, you can configure your application to store the session identifier in the URL instead of a cookie by setting the cookieless attribute of the sessionState configuration element to true, or to UseUri, in the Web.config file for your application.
The following code example shows a Web.config file that configures session state to use cookieless session identifiers.
Code:
<configuration>
<system.web>
<sessionState
cookieless="true"
regenerateExpiredSessionId="true"
timeout="30" />
</system.web>
</configuration>
12). Can you describe all the property set in web.config under session state?
Ans:
Code:
<configuration>
<sessionstate
mode="inproc"
cookieless="false"
timeout="20"
sqlconnectionstring="data source=127.0.0.1;user id=<user id>;password=<password>"
server="127.0.0.1"
port="42424"
/>
</configuration>
Cookieless: The cookieless option for ASP.NET is configured with this simple Boolean setting.
Timeout: This option controls the length of time a session is considered valid. The session timeout is a sliding value; on each request the timeout period is set to the current time plus the timeout value
Sqlconnectionstring: The sqlconnectionstring identifies the database connection string that names the database used for mode sqlserver.
Server: In the out-of-process mode stateserver, it names the server that is running the required Windows NT service: ASPState.
Port: The port setting, which accompanies the server setting, identifies the port number that corresponds to the server setting for mode stateserver.
13). What are Session Events?
Ans: There are two types of session events available in ASP.NET:
Session_Start
Session_End
You can handle both these events in the global.asax file of your web application. When a new session initiates, the session_start event is raised, and the Session_End event raised when a session is abandoned or expires.
14). How you can disable session?
Ans: If we set session Mode="off" in web.config, session will be disabled in the application. For this, we need to configure web.config the following way:
Code:
<configuration>
<sessionstate Mode="off"/>
</configuration>
15). If I have more than one version of one
assemblies, then how will I use old version (how/where to specify
version number?) in my application?
Ans.The version number is stored in the following format: …. The assembly manifest can then contain a reference to which version number we want to use.
16). How do you create threading in.NET? What is the namespace for that?
Ans.
System.Threading;
//create new thread using the thread class’s constructor
Thread myThread = new Thread(new ThreadStart (someFunction));
17). What do you mean by Serialize and MarshalByRef?
Serialization is the act of saving the state of an object so that it can be recreated (i.e deserialized) at a later date.
The MarshalByRef class is part of the System.Runtime.Remoting namespace and enables us to access and use objects that reside in different application
domains. It is the base class for objects that need to communicate across application domains. MarshalByRef objects are accessed directly within their own
application domain by using a proxy to communicate. With MarshalByValue the a copy of the entire object is passed across the application domain
18). What is the difference between Array and LinkedList?
An array is a collection of the same type. The size of the array is fixed in its declaration.
A linked list is similar to an array but it doesn’t have a limited size.
19). What is Asynchronous call and how it can be implemented using delegates?
A synchronous call will wait for a method to complete before program flow is resumed. With an asynchronous call the program flow continues whilst the method executes.
//create object
SomeFunction objFunc = new SomeFunction();
//create delegate
SomeDelegate objDel = new SomeDelegate(objFunc.FunctionA);
//invoke the method asynchronously (use interface IAsyncResult)
IAsyncResult asynchCall = SomeDelegate.Invoke();
20). How to create events for a control? What is custom events? How to create it?
Ans.
An event is a mechanism used in a class that can be used to provide a notification when something interesting happens. (typical evens in a windows application
include: change text in textbox, double click or click a button, select an item in dropdown box).
A custom event is an event created by the user that other developers can use. For example assuming that we have a CashTransaction class and we have a bank
balance property in that class. We may want to set-up an event that provides a notification when the bank balance drops below a certain amount. In order to
produce an event the process would be roughly as follows:
Create the class for the event derived from EventArgs.
Create a delegate with a return type of void.
Create a class containing the method that will activate the event.
Create a class with methods to handle the event.
21). If you want to write your own dot net language, what steps you will you take care?
We will need to ensure that the high level code is compiled to MSIL (Microsoft intermediate language) so that it can be interpreted by the CLR.
22). Describe the diffeerence between inline and code behind - which is best in a loosely coupled solution?
The term ‘code behind’ refers to application code that is not embedded within the ASPX page and is separated out into a separate file which is then referenced
from the ASPX page. Inline code is the traditional ASP architectural model where business logic code was embedded within the ASP page. Separating the business
logic code from the presentation layer offers several advantages:
1) It allows graphic designers and web developers to work on the presentation layer whilst the application developers concentrate on the business logic.
2) The codebehind file is compiled as a single dll increasing the efficiency of the application,
3) The codebehind model offers a true OO development platform,
4) It speeds up development time as it allows developers to fully maximise the features of the .NET framework such as Cahing, ViewState, Session, Smart Navigation etc.
5) Code is much easier to maintain and susceptible for change.
6) The compiler and VS.NET provides much better support for error checking, intellisense and debugging when using the code behind model.
23). How dot net compiled code will become platform independent?
The raison d’etre for .NET was to cater for multiples languages on a single windows platform whereas the aim of Java was to be a single language on multiple
platforms. The only way that .NET can be platform independent is if there is a version of the .NET framework installed on the target machine.
24). Without modifying source code if we compile again, will it be generated MSIL again?
Ans.No.
25). How does you handle this COM components developed in other programming languages in.NET?
Ans.
use TlbImp.exe to import the COM types into your .NET project. If no type library for the COM component then use System.Runtime.InteropServices
use RegAsm.exe to call a .NET developed component in a COM application.
26). How CCW (Com Callable Wrapper) and RCW (Runtime Callable Wrappers) works?
CCW: When a COM application calls a NET object the CLR creates the CCW as a proxy since the COM application is unable to directly access the .NET object.
RCW: When a .NET application calls a COM object the CLR creates the RCW as a proxy since the .NET application is unable to directly access the .COM object.
27). What are the new thee features of COM+ services, which are not there in COM (MTS)?
Role based security.
Neutral apartment threading.
New environment called context which defines the execution environment
28). What are the differences between COM architecture and.NET architecture?
.Net architecture has superseded the old COM architecture providing a flexible rapid application development environment which can be used to create windows,
web and console applications and web services. .NET provides a powerful development environment that can be used to create objects in any .NET compliant language.
.NET addresses the previous problems of dll hell with COM by providing strongly named assemblies and side-by-side execution where two assemblies with the same name can run on the same box.
29). Can we copy a COM dll to GAC folder?
Ans.
No. It only stores .NET assemblies.
30). What is Shared and Repeatable Inheritance?
Shared Inheritance-: Shared Inheritance-: ITt is multiple times using same class. The mechanism of deriving a new class from an existing class is called inheritance. Shared inheritance introduces a new opportunity of ambiguity and additional implementation complexity. Assume D inherits from B and C, both of which inherits from A. Here A in shared. Single copy made from both derived classes is called shared inheritance.
31). Can you explain what inheritance is and an example of when you might use it?
Ans.
Inheritance is a fundamental feature of any OO language. It allows us to inherit the members and attributes from a base class to a new derived class. This
leads to increased code reusability and also makes applications easier to develop, maintain and extend as the new derived class can contain new features not
available in the base class whilst at the same time preserving the attributes inherited from the base class.
32). How can you write a class to restrict that only one object of this class can be created (Singleton class)?
Ans.
Use the singleton design pattern.
Ans.The version number is stored in the following format: …. The assembly manifest can then contain a reference to which version number we want to use.
16). How do you create threading in.NET? What is the namespace for that?
Ans.
System.Threading;
//create new thread using the thread class’s constructor
Thread myThread = new Thread(new ThreadStart (someFunction));
17). What do you mean by Serialize and MarshalByRef?
Serialization is the act of saving the state of an object so that it can be recreated (i.e deserialized) at a later date.
The MarshalByRef class is part of the System.Runtime.Remoting namespace and enables us to access and use objects that reside in different application
domains. It is the base class for objects that need to communicate across application domains. MarshalByRef objects are accessed directly within their own
application domain by using a proxy to communicate. With MarshalByValue the a copy of the entire object is passed across the application domain
18). What is the difference between Array and LinkedList?
An array is a collection of the same type. The size of the array is fixed in its declaration.
A linked list is similar to an array but it doesn’t have a limited size.
19). What is Asynchronous call and how it can be implemented using delegates?
A synchronous call will wait for a method to complete before program flow is resumed. With an asynchronous call the program flow continues whilst the method executes.
//create object
SomeFunction objFunc = new SomeFunction();
//create delegate
SomeDelegate objDel = new SomeDelegate(objFunc.FunctionA);
//invoke the method asynchronously (use interface IAsyncResult)
IAsyncResult asynchCall = SomeDelegate.Invoke();
20). How to create events for a control? What is custom events? How to create it?
Ans.
An event is a mechanism used in a class that can be used to provide a notification when something interesting happens. (typical evens in a windows application
include: change text in textbox, double click or click a button, select an item in dropdown box).
A custom event is an event created by the user that other developers can use. For example assuming that we have a CashTransaction class and we have a bank
balance property in that class. We may want to set-up an event that provides a notification when the bank balance drops below a certain amount. In order to
produce an event the process would be roughly as follows:
Create the class for the event derived from EventArgs.
Create a delegate with a return type of void.
Create a class containing the method that will activate the event.
Create a class with methods to handle the event.
21). If you want to write your own dot net language, what steps you will you take care?
We will need to ensure that the high level code is compiled to MSIL (Microsoft intermediate language) so that it can be interpreted by the CLR.
22). Describe the diffeerence between inline and code behind - which is best in a loosely coupled solution?
The term ‘code behind’ refers to application code that is not embedded within the ASPX page and is separated out into a separate file which is then referenced
from the ASPX page. Inline code is the traditional ASP architectural model where business logic code was embedded within the ASP page. Separating the business
logic code from the presentation layer offers several advantages:
1) It allows graphic designers and web developers to work on the presentation layer whilst the application developers concentrate on the business logic.
2) The codebehind file is compiled as a single dll increasing the efficiency of the application,
3) The codebehind model offers a true OO development platform,
4) It speeds up development time as it allows developers to fully maximise the features of the .NET framework such as Cahing, ViewState, Session, Smart Navigation etc.
5) Code is much easier to maintain and susceptible for change.
6) The compiler and VS.NET provides much better support for error checking, intellisense and debugging when using the code behind model.
23). How dot net compiled code will become platform independent?
The raison d’etre for .NET was to cater for multiples languages on a single windows platform whereas the aim of Java was to be a single language on multiple
platforms. The only way that .NET can be platform independent is if there is a version of the .NET framework installed on the target machine.
24). Without modifying source code if we compile again, will it be generated MSIL again?
Ans.No.
25). How does you handle this COM components developed in other programming languages in.NET?
Ans.
use TlbImp.exe to import the COM types into your .NET project. If no type library for the COM component then use System.Runtime.InteropServices
use RegAsm.exe to call a .NET developed component in a COM application.
26). How CCW (Com Callable Wrapper) and RCW (Runtime Callable Wrappers) works?
CCW: When a COM application calls a NET object the CLR creates the CCW as a proxy since the COM application is unable to directly access the .NET object.
RCW: When a .NET application calls a COM object the CLR creates the RCW as a proxy since the .NET application is unable to directly access the .COM object.
27). What are the new thee features of COM+ services, which are not there in COM (MTS)?
Role based security.
Neutral apartment threading.
New environment called context which defines the execution environment
28). What are the differences between COM architecture and.NET architecture?
.Net architecture has superseded the old COM architecture providing a flexible rapid application development environment which can be used to create windows,
web and console applications and web services. .NET provides a powerful development environment that can be used to create objects in any .NET compliant language.
.NET addresses the previous problems of dll hell with COM by providing strongly named assemblies and side-by-side execution where two assemblies with the same name can run on the same box.
29). Can we copy a COM dll to GAC folder?
Ans.
No. It only stores .NET assemblies.
30). What is Shared and Repeatable Inheritance?
Shared Inheritance-: Shared Inheritance-: ITt is multiple times using same class. The mechanism of deriving a new class from an existing class is called inheritance. Shared inheritance introduces a new opportunity of ambiguity and additional implementation complexity. Assume D inherits from B and C, both of which inherits from A. Here A in shared. Single copy made from both derived classes is called shared inheritance.
31). Can you explain what inheritance is and an example of when you might use it?
Ans.
Inheritance is a fundamental feature of any OO language. It allows us to inherit the members and attributes from a base class to a new derived class. This
leads to increased code reusability and also makes applications easier to develop, maintain and extend as the new derived class can contain new features not
available in the base class whilst at the same time preserving the attributes inherited from the base class.
32). How can you write a class to restrict that only one object of this class can be created (Singleton class)?
Ans.
Use the singleton design pattern.
public sealed class Singleton
{
static readonly Singleton Instance=new Singleton();
static Singleton()
{
}
Singleton()
{
}
public static Singleton Instance
{
get
{
return Instance;
}
}
}
{
static readonly Singleton Instance=new Singleton();
static Singleton()
{
}
Singleton()
{
}
public static Singleton Instance
{
get
{
return Instance;
}
}
}
33). What are virtual destructures?
A constructor can not be virtual but a destructor may. Use virtual destructors when you want to implement polymorphic tearing down of an object.
34). What is close method? How its different from Finalize and Dispose?
finalise is the process that allows the garbage collector to clean up any unmanaged resources before it is destroyed.
The finalise method can not be called directly; it is automatically called by the CLR. In order to allow more control over the release of unmanaged resources
the .NET framework provides a dispose method which unlike finalise can be called directly by code.
Close method is same as dispose. It was added as a convenience.
35). What is Boxing and UnBoxing?
Ans.
Boxing is the process of converting a value type to a reference type. More specifically it involves encapsulating a copy of the object and moving it from
stack to heap. Unboxing is the reverse process.
36). What is check/uncheck?
Ans.
checked: used to enable overflow checking for arithmetic and conversion functions.
unchecked: used to disable overflow checking for arithmetic and conversion functions
37). What is the use of base keyword? Tell me a practical example for base keyword’s usage?
Ans.
The base keyword is used to access members of the base class from within a derived class:
* Call a method on the base class that has been overridden by another method.
* Specify which base-class constructor should be called when creating instances of the derived class.
A base class access is permitted only in a constructor, an instance method, or an instance property accessor.
It is an error to use the base keyword from within a static method.
Example:In this example, both the base class, Person, and the derived class, Employee, have a method named Getinfo. By using the base keyword,
it is possible to call the Getinfo method on the base class, from within the derived class.
// keywords_base.cs
// Accessing base class members
A constructor can not be virtual but a destructor may. Use virtual destructors when you want to implement polymorphic tearing down of an object.
34). What is close method? How its different from Finalize and Dispose?
finalise is the process that allows the garbage collector to clean up any unmanaged resources before it is destroyed.
The finalise method can not be called directly; it is automatically called by the CLR. In order to allow more control over the release of unmanaged resources
the .NET framework provides a dispose method which unlike finalise can be called directly by code.
Close method is same as dispose. It was added as a convenience.
35). What is Boxing and UnBoxing?
Ans.
Boxing is the process of converting a value type to a reference type. More specifically it involves encapsulating a copy of the object and moving it from
stack to heap. Unboxing is the reverse process.
36). What is check/uncheck?
Ans.
checked: used to enable overflow checking for arithmetic and conversion functions.
unchecked: used to disable overflow checking for arithmetic and conversion functions
37). What is the use of base keyword? Tell me a practical example for base keyword’s usage?
Ans.
The base keyword is used to access members of the base class from within a derived class:
* Call a method on the base class that has been overridden by another method.
* Specify which base-class constructor should be called when creating instances of the derived class.
A base class access is permitted only in a constructor, an instance method, or an instance property accessor.
It is an error to use the base keyword from within a static method.
Example:In this example, both the base class, Person, and the derived class, Employee, have a method named Getinfo. By using the base keyword,
it is possible to call the Getinfo method on the base class, from within the derived class.
// keywords_base.cs
// Accessing base class members
using System;
public class Person
{
protected string ssn = "444-55-6666";
protected string name = "John L. Malgraine";
public virtual void GetInfo()
{
Console.WriteLine("Name: {0}", name);
Console.WriteLine("SSN: {0}", ssn);
}
}
class Employee: Person
{
public string id = "ABC567EFG";
public override void GetInfo()
{
// Calling the base class GetInfo method:
base.GetInfo();
Console.WriteLine("Employee ID: {0}", id);
}
}
class TestClass {
public static void Main()
{
Employee E = new Employee();
E.GetInfo();
}
}
38). Difference Between Query String and Session
Querystring | Session |
---|---|
Querystring is client side state management technique. | Session is server side state management technique. |
Querystring data is page specific i.e. can be accessed in that page only. | Session data can be accessed throughout the session. |
Querystring data is visible to user and can be seen in browser url. | Session data is not visible to user. |
Data is not secured and can be altered hence insensitive data is stored in querystring. | Data is secured hence sensitive data such as user information is stored. |
Querystring has constraint of Maxlength. | Session does not have such constraint. |
39). Difference between Query string and Cookies
cookies is a text file stored on client machine when we surf ant thing on internet by the server automatically we dont have to create itquery string is used to transfer data from 1 page to anothe but this is not safe s it shows in url what data we r sending
pen any site and see url after question mark tht is url
Cookies: - Cookies are little pieces of information that a server stores on a browser. They are of two types
1. Temporary cookie
2. Persistent cookie
Temporary cookie: - They are also known as session cookies. These are volatile in nature. When the browser is shutdown they are erased.
Persistent cookie:- These may be called as permanent cookies. These are especially saved in files. It may remain for a month or year.
Properties of cookies
Some properties of cookie
Name: - represent the name of cookie.
Name value: - represent a collection of key values of cookie
Domain: - represent the domain associated with a specific cookie.
Path: - the path associated with a cookie.
Expires: - expired time of cookie.
Hashkey: - identifies whether the cookie is a cookie dictionary.
Secure: - specifies whether the cookie is to be sent in an encrypted connection or not
Query string is the limited way to pass information to the web server while Transferring from one page to another page. This information is passed in url of the request. see below the code sample
Code Sample
//Retrieving values from query string
String name;
//Retrieving from query string
name = Request.Param["umar"].ToString();
But remember that many browsers impose a limit of 255 characters in query strings. You need to use HTTP-Get method to post a page to server otherwise query string values will not be available.
Some properties of cookie
Name: - represent the name of cookie.
Name value: - represent a collection of key values of cookie
Domain: - represent the domain associated with a specific cookie.
Path: - the path associated with a cookie.
Expires: - expired time of cookie.
Hashkey: - identifies whether the cookie is a cookie dictionary.
Secure: - specifies whether the cookie is to be sent in an encrypted connection or not
Query string is the limited way to pass information to the web server while Transferring from one page to another page. This information is passed in url of the request. see below the code sample
Code Sample
//Retrieving values from query string
String name;
//Retrieving from query string
name = Request.Param["umar"].ToString();
But remember that many browsers impose a limit of 255 characters in query strings. You need to use HTTP-Get method to post a page to server otherwise query string values will not be available.
40). How can we identify that the Page is Post Back?
Page object has an "IsPostBack" property, which can be checked to know that is the page posted back.
41). What is the lifespan for items stored in ViewState?
PThe items stored in ViewState live until the lifetime of the current page expires including the postbacks to the same page42). What is AutoPostBack?
If you want a control to postback automatically when an event is raised, you need to set the AutoPostBack property of the control to True43). Why do you use the App_Code folder in ASP.NET?
The App_Code folder is automatically present in the project. It stores
the files, such as classes, typed data set, text files, and reports. If
this folder is not available in the application, you can add this
folder. One of the important features of the App_Code folder is that
only one dll is created for the complete folder, irrespective of how
many files it contains.
44). In which event of page cycle is the ViewState available?
After the Init() and before the Page_Load().
45). How long the items in ViewState exists?
They exist for the life of the current page.46). Where the viewstate is stored after the page postback?
ViewState is stored in a hidden field on the page at client side. ViewState is transported to the client and back to the server, and is not stored on the server or any other external source.
47). What are the different Session state management options available in ASP.NET?
- In-Process
- Out-of-Process.
Out-of-Process Session state management stores data in an external server. The external server may be either a SQL Server or a State Server. All objects stored in session are required to be serializable for Out-of-Process state management.
48). What is the difference between web config and machine config?
Web config file is specific to a web application where as machine config is specific to a machine or server. There can be multiple web config files into an application where as we can have only one machine config file on a server.49). What are the different types of cookies in ASP.NET?
Session Cookie – Resides on the client machine for a single session until the user does not log out.Persistent Cookie – Resides on a user’s machine for a period specified for its expiry, such as 10 days, one month, and never.
50). What is the difference between ExecuteScalar and ExecuteNonQuery?
ExecuteScalar returns output value where as ExecuteNonQuery does not return any value but the number of rows affected by the query. ExecuteScalar used for fetching a single value and ExecuteNonQuery used to execute Insert and Update statements.
Nice post.
ReplyDeleteHi Pankaj,
DeleteThanks for sharing informative blog on Interview questions of ASP.Net.; I am inspired with your post. It was thoroughly helpful to me.
I get this question from my office colleagues, friends, and countless countless Blog readers almost every day or week.
Any prerequisites to learn Pega like java and .Net?
If you don’t mind can I connect you via LinkedIn or Twitter to stay updated about your new posts?
Appreciate your effort for making such useful blogs and helping the community.
Best Regards,
Margon
This comment has been removed by a blog administrator.
ReplyDeleteThis comment has been removed by a blog administrator.
ReplyDeleteThanks :)
ReplyDeleteNice Collection..thank u so much!!
ReplyDeleteThank You for Sharing Valuable Information. I like this blog and this is very informative.
ReplyDeleteDot Net Training in Chennai
Thanks to Share the LoadRunner Material for Freshers,
ReplyDeleteLink as,
LoadRunnerTraining in Chennai
great and valuable Share
ReplyDelete
ReplyDeletereviews-complaints-testimonials
very nice post to share some important fact about Asp.Net :)
ReplyDeleteGud post Keep it up... :)
ReplyDeletesuper post, it is help to understand for dotnet .... thanks
ReplyDeleteAsp.net field has uprising in last 5 years. it become one of the want training like java. this questions will be helpful for the interview
ReplyDeletegood for use.............................for me
ReplyDeleteThank You For Share valuable question.
ReplyDelete
ReplyDeleteI have read your post, it was good to read & I am getting some useful info's through your blog keep sharing...
sas training institute in Chennai
Thanks dude, this post helps me to get career in asp .net, i hope so keep posting...
ReplyDeleteRegards,
sas training in Chennai
Very useful. Thanks for sharing the information
ReplyDeleteVery nice!!
ReplyDeleteThanks for splitting your comprehension with us. It’s really useful to me & I hope it helps the people who in need of this vital information.
ReplyDeleteRegards,
Salesforce training in Chennai|Salesforce training institute in Chennai
Thanks
ReplyDeleteI am reading your post from the beginning, it was so interesting to read & I feel thanks to you for posting such a good blog, keep updates regularly.. Oracle Training in chennai
ReplyDeleteOracle Training in chennai Thanks for your knowledge sharing... im waitng for this content from long back..
ReplyDeleteOracle Training in chennai keep posting like this article always...
Thanks for sharing this niche useful informative post to our knowledge.. Pega Training in Chennai
ReplyDeleteWhatever we gathered information from the blogs, we should implement that in practically then only we can understand that exact thing clearly, but it’s no need to do it, because you have explained the concepts very well. It was crystal clear, keep sharing... QTP Training in Chennai
ReplyDeleteThanks for sharing this informative blog. I did SAS Certification in Greens Technology at Adyar. This is really useful for me to make a bright career.. SAS Training in Chennai
ReplyDeleteThis information is impressive; I am inspired with your post writing style & how continuously you describe this topic. After reading your post, thanks for taking the time to discuss this, I feel happy about it and I love learning more about this topic. Green Technologies In Chennai
ReplyDeleteYour information is really useful for me.Thanks for sharing such a valuable information..Green Technologies In Chennai
ReplyDeleteThis site has very useful inputs related to qtp.This page lists down detailed and information about QTP for beginners as well as experienced users of QTP. If you are a beginner, it is advised that you go through the one after the other as mentioned in the list. So let’s get started… QTP Training in Chennai,
ReplyDeleteHey, nice site you have here!We provide world-class Oracle certification and placement training course as i wondered Keep up the excellent work !Please visit Greens Technologies located at Chennai Adyar Oracle Training in chennai
ReplyDeleteif more information about oracle training visit Oracle Training in chennai we provide profesional experts trained with real-time scenario and job oriended also certification training .We Guarantee Your Oracle Training Success in Chennai
ReplyDeleteVery good articles,thanks for sharing this useful information.
ReplyDeleteSAP Success Factors Training
SAP WebDynpro Training
SCCM 2012 Training
Amazing blog if our training additional way as an silverlight training trained as individual, you will be able to understand other applications more quickly and continue to build your skill set which will assist you in getting hi-tech industry jobs as possible in future courese of action..visit this blog
ReplyDeletesilverlight-training.html
greenstechnologies.in:
ReplyDeleteAwesome Job oriented sharepoint training in Chennai is offered by our institue is mainly focused on real time and industry oriented. We provide training from beginner’s level to advanced level techniques thought by our experts.
if you have more details visit this blog.
SharePoint-training-in-chennai.html
ReplyDeleteif share valuable information about cloud computing training courses, certification, online resources, and private training for Developers, Administrators, and Data Analysts may visit
Cloud-Computing-course-content.html
Thanks for sharing This valuable information.we provide you with Search engine optimization Training in Chennai which offers every one of the necessary information you should know about Search Engine Optimization. the facts, how it operates, what is Search engine optimization daily life cycle, along with the other relevant subjects
ReplyDeleteRegards,
Professional Dot Net Training Academy in Chennai
I get a lot of great information from this blog. Thanks for sharing this valuable information to our vision. You have posted a trust worthy blog keep sharing.
ReplyDeletesas online training
please give some more easy examples related to dotnet programs
ReplyDeleteplease give some more easy examples related to dotnet programs
ReplyDeletehttp://goo.gl/NuMxem
Very helpful and Informative post! Thanks you so much and keep sharing...
ReplyDeleteExcellant content thanks for sharing the unique information and keep posting.
ReplyDeleteAndroid Training in Chennai | android courses in Chennai | FITA Velachery | FITA Training
nice blog
ReplyDeletetutorial home
I had a lot of information about asp net here, keep posting.
ReplyDeleteRegards,
web designing course in chennai|web designing training|web designing training in chennai
شركة تسليك مجارى بالرياض
ReplyDeletelevel تسليك مجاري بالرياض
افضل شركة تنظيف بالرياض
تنظيف شقق بالرياض
شركة تنظيف منازل بالرياض
شركة غسيل خزنات بالرياض
افضل شركة مكافحة حشرات بالرياض
رش مبيدات بالرياض
شركة تخزين عفش بالرياض
شركة تنظيف مجالس بالرياض
تنظيف فلل بالرياض
ابغى شركة تنظيف بالرياض
very useful information...
ReplyDeleteRRB Exam Questions and Answers
Vao exam questions and answers
ReplyDeleteThanks for sharing this valuable information.
lenovo laptop service center in chennai
lenovo thinkpad service center chennai
lenovo ideapad service center chennai
You can find more interview questions on http://csharpquestions1.blogspot.in/
ReplyDeleteece projects in chennai
ReplyDeleteembedded projects chennai
matlab projects chennai
embedded training in chennai
matlab training in chennai
very useful information...
ReplyDeleter training in chennai
Hi,
ReplyDeleteThis is one of the great collections of interview questions. Thanks for sharing
Sony mobile price list
Hi,
ReplyDeleteAll the questions in the set are very informative and had covered topics more than basics.Thanks for sharing.
nice and useful blog
ReplyDeletebest dotnet training institute in chennai
If an interviewer asks, "Why did you leave (or why are you leaving) your job?" and you're unemployed, state your reason for leaving in a positive context: "I managed to survive two rounds of corporate downsizing, but the third round was a 20% reduction in the workforce, which included me.niche relevant marketing
ReplyDeleteThanks for sharing the article about the .net training which is one of the key technology like SQL.
ReplyDeleteoracle sql training institutes in bangalore
ReplyDeleteIt's interesting that many of the bloggers your tips helped to clarify a few things for me as well as giving.. very specific nice content. And tell people specific ways to live their lives.Sometimes you just have to yell at people and give them a good shake to get your point across.
Web Design Company
Web Development Company
Mobile App Development Company
ReplyDeletevery useful info, and please keep updating........
Really very good Inforamtion.Thanku..
ReplyDeleteThanks For Sharing. As a my point of view this is very good information.
ReplyDeleteI am reading your post from the beginning, it was so interesting to read & I feel thanks to you for posting such a good blog, keep updates regularly.These Dot Bet interview very helps for my interview. Thanks , terrific post.
ReplyDeleteHadoop Training in Chennai
Hadoop Training Institute in Chennai
nice informtion for me
ReplyDeleteThanks for sharing this informative news with us. Keep updating.
ReplyDeletephp training institute in chennai
you are giving a very interesting post and it is usefull.
ReplyDeleteDot Net Online Training Hyderabad
This comment has been removed by the author.
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteThank you !! Very usefull !!
ReplyDeletefinal year android projects chennai
iot projects in chennai, iot project centers in chennai
dot net training in chennai
android training in chennai
Thanks for your informative article. Dot Net Training in Chennai
ReplyDeleteThis information you provided in the blog that is really unique I love it!! Thanks for sharing such a great blog. Keep posting..
ReplyDeleteDot Net Training
Dot Net Course
Dot Net Institute
Thank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
ReplyDeleteBest Hadoop Training Institute In chennai
Thanks for the informative article. This is one of the best resources I have found in quite some time. Once Again Thanks for Sharing this Valuable Information i like this i Can Share this with My Friend Circle.
ReplyDeleteASP.NET Interview Questions and Answers
Thank you Admin! This blog is very useful!
ReplyDeleteRobotics Training in Chennai | Embedded Testing Training in Chennai
ReplyDeleteHi Your Blog is very nice!!
Get All Top Interview Questions and answers PHP, Magento, laravel,Java, Dot Net, Database, Sql, Mysql, Oracle, Angularjs, Vue Js, Express js, React Js,
Hadoop, Apache spark, Apache Scala, Tensorflow.
Mysql Interview Questions for Experienced
php interview questions for freshers
php interview questions for experienced
python interview questions for freshers
tally interview questions and answers
Nice site.refer this site.if Our vision succes!Training are focused on perfect improvement of technical skills for Freshers and working professional. Our Training classes are sure to help the trainee and Realtime methodologies.
ReplyDeleteVlsi Training in Chennai | Wcf Training in Chennai.
This comment has been removed by the author.
ReplyDeleteNice blog. thanks for sharing. keep updating..
ReplyDeleteDotnet online training
dotnet online course
dotnet online training in hyderabad
dotnet online training in Bangalore
dotnet online training in chennai
This comment has been removed by the author.
ReplyDeleteAjio Promo Codes
ReplyDeleteAjio Coupons & Offers
Ajio Coupon codes
Ajio Offers Promo Codes
Ajio Offers on online shopping
Firstcry Promo Codes
Firstcry Deals & offers
Firstcry coupons codes
Firstcry Coupons Offers Promo Codes
Firstcry Offers on Kids shopping
Myntra promo codes
Myntra deals and offers
Myntra coupon codes
Myntra coupons offers promo codes
Myntra offers on online shopping
Nykaa Promo Codes
Nykaa Deals and offers
Nykaa Coupons codes
Nykaa coupons offers promo codes
Nykaa offers on online shopping
Flipkart promo codes
Flipkart deals & coupons
flipkart coupon code
flipkart coupons offer promo code
Amazon promo code
amazon offers
amazon offers and deals
amazon coupon code
amazon deal of the day
cleartrip promo codes
ReplyDeletecleartrip coupon code
cleartrip offers and deals
cleartrip deals
MMT promo Codes
MMT coupon codes
Makemytrip promo codes
makemytrip offers
makemytrip deals & offers
healthkart coupon code
healthkart promo codes
healthkart deals and offers
healthkart discount offers
bigbasket promo codes
bigbasket coupon codes
bigbasket offers
bigbasket coupon and deals
pizzahut promo code
pizzahut coupon codes
pizzahut offers
pizzahut coupon and offers
hotels promo code
hotels coupon codes
hotel offers & deals
hotels discount offers
nearbuy coupon codes
nearbuy promo codes
nearbuy deals and offers
nearbuy discounts
zoomcar promo code
zoomcar coupon code
zoomcar offers on ride
zoomcar deals and offers
This comment has been removed by the author.
ReplyDeleteCloud Computing Training In Noida
ReplyDeleteWebtrackker is IT based company in many countries. Webtrackker will provide you a real time projects based training on Cloud Computing. If you are looking for the Cloud computing training in Noida then you can join the webtrackker technology.
Cloud Computing Training In Noida , Cloud Computing Training center In Noida , Cloud Computing Training institute In Noida ,
Company Address:
Webtrackker Technology
C- 67, Sector- 63, Noida
Email: info@webtrackker.com
Website: www.webtrackker.com
http://webtrackker.com/Cloud-Computing-Training-Institutes-In-Noida.php
In the last few months we've seen a lot of Health Care Reform rules and regulations being introduced by the Health and Human Services Department. Every time that happens, the media gets hold of it and all kinds of articles are written in the Wall Street Journal, the New York Times, and the TV network news programs talk about it. All the analysts start talking about the pros and cons, and what it means to businesses and individuals. Health is God
ReplyDelete●Thanks for one marvelous posting! I enjoyed reading it; you are a great author. I will make sure to bookmark your blog and may come back someday. I want to encourage that you continue your great posts.
ReplyDeleteData Science Training in Chennai
Data science training in bangalore
online Data science training
Data science training in pune
Data science training in kalyan nagar
Data science training in Bangalore
Data science training in tambaram
Data science training in kalyan nagar
Thank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
ReplyDeleteDevops training in Chennai
Devops training in Bangalore
Devops training in Pune
Devops training in Online
Devops training in Pune
Devops training in Bangalore
Devops training in tambaram
Devops training in Sollonganallur
Good Post! Thank you so much for sharing this pretty post, it was so good to read and useful to improve my knowledge as updated one, keep blogging.
ReplyDeleteData science training in tambaram
Data science training in kalyan nagar
Data Science training in OMR
Data Science training in anna nagar
Data Science training in chennai
Data Science training in marathahalli
Data Science training in BTM layout
Data Science training in rajaji nagar
A universal message I suppose, not giving up is the formula for success I think. Some things take longer than others to accomplish, so people must understand that they should have their eyes on the goal, and that should keep them motivated to see it out til the end.
ReplyDeletejava training in chennai | java training in bangalore
java training in tambaram | java training in velachery
java training in omr
Hi, Great.. Tutorial is just awesome..It is really helpful for a newbie like me.. I am a regular follower of your blog. Really very informative post you shared here. Kindly keep blogging.
ReplyDeletejava training in chennai | java training in bangalore
java training in tambaram | java training in velachery
java training in omr
rpa training institute in noida
ReplyDeleteBlockchain training institute in Noida
thank you your post was knowlable to me
ReplyDeleterpa training institute in noida
sas training institute in noida
hadoop training institute in noida
blokchain traninig institut noida
click here for more information about the latest stuff oneplus c type jack
ReplyDeleteThis is a great post ! it was very informative. I look forward in reading more of your work. Also, I made sure to bookmark your website so I can come back later. I enjoyed every moment of reading it..
ReplyDeleteQlikview Training From India
Great one,You have done a great job by sharing this content,Thank you a lot for providing individuals with a very spectacular possibility to read critical reviews from this site.
ReplyDeleteAPPIUM Training
ORACLE EXADATA Training
PYTHON Training
Thanks for one marvelous posting! I enjoyed reading it; you are a great author. I will make sure to bookmark your blog and may come back someday. I want to encourage that you continue your great posts.
ReplyDeleteSplunk Training Videos
Sap BW on Hana Training Videos
Sap QM Training Videos
This is such a great post, and was thinking much the same myself. Another great update.
ReplyDeletehyperion Training Insittue
Informatica Training Insittue
Java Training Insittue
MSBI Training Insittue
Mysql Training Insittue
Hi, Great.. Tutorial is just awesome..It is really helpful for a newbie like me.. I am a regular follower of your blog. Really very informative post you shared here. Kindly keep blogging.
ReplyDeleteQlikview Training From India
Application Packagining Training From India
Python Training From India
Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.
ReplyDeletesafety course in chennai
Thanks for sharing this wonderful blog. Helpful article ! Kindly visit us @ Chocolate gift box
ReplyDeleteHi, really a nice post. It was a worth reading.. You have mentioned a very good content here, which is very useful to us.. Keep Sharing!
ReplyDeleteDevOps Online Training
All are saying the same thing repeatedly, but in your blog I had a chance to get some useful and unique information, I love your writing style very much, I would like to suggest your blog in my dude circle, so keep on updates.
ReplyDeleteSEO Training in Chennai
SEO Course in Chennai
SEO Training Institute in Chennai
SEO Course Chennai
SEO Training near me
We are Offerining DevOps Training in Bangalore,Chennai, Pune using Class Room. myTectra offers Live Online DevOps Training Globally
ReplyDeleteExcellent tutorial buddy. Directly I saw your blog and way of teaching was perfect, Waiting for your next tutorial.
ReplyDeletebest rpa training institute in chennai | rpa training in velachery | rpa training in chennai omr
Great post! I am actually getting ready to across this information, It’s very helpful for this blog.Also great with all of the valuable information you have Keep up the good work you are doing well.
ReplyDeleteangularjs Training in electronic-city
angularjs online Training
angularjs Training in marathahalli
angularjs interview questions and answers
angularjs Training in bangalore
angularjs Training in bangalore
Great job.... Awesome list, just starting a blog and this is going to be a massive help. Thank you!
ReplyDelete.Net Training in Chennai
iOS Training
iOS Training in Chennai
I am really happy with your blog on blue prism training in chennai because your article is very unique and having lots of great information of blue prism training in chennaifor new reader.Please keep sharing such a wonderful blogs on Blueprism and other technologies and help others.
ReplyDeleteThanks and Regards,
Blueprism training institute in Chennai
Nice tutorial. Thanks for sharing the valuable information. it’s really helpful. Who want to learn this blog most helpful. Keep sharing on updated tutorials…
ReplyDeleteJava training in Chennai | Java training in Tambaram | Java training in Chennai | Java training in Velachery
Java training in Chennai | Java training in Omr | Oracle training in Chennai
Some us know all relating to the compelling medium you present powerful steps on this blog and therefore strongly encourage contribution from other ones on this subject while our own child is truly discovering a great deal. Have fun with the remaining portion of the year.
ReplyDeleteData Science Course in Indira nagar | Data Science Course in btm layout
Python course in Kalyan nagar | Data Science course in Indira nagar
Data Science Course in Marathahalli | Data Science Course in BTM Layout
It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...
ReplyDeleteData Science course in kalyan nagar | Data Science Course in Bangalore | Data Science course in OMR | Data Science Course in Chennai
Data Science course in chennai | Best Data Science training in chennai | Data science course in velachery | Data Science course in Chennai
Data science course in jaya nagar | Data Science course in Bangalore | Data science training in tambaram | Data Science Course in Chennai
Great content thanks for sharing this informative blog which provided me technical information keep posting.
ReplyDeletepython training institute in marathahalli
python training institute in btm
Python training course in Chennai
Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.
ReplyDeletepython training institute in marathahalli
python training institute in btm
Python training course in Chennai
I really like your blog. You make it interesting to read and entertaining at the same time. I cant wait to read more from you.
ReplyDeleteangularjs interview questions and answers
angularjs Training in bangalore
angularjs Training in bangalore
angularjs Training in chennai
automation anywhere online Training
Thanks for sharing steps. This is really helpful. Keep doing more.
ReplyDeleteSpoken English Institutes in Bangalore
Spoken English Coaching Classes near me
English Speaking Classes in Bangalore
Spoken English Training Institute in Bangalore
Best Spoken English Coaching in Bangalore
English Speaking Course in Bangalore
English Spoking Coaching in Bangalore
Thanks for taking time to share this aspnet interview questions with answers. It is really helpful. Share more like this.
ReplyDeleteccna Training in Chennai
ccna Training institute in Chennai
Robotics Process Automation Training in Chennai
Angularjs Training in Chennai
AWS Certification in Chennai
DevOps Training in Chennai
I am really enjoying reading your well written articles.
ReplyDeleteIt looks like you spend a lot of effort and time on your blog.Keep Doing.
Digital Marketing Training in Bangalore
Digital Darketing Courses in Bangalore
Best Digital Marketing Courses in Bangalore
Devops Institute in Bangalore
Devops Course in Bangalore
Thanks for sharining your post
ReplyDeleteHere is STUCORNER the Best Dotnet training institute in Laxmi Nagar you can visit their site:
Best .net Training institute
Awesome post, you got the best interview questions and answers for aspnet interview. You’re doing a great job.
ReplyDeletePython Training in Chennai
Python Training near me
Python course in Chennai
Python Classes in Chennai
ccna Training in Chennai
ccna course in Chennai
Hello! This is my first visit to your blog! We are a team of volunteers and starting a new initiative in a community in the same niche. Your blog provided us useful information to work on. You have done an outstanding job.
ReplyDeleteBest AWS Training in Chennai | Advanced Amazon Web Services Training in Chennai
Amazon Web Services AWS Training in Bangalore | Best AWS Amazon Web Services Training in Bangalore
AWS Online Training and Certification | Best Amazon Web Services Online Training with 100% practical
Best Institutes for Amazon Web Services Training in Pune | Best AWS (Amazon Web Services) Training Institute in Pune
Those guidelines additionally worked to become a good way to recognize that other people online have the identical fervor like mine to grasp great deal more around this condition.
ReplyDeletepython training in chennai
java training in chennai
I am feeling great to read this.you gave a nice info for us.
ReplyDeleteplease update more.
vmware Training in Vadapalani
vmware Training in Amjikarai
vmware Training in Thirumangalam
vmware training near me
Thanks for sharing steps. This is really helpful. Keep doing more.
ReplyDeleteGuest posting sites
Technology
Nice blog
ReplyDeleteThank you for sharing Interview Questions...
Sathyatech- Software Training Institute in hyderabad
Your blog is interesting for readers.you have developed your blog informations with such a wonderful ideas and which is very much useful for the readers.i enjoyed your post and i need some more articles also please update soon.
ReplyDeletecloud computing courses near me
cloud computing Training in chennai
cloud computing Training in chennai
Cloud Computing Training in T nagar
Cloud Computing Training in Anna Nagar
Cloud computing courses in Anna Nagar
Nice Article
ReplyDeleteHelpful for students...
Sathyatech- Software training insitute in hyderabad
Actually i am searching information on AWS on internet. Just saw your blog on AWS and feeling very happy becauase i got all the information of AWS in a single blog. Not only the full information about AWS but the quality of data you provided about AWS is very good. The person who is looking for the quality information about AWS , its very helpful for that person.Thank you for sharing such a wonderful information on AWS .
ReplyDeleteThanks and Regards,
aws solution architect training in chennai
best aws training in chennai
best aws training institute in chennai
best aws training center in chennai
aws best training institutes in chennai
aws certification training in chennai
aws training in velachery
Nice post..
ReplyDeletesalesforce training in btm
salesforce admin training in btm
salesforce developer training in btm
Nice post
ReplyDeleterobotics courses in BTM
robotic process automation training in BTM
blue prism training in BTM
rpa training in BTM
automation anywhere training in BTM
Thanks for this wonderful post! Hoping for more posts from you.
ReplyDeleteCorporate Training in Chennai | Corporate Training institute in Chennai | Corporate Training Companies in Chennai | Corporate Training Companies | Corporate Training Courses | Corporate Training
hats off to ur presence of mind..
ReplyDeletedigital marketing courses in Bangalore With placement
digital marketing training in Bangalore
seo training in Bangalore
Excellent information with unique content.
ReplyDeleteblockchain training in Marathahalli
apple iphone service center | apple ipad service center | apple mac service center | iphone service center | imac service center
ReplyDeleteIt is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...
ReplyDeleteiphone service center | ipad service center | imac service center
Very useful questions for interview. please post servicenow questions also.
ReplyDeleteGoyal packers and movers in Panchkula is highly known for their professional and genuine packing and moving services. We are top leading and certified relocation services providers in Chandigarh deals all over India. To get more information, call us.
ReplyDeletePackers and movers in Chandigarh
Packers and movers in Panchkula
Packers and movers in Mohali
Packers and movers in Panchkula
Packers and movers in Chandigarh
Amazing Post. The idea you have shared is very interesting. Waiting for your future postings.
ReplyDeletePrimavera Training in Chennai
Primavera Course in Chennai
Primavera Software Training in Chennai
Best Primavera Training in Chennai
Primavera p6 Training in Chennai
IELTS coaching in Chennai
IELTS Training in Chennai
SAS Training in Chennai
SAS Course in Chennai
Select * from Sales
ReplyDeleteSno Date ItemName Price Qty TPrice
1 2018-12-04 00:00:00.000 1 Cola Normal 60.00 8.00 480.00
2 2018-12-04 00:00:00.000 2 Cola Zero 110.00 4.00 440.00
3 2018-12-05 00:00:00.000 1 Cola Normal 60.00 3.00 180.00
4 2018-12-05 00:00:00.000 2 Cola Zero 100.00 5.00 500.00
5 2018-12-06 00:00:00.000 3 Pepsi 100.00 3.00 300.00
6 2018-12-06 00:00:00.000 1 Cola Normal 60.00 12.00 720.00
8 2018-12-18 00:00:00.000 4 Thumb Up 60.00 10.00 600.00
Select * from Purchase
1 2018-12-04 00:00:00.000 1 Cola Normal 50.00 10.00 500.00
2 2018-12-04 00:00:00.000 2 Cola Zero 100.00 5.00 500.00
3 2018-12-05 00:00:00.000 1 Cola Normal 60.00 5.00 300.00
4 2018-12-05 00:00:00.000 2 Cola Zero 95.00 10.00 950.00
5 2018-12-06 00:00:00.000 3 Pepsi 80.00 5.00 400.00
6 2018-12-06 00:00:00.000 1 Cola Normal 55.00 10.00 550.00
7 2018-12-16 00:00:00.000 4 Thumb Up 50.00 10.00 500.00
8 2018-12-18 00:00:00.000 4 Thumb Up 50.00 20.00 1000.00
select s.ItemName, SUM(s.Quantity) Quantity from Sales s Group by s.ItemName
ItemName Qty
Cola Normal 23.00
Cola Zero 9.00
Pepsi 3.00
Thumb Up 10.00
select p.ItemName, SUM(p.Quantity) Quantity from Purchase p Group by p.ItemName
ItemName Qty
Cola Normal 25.00
Cola Zero 15.00
Pepsi 5.00
Thumb Up 30.00
select p.ItemName ,Sum(p.Quantity)-Sum(s.Quantity) as QTY from Purchase p join Sales s On p.ItemName=s.ItemName group by p.ItemName
ItemName Qty
Cola Normal 6.00
Cola Zero 12.00
Pepsi 2.00
Thumb Up 10.00
* Question Is By my answer not This
ItemName Qty
Cola Normal 2.00
Cola Zero 6.00
Pepsi 2.00
Thumb Up 20.00
Amazing information,thank you for your ideas.after along time i have studied
ReplyDeletean interesting information's.we need more updates in your blog.
AWS Training in anna nagar
AWS Training in Chennai Anna Nagar
AWS Training in T nagar
AWS Certification Training in T nagar
Nice post. By reading your blog, i get inspired and this provides some useful information. Thank you for posting this exclusive post for our vision....
ReplyDeletevmware online training
tableau online training
qlikview online training
python online training
java online training
sql online training
cognos online training
Great share !!
ReplyDeleteieee final year projects in chennai
Robotics projects in chennai
Vlsi projects in chennai
Really great blog, it's very helpful and has great knowledgeable information.
ReplyDeletesap-hybris training institute
sap-information-steward training institute
Very useful information in this blog.Kindly update more info...
ReplyDeleteTraining Institute
Training Institute
Wow it is really wonderful and awesome.
ReplyDeletequality-analysis-qa training
qtp training
it is very much useful for me to understand many concepts and helped me a lot.
ReplyDeleteDatastage Training
Dellboomi Training
HealRun is a health news blog we provide the latest news about health, Drugs and latest Diseases and conditions. We update our users with health tips and health products reviews. If you want to know any information about health or health product (Side Effects & Benefits) Feel Free To ask HealRun Support Team.
ReplyDeleteHealRun is a health news blog we provide the latest news about health, Drugs and latest Diseases and conditions. We update our users with health tips and health products reviews. If you want to know any information about health or health product (Side Effects & Benefits) Feel Free To ask HealRun Support Team.
ReplyDeleteIt's really a nice experience to read your post. Thank you for sharing this useful information. If you are looking for more about machine learning training center in Chennai
ReplyDeletemachine learning training in velachery
machine learning certification course in Chennai
Android training in chennai
PMP training in chennai
Supplements For Fitness All the ingredients of thermogenic weight loss products stimulate the body, to quickly burn the stored fat in the body by stimulating the metabolic process that increases the amount of heat produced by the body. The process
ReplyDeleteSupplements For Fitness All the ingredients of thermogenic weight loss products stimulate the body, to quickly burn the stored fat in the body by stimulating the metabolic process that increases the amount of heat produced by the body.
ReplyDeleteSupplements For Fitness of burning fat occurs when stimulants can affect internal body functions even without exercise. Thermogenic supplements also work as diuretics, which is another method to lose weight in the short term.
ReplyDeleteGreat, thanks for sharing this blog.Really looking forward to read more. Keep writing
ReplyDeleteinformatica data quality training
informatica mdm training
Pilpedia is supplying 100 percent original and accurate information at each moment of time around our site and merchandise, and the intent is to improve the usage of good and pure health supplement. For More Info please visit Pilpedia online store.
ReplyDeleteVery useful information in this blog.Kindly update more info...
ReplyDeletesharepoint training
spark training
splunk training
Really is very interesting, I saw your website and get more details..Nice work. Thanks regards,
ReplyDeletescom training
sccm training
windows admin training
informatica idq training
azure training
Excellent tutorial buddy. Directly I saw your blog and way of teaching was perfect, Waiting for your next tutorial.
ReplyDeletemysql admin training
informatica powercenter training
ansible training
puppet training
chef training
Great article thank you.
Big Data Hadoop Training in Hyderabad
Data Science Course in Hyderabad
AngularJS Training in Hyderabad
Advanced Digital Marketing Training Institute in Hyderabad
excellent way of writing.
ReplyDeletemysql training
office 365 training
oracle adf training
oracle apps functional training
oracle apps technical course
awesome article thanks for sharing
ReplyDeletedevops online training
python online traning
power bi online traning
machine learning online course
Thankyou for sharing useful information,keep do posting .appreciate the work
ReplyDeleteAWS Training in Hyderabad
Digital Marketing Training in Hyderabad
Big Data Hadoop Training in Hyderabad
Digital Marketing Course in Hyderabad
Very Informative, Thanks for Sharing.
ReplyDeleteDigital Marketing Courses in Hyderabad
SEO Training in Hyderabad Ameerpet
SAP ABAP Training Institute in Hyderabad
Salesforce CRM Training in Hyderabad
Usefull Article. Thanks for sharing info.
ReplyDeleteDigital Marketing training in Hyderabad
IELTS training
in hyderabad
sap sd online
training
sap fico online
training
Awesome blog!!! thanks for your good information... waiting for your upcoming data...
ReplyDeletehadoop training in bangalore
big data courses in bangalore
hadoop training institutes in bangalore
Devops Training in Bangalore
Digital Marketing Courses in Bangalore
German Language Course in Madurai
Cloud Computing Courses in Coimbatore
Embedded course in Coimbatore
Whoa! I’m enjoying the template/theme of this website. It’s simple, yet effective. A lot of times it’s very hard to get that “perfect balance” between superb usability and visual appeal. I must say you’ve done a very good job with this.
ReplyDeleteDevops Training in bangalore
Digital Marketing Training in bangalore
Data Science Training in bangalore
Java Training in bangalore
Whoa! I’m enjoying the template/theme of this website. It’s simple, yet effective. A lot of times it’s very hard to get that “perfect balance” between superb usability and visual appeal. I must say you’ve done a very good job with this.
ReplyDeleteDevops Training in bangalore
Digital Marketing Training in bangalore
Data Science Training in bangalore
Java Training in bangalore
Hi, It's very best advantageous blogs.I read this subjects blog such a great blog and good sharing I'll be like this informative post.Thank you for selecting the time to provide us with your valuable knowledge.C#.NET Online Course
ReplyDeleteReally amazing to read the post
ReplyDeleteccna training course in chennai
Amazing post very useful
ReplyDeleteBest php training in chennai
Nice post. Thanks for sharing! I want people to know just how good this information is in your article. It’s interesting content and Great work.
ReplyDeleteThanks & Regards,
VRIT Professionals,
No.1 Leading Web Designing Training Institute In Chennai.
And also those who are looking for
Web Designing courses training institutes in Chennai
HTML courses training institutes in Chennai
CSS courses training institutes in Chennai
Bootstrap courses training institutes in Chennai
Photoshop courses training institutes in Chennai
PHP & Mysql courses training institutes in Chennai
SEO courses training institutes in Chennai
Testing courses training institutes in Chennai
Great Article. Thanks for sharing info.
ReplyDeleteDigital Marketing Course in Hyderabad
Top Digital Marketing Courses with the live projects by a real-time trainer
line Digital Marketing Courses in Hyderabad
SEO Training in Hyderabad
Amazing Post Thanks for sharing
ReplyDeleteDevOps Training in Chennai
Cloud Computing Training in Chennai
IT Software Training in Chennai
Awesome post!!! Thanks for your blog... waiting for your upcoming data.
ReplyDeleteAWS Training in Bangalore
Best AWS Training in Bangalore
Java Training in Bangalore
Python Training in Bangalore
IELTS Coaching in Madurai
IELTS Coaching in Coimbatore
Java Training in Coimbatore
Excellent blog admin, this interview questions are really helpful. Keep sharing.
ReplyDeleteBlue Prism Training in Chennai
UiPath Training in Chennai
UiPath Training Institutes in Chennai
RPA Training in Chennai
Data Science Course in Chennai
Blue Prism Training in Velachery
Blue Prism Training in Tambaram
the blog is more useful and many important points are there.keep sharing more like this type of blog.
ReplyDeleteccna Training in Chennai
ccna course in Chennai
Python Training in Chennai
Python course in Chennai
Angular Training in Chennai
ccna Training in Anna Nagar
ccna Training in T Nagar
This is best one article so far I have read online, I would like to appreciate you for making it very simple and easy
ReplyDeleteRegards,
Devops Training Institute in Chennai
Really good to read thanks for sharing
ReplyDeleteblue prism training institute in chennai
Thanks for your note its useful stuff. If you need cybersecurity related training please go through with this link. CEH Training In Hyderabad
ReplyDeleteReally excellent blog,thanks for sharing.
ReplyDeleteaws training in bangalore | python training in bangalore | artificial intelligence training in bangalore | blockchain training in bangalore
It is a great job, I like your posts and wish you all the best.
ReplyDeleteCEH Training In Hyderbad
Accord IT Training is providing Best Java Training Institute in Chennai with placement.
ReplyDeletefor any queries
contact on +91 9940289059
#Java Institute
#Java Training in chennai
#Core Java Training in Chennai
This article is very much helpful and i hope this will be an useful information for the needed one.Keep on updating these kinds of informative things...
ReplyDeleteDevops Training in Chennai | Devops Training Institute in Chennai
Amazing Post Thanks for sharing admin
ReplyDeleteAI Artificial Intelligence Training in Chennai | RPA Robotic Process Automation Training in Chennai | Internet of Things IOT Training in Chennai
thanks for Providing a Great Info
ReplyDeleteanyone want to learn advance devops tools or devops online training visit:
DevOps Training
DevOps Online Training
DevOps Training institute
in Hyderabad
DevOps Training in Ameerpet
Nice Article !!! Great Share
ReplyDeleteuber luxury homes in chennai
luxury properties for sale in chennai
buy luxury properties in chennai
ReplyDeleteReally awesome blog. Your blog is really useful for me
Regards,
Devops Training in Chennai | Best Devops Training Institute in Chennai
devops certification Courses in chennai
You are doing a great job. I would like to appreciate your work for good accuracy
ReplyDeleteRegards,
Devops Training in Chennai | Best Devops Training Institute in Chennai
devops certification Courses in chennai
Hey, would you mind if I share your blog with my twitter group? There’s a lot of folks that I think would enjoy your content. Please let me know. Thank you.
ReplyDeleteAWS Training in Chennai
Data Science Training in Chennai
Great Article… I love to read your articles because your writing style is too good, its is very very helpful for all of us and I never get bored while reading your article because, they are becomes a more and more interesting from the starting lines until the end.
ReplyDeleteCheck out : big data training in chennai
big data course in chennai
big data hadoop training in chennai
big data certification in chennai
Nice Article !!! Great Share
ReplyDeleteluxury villas in chennai for sale
luxury homes in chennai
buy luxury properties in chennai
ReplyDeleteHello, I read your blog occasionally, and I own a similar one, and I was just wondering if you get a lot of spam remarks? If so how do you stop it, any plugin or anything you can advise? I get so much lately it’s driving me insane, so any assistance is very much appreciated.
Android Course Training in Chennai | Best Android Training in Chennai
Selenium Course Training in Chennai | Best Selenium Training in chennai
Devops Course Training in Chennai | Best Devops Training in Chennai
You are doing a great job. I would like to appreciate your work for good accuracy
ReplyDeleteRegards,
PHP Training in Chennai | PHP Course in Chennai | Best PHP Training Institute in Chennai
Very Interesting, Good Post Keep it up
ReplyDeleteHere Realated:
Full Stack online Training
Full Stack Developer Online Training
Full Stack Training
This is most informative and also this post most user friendly and super navigation to all posts... Thank you so much for giving this information to me..
ReplyDeleteArtificial training Institution in Chennai | Artificial training Institution in Chennai
Really good to read this post thanks for sharing
ReplyDeletejava training in Chennai |
java training Institute in Chennai
Wonderful Post. Brilliant piece of work. It showcases your in-depth knowledge. Thanks for Sharing.
ReplyDeleteIonic Training in Chennai
Ionic Course in Chennai
Ionic Training Course
Ionic Framework Training
Ionic Training near me
Ionic Training in Velachery
Ionic Training in Tambaram
And indeed, I’m just always astounded concerning the remarkable things served by you. Some four facts on this page are undeniably the most effective I’ve had.
ReplyDeleteJava Training in Chennai |Best Java Training in Chennai
C C++ Training in Chennai |Best C C++ Training Institute in Chennai
Data science Course Training in Chennai |Best Data Science Training Institute in Chennai
RPA Course Training in Chennai |Best RPA Training Institute in Chennai
AWS Course Training in Chennai |Best AWS Training Institute in Chennai
Thanks for sharing this information and keep updating us.it will really helpful for Career Growth.Really it was an awesome article.
ReplyDeleteSalesforce training in Noida | Salesforce Consulting Partners | Salesforce Implementation Partner
A model is a person with a function either to sell, show or market it industrial products (appreciably style garb in style indicates), or to serve as a visual useful resource for individuals who are creating works of artwork or to pose for images +919910294610.
ReplyDeleteWhatsapp number - 9910294610
Arvind Rawat model in Noida
Visit here
Arvind Rawat Model in Noida
Arvind Rawat Model in Noida
Best kitchen chimney installation and service in NCR
ReplyDeleteWhen cooking with oil, you will see the fact that smoke usually receives emitted in case you often uses the identical oil. Typically, these form of eating places have today's hoods as well as exhaust fans.
Visit here
Kitchen Chimney Repair Service in Noida
Kitchen Kitchen Chimney Repair Service in Vaishali
Kitchen Kitchen Chimney Repair Service in indirapuram
Kitchen Kitchen Chimney Repair Service in vasundhra
Kitchen Kitchen Chimney Repair Service in faridabad
url
http://kitchenware.ml/home/kitchen-chimney-repair-service-in-noida
http://kitchenware.ml/kitchen-chimney-repair-service-in-vaishali
http://kitchenware.ml/kitchen-chimney-repair-service-in-indirapuram
http://kitchenware.ml/kitchen-chimney-repair-service-in-vasundhra–
http://kitchenware.ml/kitchen-chimney-repair-service-in-faridabad
Acknowledge the full Digital Marketing course within your budget with some special discounted offers ! Hurry Up
ReplyDeletegoogle certified digital marketing course in delhi
Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.
ReplyDeleteDotnet Training in Chennai |Best Dotnet Training course in Chennai
Android Training in Chennai |Best Android Training course in Chennai
CCNA Training in Chennai | Best CCNA Training course in Chennai
MCSE Training in Chennai |Best MCSE Training course in Chennai
Embedded Systems Training in Chennai |Best Embedded Systems Training course in Chennai
Matlab Training in Chennai | Best Matlab Training course in Chennai
Unix Training in Chennai | Best Unix Training in Chennai
Sql Training in Chennai | Best Sql Training in Chennai
Oracle Training in Chennai | Best Oracle Training in Chennai
Digital Marketing Training in Chennai | Best Digital Marketing Training in Chennai
SVR Technologies provide Mulesoft Training with Mulesoft Video Tutorials, Live Project, Practicals - Realtime scenarios, CV, Interview and Certification Guidance.
ReplyDeleteSVR Technologies MuleSoft training is designed according to the latest features of Mule 4.It will enable you to gain in-depth knowledge on concepts of Anypoint Studio Integration techniques, testing and debugging of Mule applications, deploying and managing the Mule applications on the cloud hub, dataweave transformations, etc. You will also get an opportunity to work on two real-time projects under the guidance of skilled trainers during this training.
Enquire Now: +91 9885022027
Enroll Now: https://bit.ly/2OCYVgv
Features:
>> Live Instructor LED Classes
>> Experienced Faculty
>> Free Video materials
>> 24/7 Support
>> Flexible Timings
>> Lowest Fee
MULESOFT KEYWORDS
-----
mulesoft training,
mulesoft training india,
mulesoft training in ameerpet,
mulesoft training hyderabad,
mule esb training,
mule esb tutorial,
mulesoft certification,
mulesoft videos,
mulesoft training mule 4,
mulesoft mule 4 training,
mulesoft 4 self training,
mulesoft training,
mulesoft training india,
mulesoft training in ameerpet,
mulesoft training hyderabad,
mule esb training,
mule esb tutorial,
mulesoft certification,
mulesoft videos,
mulesoft training mule 4,
mulesoft mule 4 training,
mulesoft 4 self training,
ReplyDeleteOutstanding blog thanks for sharing such wonderful blog with us ,after long time came across such knowlegeble blog. keep sharing such informative blog with us.
big data hadoop training in chennai | big data training and placement in chennai | big data certification in chennai | big data hadoop interview quesions and answers pdf
Great share ! Good Article !
ReplyDeleteluxclusive homes for rent
warehouses for sale in chennai
factory for sale in chennai
This blog is very nice! You have been providing the valuable content and I was satisfied with your great post. I am always following your blog, please keep posting...
ReplyDeleteLinux Training in Chennai
Linux Course in Chennai
Best Linux Training Institute in Chennai
Excel Training in Chennai
Oracle Training in Chennai
Unix Training in Chennai
Tableau Training in Chennai
Embedded System Course Chennai
Oracle DBA Training in Chennai
Primavera Training in Chennai