Kuassi Mensah
db360.blogspot.com | @kmensah | https://www.linkedin.com/in/kmensah
Introduction
Node.js
and server-side JavaScript are hot and trendy; per the latest “RedMonk Programming Languages Rankings”[1],
JavaScript and Java are the top two programming languages. For most developers
building modern Web, mobile, and cloud based applications, the ability to use
the same language across all tiers (client, middle, and database) feels like
Nirvana but the IT landscape is not a green field; enterprises have invested a
lot in Java (or other platforms for that matter) therefore, the integration of JavaScript
with it becomes imperative. WebSockets and RESTful services enable loose integration
however, the advent of JavaScript engines on the JVM (Rhino, Nashorn, DynJS),
and Node.js APIs on the JVM (Avatar.js, Nodyn, Trireme), make possible and very
tempting to co-locate Java and Node applications on the same JVM.
This paper describes the steps for running JavaScript stored procedures[2] directly on the embedded JVM in Oracle database 12c and the steps for running Node.js applications on the JVM against Orace database 12c, using Avatar.js, JDBC and UCP.
This paper describes the steps for running JavaScript stored procedures[2] directly on the embedded JVM in Oracle database 12c and the steps for running Node.js applications on the JVM against Orace database 12c, using Avatar.js, JDBC and UCP.
JavaScript and the Evolution of Web Applications Architecture
At
the beginning, once upon a time, long time ago, JavaScript was a browser-only
thing while business logic, back-end services and even presentations where handled/produced
in middle-tiers using Java or other platforms and frameworks. Then JavaScript
engines (Google’s V8, Rhino) leave the browsers and gave birth to server-side
JavaScript frameworks and Node.js.
Node Programming Model
Node.js
and similar frameworks bring ease of development rapid prototyping,
event-driven, and non-blocking programming model[3]
to JavaScript. This model is praised for its scalability and good enough performance
however, unlike Java, Node lacks standardization in many areas such as database
access i.e., JDBC equivalent, and may lead, without discipline, to the so
called “callback hell[4]”.
Nonetheless, Node is popular and has a vibrant community and a large set of frameworks[5].
Nonetheless, Node is popular and has a vibrant community and a large set of frameworks[5].
Node Impact on Web Applications
Architecture
With
the advent of Node, REST and Web Sockets, the architecture of Web applications
has evolved into
(i) plain JavaScript on browsers (mobiles, tablets, and
desktops);
(ii) server-side JavaScript modules (i.e., Node.js, ORM frameworks)
interacting with Java business logic and databases.
The
new proposal for Web applications architecture is the integration of Node.js and
Java on the JVM. Let’s discuss the enabling
technologies: JavaScript engine on the JVM and Node API on the JVM and describe
typical use cases with Oracle database 12c.
JavaScript on the JVM
Why implement a JavaScript engine
and run JavaScript on the JVM? For starters, i highly recommend Mark Swartz ‘s http://moduscreate.com/javascript-and-the-jvm/
and Steve Yegge’s http://steve-yegge.blogspot.com/2008/06/rhinos-and-tigers.html
blog posts.
In summary, the JVM brings (i) portability; (ii) manageability; (iii) Java tools; (iv) Java libraries/technologies such as JDBC, Hadoop; and (v) the
preservation of investments in Java.
There are several implementations/projects of Java based JavaScript engines including Rhino, DynJS and Nashorn.
Rhino
First JavaScript engine entirely written in Java; started at NetScape in 1997 then, became an
open-source Mozilla project[6]. Was for quite some time the default JavaScript
engine in Java SE, now replaced by
Nashorn in Java SE 8.
DynJS
DynJS is another open-source JavaScript
engine for the JVM. Here is the project homepage http://dynjs.org/.
Nashorn
Introduced in Java 7 but “production” in Java 8[7], the goal of project Nashorn (JEP 174), is to enhance the performance and security of the Rhino JavaScript engine on the JVM. It integrates with javax.script API (JSR 223) and allows seamless interaction between Java and JavaScript (i.e., invoking Nashorn from Java and invoking Java from Nashorn).
Introduced in Java 7 but “production” in Java 8[7], the goal of project Nashorn (JEP 174), is to enhance the performance and security of the Rhino JavaScript engine on the JVM. It integrates with javax.script API (JSR 223) and allows seamless interaction between Java and JavaScript (i.e., invoking Nashorn from Java and invoking Java from Nashorn).
To illustrate the reach of Nashorn on the JVM and the interaction between Java
and JavaScript, let’s run some JavaScript directly on the database-embedded JVM
in Oracle database 12c.
JavaScript Stored Procedures
with Oracle database 12c Using Nashorn
Why
would anyone run JavaScript in the database? For the same reasons you’d run
Java in Oracle database. Then you might ask: why run Java in the database, in
the first place? As discussed in my book[8],
the primary motivations are:
(i) reuse skills and code, i.e., which programming
languages are your new hire knowledgeable of or willing to learn;
(ii) avoid
data shipping[9] i.e.,
in-place processing of billions of data/documents;
(iii) combine SQL with foreign
libraries to achieve new database capability thereby extending SQL and the reach
of the RDBMS, e.g., Web Services callout, in-database container for Hadoop[10].
Some developers/architects prefer a tight separation between the RDBMS and
applications therefore, no programming language in the database[11]but
there are many pragmatic developers/architects who run code near data, whenever
it is more efficient than shipping data to external infrastructure.
Co-locating
functions with data on the same compute engine is shared by many programming
models such as Hadoop. With the surge and prevalence of Cloud computing, RESTful
service based architecture is the new norm. Data-bound services can be secured
and protected by the REST infrastructure, running outside the RDBMS. Typical
use case: a JavaScript stored
procedures service would process millions/billions of JSON documents in the Oracle database and would return the result sets to the service invoker.
To conclude, running Java, JRuby, Python, JavaScript, Scala, or other programming language on the JVM in the database is a sound architectural choice. The best practices consist in: (i) partitioning applications into data-bound and compute-bound modules or services; (ii) data-bound services are good candidates for running in the database; (iii) understand Oracle database DEFINER INVOKER rights [12] and grant only the necessary privilege(s) and/or permission(s).
The Steps
The following steps allow implementing
JavaScipt stored procedure running in
Oracle database; these steps represent an enhancement from the ones presented
at JavaOne and OOW 2014 -- which consisted in reading the JavaScript from the file system; such approach required granting extra privileges to the
database schema for reading from RDBMS file system something not recommended
from security perspective. Here is a safer approach:
1.
Nashorn
is part of Java 8 but early editions can be built for Java 7; the embedded
JavaVM in Oracle database 12c supports Java 6 (the default) or Java 7. For this
proof of concept, install Oracle database 12c with Java SE 7 [13]
2.
Build
a standard Nashorn.jar[14];
(ii) modify the Shell code to interpret the given script name as an OJVM
resource; this consists mainly in invoking getResourceAsStream()
on
the current thread's context class loader ; (iii) rebuild Nashorn.jar with the
modified Shell
3. Load the modified
Nashorn jar into an Oracle database shema e.g., HR
loadjava -v -r -u hr/ nashorn.jar
loadjava -v -r -u hr/
4.
Create
a new dbms_javascript package for invoking Nashorn’s Shell
with a script name as parameter
create or replace package dbms_javascript as
procedure run(script varchar2);
end;
/
create or replace package body dbms_javascript as
procedure run(script varchar2) as
language java name 'com.oracle.nashorn.tools.Shell.main(java.lang.String[])';
end;
/
Then call dbms_javascript,run(‘myscript.js’) from SQL which will invoke Nashorn Shell to execute the previously loaded myscript.js .
create or replace package dbms_javascript as
procedure run(script varchar2);
end;
/
create or replace package body dbms_javascript as
procedure run(script varchar2) as
language java name 'com.oracle.nashorn.tools.Shell.main(java.lang.String[])';
end;
/
Then call dbms_javascript,run(‘myscript.js’) from SQL which will invoke Nashorn Shell to execute the previously loaded myscript.js .
5. Create a custom
role, we will name it NASHORN, as follows, connected as SYSTEM
SQL> create role nashorn;
SQL> call dbms_java.grant_permission('NASHORN', 'SYS:java.lang.RuntimePermission', 'createClassLoader', '' );
SQL> call dbms_java.grant_permission('NASHORN', 'SYS:java.lang.RuntimePermission', 'getClassLoader', '' );
SQL> call dbms_java.grant_permission('NASHORN', 'SYS:java.util.logging.LoggingPermission', 'control', '' );
SQL> create role nashorn;
SQL> call dbms_java.grant_permission('NASHORN', 'SYS:java.lang.RuntimePermission', 'createClassLoader', '' );
SQL> call dbms_java.grant_permission('NASHORN', 'SYS:java.lang.RuntimePermission', 'getClassLoader', '' );
SQL> call dbms_java.grant_permission('NASHORN', 'SYS:java.util.logging.LoggingPermission', 'control', '' );
Best practice: insert those statements
in a nash-role.sql
file
and run the script as SYSTEM
6.
Grant
the NASHORN role created above to the HR schema as
follows (connected as SYSTEM):
SQL> grant NASHORN to HR;
SQL> grant NASHORN to HR;
7.
Insert
the following JavaScript code in a file e.g., database.js
stored on your client machine’s (i.e., a machine
from which you will invoke loadjava as explained in the next step).
This script illustrates using JavaScript and Java as it uses the server-side JDBC driver to execute a PreparedStatement to retrieve the first and last names from the EMPLOYEES table.
This script illustrates using JavaScript and Java as it uses the server-side JDBC driver to execute a PreparedStatement to retrieve the first and last names from the EMPLOYEES table.
var Driver =
Packages.oracle.jdbc.OracleDriver;
var oracleDriver = new Driver();
var url = "jdbc:default:connection:"; // server-side JDBC driver
var query ="SELECT first_name, last_name from employees";
// Establish a JDBC connection
var connection = oracleDriver.defaultConnection();
// Prepare statement
var preparedStatement = connection.prepareStatement(query);
// execute Query
var resultSet = preparedStatement.executeQuery();
// display results
while(resultSet.next()) {
print(resultSet.getString(1) + "== " + resultSet.getString(2) + " " );
}
// cleanup
resultSet.close();
preparedStatement.close();
connection.close();
var oracleDriver = new Driver();
var url = "jdbc:default:connection:"; // server-side JDBC driver
var query ="SELECT first_name, last_name from employees";
// Establish a JDBC connection
var connection = oracleDriver.defaultConnection();
// Prepare statement
var preparedStatement = connection.prepareStatement(query);
// execute Query
var resultSet = preparedStatement.executeQuery();
// display results
while(resultSet.next()) {
print(resultSet.getString(1) + "== " + resultSet.getString(2) + " " );
}
// cleanup
resultSet.close();
preparedStatement.close();
connection.close();
8.
Load
database.js in the database as a Java
resource (not a vanilla class)
loadjava –v –r –u hr/ database.js
loadjava –v –r –u hr/
9.
To
run the loaded script
sqlplus hr/
SQL>set serveroutput on
SQL>call dbms_java.set_output(80000)
SQL>call dbms_javascript.run(‘database.js’);
SQL>set serveroutput on
SQL>call dbms_java.set_output(80000)
SQL>call dbms_javascript.run(‘database.js’);
The Nashorn Shell reads ‘database.js’ script stored as Java Resource from internal table; the JavaScript in its turn invokes JDBC to execute a PreparedStatement and the result set is displayed on the console. The message “ORA=29515: exit called from Java code with status 0” is due to the invocation of java.lang.Runtime.exitInternal; and status 0 means normal exit (i.e., no error). The fix is to remove that call from Nashorn.
Node.js on the JVM
As
discussed earlier, Node.js is becoming the man-in-the-middle between Web
applications front ends and back-end legacy components and since companies have
invested a lot in Java, it is highly desirable to co-locate Node.js and Java components
on the same JVM for better integration thereby eliminating the communication
overhead. There are several projects re-implementing Node.js APIs on the JVM
including: Avatar.js, Nodyn, and Trireme. This paper will only discuss Oracle’s
Avatar.js.
Project Avatar.js[15]
The goal of project Avatar.js
is to furnish “Node.js on the JVM”;
in other words, an implementation of Node.js APIs, which runs on top of Nashorn
and enables the co-location of Node.js programs and Java components. It has
been outsourced by Oracle under GPL license[16].
Many Node frameworks and/or applications have been certified to run unchanged
or slightly patched, on Avatar.js.
There are binary
distributions for Oracle Enterprise Linux, Windows and MacOS (64-bits). These builds
can be downloaded from https://maven.java.net/index.html#welcome.
Search
for avatar-js.jar and platform specific libavatar-js libraries (.dll,
.so, dylib).
Get the latest and rename the jar and the specific native libary accordingly. For
example: on Linux, rename the libary to avatar-js.so; on Windows, rename
the dll to avatar-js.dll and add its location to your
PATH (or use -Djava.library.path=).
RDBMSes
in general and Oracle database in particular remain the most popular
persistence engines and there are RDBMS specific Node drivers[17]
as well as ORMs frameworks. However, as we will demonstrate in the following
section, with Avatar.js, we can simply reuse existing Java APIs including JDBC
and UCP for database access.
Node Programming with Oracle Database using Avatar.js, JDBC and UCP
The goal of this proof of concept is to
illustrate the co-location of a Node.js application, the Avatar.js library, the
Oracle JDBC driver and the Oracle Universal Connection Pool (UCP) on the same
Java 8 VM.
The sample application consists in a Node.js
application which performs the following actions:
(i) Request a JDBC-Thin connection from the
Java pool (UCP)
(ii)Create a PreparedStatement object for “SELECT FIRST_NAME, LAST_NAME
FROM EMPLOYEES”
(iii)Execute the statement and return the ResultSet in a callback
(iv)Retrieve the rows and display in browser on port 4000
(iii)Execute the statement and return the ResultSet in a callback
(iv)Retrieve the rows and display in browser on port 4000
(v) Perform all steps above in a non-blocking
fashion – this is Node.js’s raison d’être.
The demo also uses Apache ab load generator to simulate concurrent users running the same application
in the same/single JVM instance.For the Node application to scale in the absence of
asynchronous JDBC APIs, we need to turn synchronous calls into non-blocking
ones and retrieve the result set via callback.
Turning Synchronous JDBC Calls into Non-Blocking Calls
We will use the following wrapper functions to
turn any JDBC call into a non-blocking call i.e., put the JDBC call into a
thread pool and free up the Node event loop thread.
var makeExecutecallback =
function(userCallback) {
return function(name, args){
...
userCallback(undefined, args[1]);
}
}
return function(name, args){
...
userCallback(undefined, args[1]);
}
}
function submit(task, callback, msg) {
var handle = evtloop.acquire();
try { var ret = task();
evtloop.post(new EventType(msg, callback, null, ret)); {catch{}
var handle = evtloop.acquire();
try { var ret = task();
evtloop.post(new EventType(msg, callback, null, ret)); {catch{}
evtloop.submit(r);
}
}
Let’s apply these wrapper functions to
executeQuery JDBC call, to illustrate the concept
exports.connect =
function(userCallback) {..} // JDBC and UCP settings
Statement.prototype.executeQuery
= function(query, userCallback) {
var statement = this._statement;
var task = function() {
return statement.executeQuery(query);
}
submit(task, makeExecutecallback(userCallback), "jdbc.executeQuery");
}
var statement = this._statement;
var task = function() {
return statement.executeQuery(query);
}
submit(task, makeExecutecallback(userCallback), "jdbc.executeQuery");
}
Similarly the same
technique will be applied to other JDBC statement APIs.
Connection.prototype.getConnection
= function() {…}
Connection.prototype.createStatement
= function() {..}
Connection.prototype.prepareCall
= function(storedprocedure) {..}
Statement.prototype.executeUpdate
= function(query, userCallback) {..}
Returning Query ResultSet through a Callback
The application code fragment hereafter shows
how: for every HTTP request: (i) a connection is requested, (ii) the
PreparedStatement is executed, and (iii) the result set printed on port 4000.
...
var ConnProvider =
require('./connprovider').ConnProvider;
var connProvider = new ConnProvider(function(err, connection){.. });
var server = http.createServer(function(request, response) {
connProvider.getConn(function(name,data){..});
connProvider.prepStat(function(resultset) {
while (resultset.next()) {
response.write(resultset.getString(1) + " --" + resultset.getString(2));
response.write('
');
}
response.write('
');var connProvider = new ConnProvider(function(err, connection){.. });
var server = http.createServer(function(request, response) {
connProvider.getConn(function(name,data){..});
connProvider.prepStat(function(resultset) {
while (resultset.next()) {
response.write(resultset.getString(1) + " --" + resultset.getString(2));
response.write('
');
}
response.write('
response.end();
}
server.listen(4000, '127.0.0.1');
Using Apache
AB, we were able to scale to hundreds of simultaneous invocations of the Node application.
Each instance grabs a Java connection from The Universal Connection Pool (UCP),
executes the SQL statements through JDBC then return the result set via a Callbak
on port 4000.
Conclusions
Through this paper, i
discussed the rise of JavaScript for server-side programming and how Java is
supporting such evolution; then – something we set out to demonstrate –
furnished step by step details for implementing and running JavaScript stored
procedures in Oracle database 12c using Nashorn as well as running Node.js
applications using Avata.js, Oracle JDBC, UCP against Oracle database 12c.
As server-side JavaScript (typified by Node.js)
gains in popularity it’ll have to integrate with existing components (COBOL is still alive!!). Developers, architects will have to look into co-locating JavaScript with Java, across middle and database tiers.
[1] http://redmonk.com/sogrady/2015/01/14/language-rankings-1-15/
[2] I’ll discuss the rationale
for running programming languages in the database, later in this paper.
[3] Request for I/O and resource intensive components run in separate process then
invoke a Callback in the main/single Node
thread, when done.
[4] http://callbackhell.com/
[6] https://developer.mozilla.org/en-US/docs/Mozilla/Projects/Rhino
[8] http://www.amazon.com/exec/obidos/ASIN/1555583296
[9] Rule of thumb: when processing more than ~20-25% of target
data, do it in-place, where data resides (i.e., function shipping).
[10] In-database Container for
Hadoop is not available, as of this writing.
[11] Other than database’s specific procedural language, e.g.,
Oracle’s PL/SQL
[12] I discuss this in chapter 2
of my book; see also Oracle database docs.
[13] See Multiple JDK Support in http://docs.oracle.com/database/121/JJDEV/E50793-03.pdf
[14] Oracle does not furnish a
public download of Nashorn.jar for Java 7; search “Nashorn.jar for Java 7”.
[15] https://avatar-js.java.net/
[16] https://avatar-js.java.net/license.html
[17] The upcoming Oracle Node.js
driver was presented at OOW 2014.
183 comments:
Its a nice blog posted by you. I was seeking for this type of blog that have a fresh and interesting Javascript and nodejs articles.
Nice post Kuassi! I'm finally interested in learning more about Nashorn! :)
Thanks for sharing. I hope it will be helpful for too many people that are searching for this topic.
Signature:
download free descargar whatsapp gratis and download baixar whatsapp gratis online and descargar whatsapp , baixar whatsapp
Luckily there are good-hearted doctor to arrange for beautiful accommodation all know facebook entrar a mi perfil , facebook entrar a mi cuenta , facebook login entrar , go girl games , facebook entrar , facebook entrar , facebook entrar
Thanks for sharing. I hope it will be helpful for too many people that are searching for this topic.
Signature:
The place to play all unblocked games online. Here you can find every blocked games such as: unblockedgames , unblocked games happy , unblocked games 77 , gmod
It's a wonderful article about Javascript,..
angularjs
Im no expert, but I believe you just made an excellent You certainly understand what youre speaking about, and I can truly get behind that.
Regards,
Node JS training|Node JS training in chennai
Thanks for the information. Hope devotes will be careful after reading this post.Regards
Cassandra Training in Chennai
Keep sharing more informative posts like that
AngularJs development companies
it's really a helpful post,.
javascript image editor
Thanks for sharing up–to-date on this subject! I find it is very informative and very well written one! Keep up on this quality!
I respect such vision /principle but there are many pragmatic developers and architects out there who
run programming languages code near data, when it is more efficient than shipping data to external
infrastructure. Co-locating functions with data on the same compute engine is shared by many
programming models such as Hadoop. Selenium Training in Bangalore
Python Training in Bangalore
very nice blogs!!! i have to learning for lot of information for this sites...Sharing for wonderful information about the web design and web development.Thanks for sharing this valuable information to our vision. You have posted a trust worthy blog keep sharing.
Hire Nodejs Developers
Nodejs Development Company
Nice article
NodeJS Development Company
Nice blog Python training in bangalore
nice blog helpful to everyone python training in bangalore
Thanks for sharing this information. Its useful detail about Nodejs. Nodejs Training in Bangalore
Thnks. very helpfully article. Website Development Services
Nice Blog
datascience training in bangalore
powershell training in bangalore
gst training in bangalore
web designing training in bangalore
Thanks, Learned a lot of new things from your post! Good creation and HATS OFF to the creativity of your mind.
Very interesting and useful blog!
javascript Training in Gurgaon
Very nice blog...
Learn Node.js Training in Bangalore
It is very interesting to learn from to easy understood. Thank you for giving information. Please let us know and more information get post to link.
salesforce adm 201 online training
extremely pleasant web journals!!! I need to learning for part of data for this sites...Sharing for awesome data about the website composition and web development.Thanks for sharing this significant data to our vision. You have posted a trust commendable blog continue sharing.
Article Submission sites
very nice information about NODE JS NODE JS FRAME WORK
THANK YOU
Thanks for sharing. I hope it will be helpful for too many people that are searching for this topic.
Mobile app development company Bangalore!
Android apps development companies in Bangalore!
iOS App development company Bangalore!
Interesting blog. It would be great if you can provide more details about it. Thank you
Node js Developer
Wonderful article, very useful and well explanation. Your post is extremely incredible. I will refer this to my candidates...Digital Marketing Training in Mumbai
It’s great to come across a blog every once in a while that isn’t the same out of date rehashed material. Fantastic read.
Digital Marketing Training in Mumbai
Six Sigma Training in Dubai
Six Sigma Abu Dhabi
Thank you for posting the valuable information.
NodeJS Online Training in Hyderabad
This is so amazing post, i really like your article. Thanks for it, keep sharing!
DevOps Online Training
This is what I was looking for! I've been following your blog for a while. I am greatly impressed by your work. You are taking so much effort and it makes your blog worth reading. Looking forward for more from you.
Javascript Training in Chennai | Javascript Training Center in Chennai | Javascript Training Courses | Javascript Training Institute in Chennai
As a Node.JS development company, Augurs is offering an affordable Node.JS development service for web applications and web development across the world.
Nice Blog
Thank you for sharing...
Software training courses in hyderabad | Sql server DBA course training courses in hyderabad
Informative blog
Very helpful
Brolly- Training and marketing services | Digital marketing course with internship
Nicely written. Thanks for sharing the useful blog about JavaScript Stored Procedures and Node.js Applications with Oracle Database 12c.
Web Application Development Company in Coimbatore
Its Nice Blog with information and thanks for sharing your ideas.
Anika Digital Media
Thanks for sharing this Informative content.
Javascript Training in Noida
Javascript Training institute in Noida
very nice article Leading data science training in ameerpet
A debt of gratitude is in order for one sublime posting! I delighted in understanding it; you are an incredible creator. I will make a point to bookmark your blog and may return sometime in the future. Very Nicely Written Article on Data Science Technology
Java Training | Java Training Institute | Java Training in Chennai | Java Training Institute in Chennai
Tableau Training | Tableau Course | Tableau Training in Chennai | Tableau Course in Chennai
Thanks for posting useful information.You have provided an nice article, Thank you very much for this one. And i hope this will be useful for many people.. and i am waiting for your next post keep on updating these kinds of knowledgeable things...Really it was an awesome article...very interesting to read..please sharing like this information......
best mobile service center in chennai
best mobile service center in chennai
mobile service center in velacherry
Thanks for sharing this Informative content.
oracle training in chennai
Your post is very neat and very decent. I am always like your post and your explanation is very nice. It's very good info and thanks to you!
Primavera Training in Chennai
Primavera Course in Chennai
Tableau Training in Chennai
Spark Training in Chennai
Power BI Training in Chennai
Excel Training in Chennai
Oracle Training in Chennai
Oracle DBA Training in Chennai
Social Media Marketing Courses in Chennai
It was really an interesting blog, Thank you for providing unknown facts.
Oracle training in Chennai
Keep sharing more informative posts like that
Oracle training in chennai
Thank you sharing this kind of noteworthy information. Nice Post.
imedicalassistants
Article submission sites
This information is quite useful, I truly enjoyed. Thanks for this blog.
core java training in chennai
core java course
C C++ Training in Chennai
C++ Training in Chennai
javascript course
javascript training institute in chennai
core java training
clinical sas training
Thank you for sharing such great information very useful to us.
Javascript Training in Delhi
Thanks for sharing this valuable information. Check on the below link if you are looking for best JAVA training in chennai.
Java Training In Chennai
Nice idea,keep sharing your ideas with us.i hope this information's will be helpful for the new learners.
Software Testing Training in Chennai
software testing course in chennai
JAVA Training in Chennai
Python Training in Chennai
Big data training in chennai
Selenium Training in Chennai
Software Testing Training in Chennai
Software testing training in OMR
very useful info, and please keep updating........
Oracle training in chennai
This is very nice information, Thank you so much for sharing your knowledge. Keep sharing!
Angular JS Training in Noida
Oracle Training Institutes in Noida
I have gone through your blog, it was very much useful for me and because of your blog, and also I gained many unknown information, the way you have clearly explained is really fantastic. Kindly post more like this, Thank You.
best aviation academy in Chennai
best air hostess training institute in Chennai
airline management courses in Chennai
airport ground staff training in Chennai
Aviation Academy in Chennai
air hostess training in Chennai
airport management courses in Chennai
ground staff training in Chennai
Thank you for sharing the article. The data that you provided in the blog is informative and effective.
Best Devops Training Institute
very nice and great blog with useful information Best python course in ameerpet
Thank you for sharing such great information very useful to us.
Web Designing Training in Noida
Python Web Development Company in Lucknow India,
Best Python Developers in Lucknow India,
Offshore Python Programmers in Lucknow India,
Hire Best PHP Developers in Lucknow India,
Professional PHP Agency in Lucknow India,
Thanks for sharing the useful Information.
Full Stack Online Training
Thanks for sharing Very Use ful Blog..
Node JS Training in Hyderabad
Node JS Training
Node JS Online Training
Node JS Training in Ameerpet
Thank you for sharing more information and nice blog and it is very useful for me
Node JS Training
Node JS Online Training
Best Node JS Training in Ameerpet
Thank you..
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.
website builder for reseller
This is a very amazing post for cheap web hosting services. in this post, you have provided all the basic information regarding.
private label website builder
This is genuinely an awesome read for me. I have bookmarked it and I am anticipating perusing new articles. Keep doing awesome!
white label website builder
Good Post. I like your blog. Thanks for Sharing
Oracle Training Noida
Useful Information, your blog is sharing unique information
Thanks for sharing!!!
Python Training | Java Course in Chennai
Thanks for share your valuable services.i recommend to you to go this website also.
Website Designing Company in Bangalore | Website Development Company in Bangalore | Website Designing Companies in Bangalore
Hey Really Thanks for sharing the best information regarding Oracle, hope you will write more great blogs.
Workday Online Training
I have read your wonderful post and it's very attractive and impressive. I like to add more different details from your great blog.
Pega Training in Chennai
Pega Training
Oracle Training in Chennai
Spark Training in Chennai
Oracle DBA Training in Chennai
Excel Training in Chennai
Embedded System Course Chennai
Tableau Training in Chennai
Linux Training in Chennai
Soft Skills Training in Chennai
Interesting blog. Got a lotb of information about this technology.
pearson vue
french courses in chennai
Blockchain Training in Chennai
Ionic Training in Chennai
Hadoop Admin Training in Chennai
best german classes in chennai
Best Informatica Training in Chennai
Hiii....Thanks for sharing Great information...Nice post....Keep move on....
Angular JS Training in Hyderabad
Excellent blog,I got more useful content from this blog...
Air Hostess Academy in Chennai
Air hostess Training Institute in Bangalore
Air Hostess Training Institute in Mumbai
Airport Management Courses in Bangalore
Airport Management Courses in Chennai
Air Hostess Academy in Chennai
Best Aviation Academy in Chennai
Aviation Training Institutes in Bangalore
Ground staff training in Bangalore
Ground Staff Training in Chennai
The article is so informative. This is more helpful for our
Best online software testing training course institute in chennai with placement
Best selenium testing online course training in chennai
Learn best software testing online certification course class in chennai with placement
Thanks for sharing.
Very good explanation sir. Thank you for sharing
NodeJs Online Training
NodeJs Training in Hyderabad
Thank you for sharing wonderful information with us to get some idea about it.
GCP Training
Google Cloud Platform Training
GCP Online Training
Google Cloud Platform Training In Hyderabad
Wonderful content with useful information. Thanks for sharing it with us. Website Designing Company in Bangalore | Web Design & Development Company in Bangalore | SEO Company in Bangalore | Magento 2 Website Development Bangalore
This one is so informative
iot training in bangalore
Nice blog.
For best AWS training in bangalore, visit:
AWS training in bangalore
visit here=> Best Devops Training in Bangalore
Nice blog...Thanks for sharing useful information..
Python training in Chennai
Python training in OMR
Python training in Velachery
Python certification training in Chennai
Python training fees in Chennai
Python training with placement in Chennai
Python training in Chennai with Placement
Python course in Chennai
Python Certification course in Chennai
Python online training in Chennai
Python training in Chennai Quora
Best Python Training in Chennai
Best Python training in OMR
Best Python training in Velachery
Best Python course in Chennai
Nice blog and thank you for giving me a useful information.
Visit Us- I Digital Academy
Thanks for sharing the valuable information.
NodeJs Online Training
NodeJs Training in Hyderabad
Best NodeJs Training in Hyderabad
NodeJs Training in Ameerpet
It was really a wonderful article and I was really impressed by reading this blog.thanks for your information really good and very nice web design company in velachery
For Big data and Hadoop training in Bangalore
Visit:Big Data And Hadoop Training in Bangalore
Pretty! This has been a really wonderful post. Many thanks for providing this information.
UI Development Training in Marathahalli
Full stack Development Training in Marthahalli Bangalore
UI Development Training in Bangalore
Angular Training in Bangalore
Very good information. Lucky me I ran across your site by accident
Python Training in Marathahalli, Bangalore
Selenium Training in Marathahalli, Bangalore
Reactjs Training in Marathahalli, Bangalore
Erectile dysfunction is a condition where a man is not able to get an erection. Even if they are able to get an erection, it does not last for too long. Suffering from erectile dysfunction can affect the person both physically and mentally. Therefore a person needs to take medical help to make the condition better. Also suffering from erectile dysfunction can affect the relation of the person with their partners. The medication that has brought about a wave of change in this field is the use of Viagra for erectile dysfunction. It works by targeting the basic cause of the issue thus helping millions of men all across the world. If you are a man who has been facing an issue with getting and maintaining an erection for a long time now, then you should
.Buy Viagra online
I learned World's Trending Technology from certified experts for free of cost. I Got a job in decent Top MNC Company with handsome 14 LPA salary, I have learned the World's Trending Technology from Python Training in pune experts who know advanced concepts which can help to solve any type of Real-time issues in the field of Python. Really worth trying Freelance seo expert in bangalore
Thanks for sharing such a great blog Keep posting.
hr contacts database
hr contact database
I could not resist commenting. Perfectly written!
Python Training in Marathahalli, Bangalore
Selenium Training in Marathahalli, Bangalore
Reactjs Training in Marathahalli, Bangalore
This is a topic which is near to my heart... Cheers! Where are your contact details though?
UI Development Training in Bangalore
Angular Training in Bangalore
UI Development Training in Marathahalli
iso 27001 certification services
iso 27001 certification cost
ISO 9001 Certification in Noida
Nice information keep sharing like this.
scaffolding dealers in chennai
Aluminium scaffolding dealers in chennai
Aluminium scaffolding hire
This is the awesome post
business analyst course
Use Full Blog, Thanks for sharing.
Mean stack online training
Mean stack training in hyderabad
I would like to thank you for the efforts you had made for writing this wonderful piece of writing.
Cost of mobile app like byju's
Cost of app like Oyo
Cost to develop AIRBNB App
I have read this article it is really helpful for getting amazing tips on a related topics. You have described everything in a professional way. Web Design And Development Company In Bangalore | Website Design Company In Bangalore | Website Design Company Bangalore | Web Design and
Development Bangalore
Great Article.
Devops Training Institute in Hyderabad
Devops Training Institute in Ameerpet
Devops Online Training in Hyderabad
Devops Online Training in Ameerpet
Thanks for sharing useful information with us....
Microservices Online Training
Microservices Training in Hyderabad
Excellent information, I like your post.
Best Android Application Development Company in kolkata
Best Web Development Company in kolkata
Best Software Development Company in Kolkata
Nice work, your blog is concept-oriented, kindly share more blogs like this
React js Online Training
Angular Training
NodeJS Online Training Hyderabad
This is amazing and really inspiring goal.hadoop training institutes in bangalore
Really very happy to say, your post is very interesting to read. I never stop myself to say something about it.You’re doing a great job. Keep it up...
Bangalore Training Academy located in Bangalore, is one of the best Workday Training institute with 100% Placement support. Workday Training in Bangalore provided by Workday Certified Experts and real-time Working Professionals with handful years of experience in real time Workday Projects.
It’s awesome that you want to share those tips with us. I assume lot of us that commented on this post are just starting to search for different ways of blog promotion and this sounds promising. This is definitely the article that I will try to follow when I comment on others blogs. Cheers
Data Science Training in Hyderabad
Hadoop Training in Hyderabad
Java Training in Hyderabad
Python online Training in Hyderabad
Tableau online Training in Hyderabad
Blockchain online Training in Hyderabad
informatica online Training in Hyderabad
devops online Training
Very interesting, good job and thanks for sharing such a good blog.
Advance your career as a SharePoint Admin Engineer by doing SharePoint Admin Courses from Softgen Infotech located @BTM Layout Bangalore.
Such great information for blogger I am a professional blogger thanks…
Advance your career as a SharePoint Admin Engineer by doing SharePoint Admin Courses from Softgen Infotech located @BTM Layout Bangalore.
Really i appreciate the effort you made to share the knowledge. The topic here i found was really effective...
Learn Blue Prism Course from Experts. Softgen Infotech offers the Best Blue Prism Training in Bangalore .100% Placement Assistance, Live Classroom Sessions, Only Technical Profiles, 24x7 Lab Infrastructure Support.
Thank you for sharing such a nice post!
Learn Blue Prism Course from Experts. Softgen Infotech offers the Best Blue Prism Training in Bangalore .100% Placement Assistance, Live Classroom Sessions, Only Technical Profiles, 24x7 Lab Infrastructure Support.
Norton is an antivirus and security programming for Windows, Mac, iPhone, and Android. It has a wide range of highlights for shielding the gadget from different web dangers and the primary highlights in the Norton that perceives contaminations and has some ability in deflecting threatening substance that may incite unscrambling of your firewall or loss of your own data.
norton.com/setup
Thank you for sharing such a nice post!
Get Best SAP SD Training in Bangalore from Real Time Industry Experts with 100% Placement Assistance in MNC Companies. Book your Free Demo with Softgen Infotech.
Really i appreciate the effort you made to share the knowledge. The topic here i found was really effective...
Looking for SAP S4 HANA Simple Finance Training in Bangalore , learn from eTechno Soft Solutions SAP S4 HANA Simple Finance Training on online training and classroom training. Join today!
Such a great word which you use in your article and article is amazing knowledge. thank you for sharing it.
Looking for SAP S4 HANA Simple Finance Training in Bangalore , learn from eTechno Soft Solutions SAP S4 HANA Simple Finance Training on online training and classroom training. Join today!
Your articles really impressed for me,because of all information so nice.
digital-marketing-course-in-hyderabad/
digital-marketing-agency-in-hyderabad/
selenium-training-in-hyderabad/
salesforce-training-hyderabad/
microsoft-azure-training-in-hyderabad/
Thanks alot for the meaningful article with nice example and explanation.
digital-marketing-course-in-hyderabad/
digital-marketing-agency-in-hyderabad/
selenium-training-in-hyderabad/
salesforce-training-hyderabad/
microsoft-azure-training-in-hyderabad/
Really a awesome blog for the freshers. Thanks for posting the information.
Javascript Training in Delhi
Javascript Training institute in Delhi
Hey.. I checked your blog its really useful.. Provides lot of information.. Do check my blogs also https://exploring2gether.com/fascinating-places-near-dehradun/
hey...It is highly comprehensive and elaborated. Thanks for sharing!
Localebazar- Your single guide for exploring delicious foods, travel diaries and fitness stories.
Visit us for more- localebazar.com
Hey.. Well explained... provides a lot of knowledge... Thanks for sharing !!
Check this out https://exploring2gether.com/red-sauce-pasta-recipe/
We as a team of real-time industrial experience with a lot of knowledge in developing applications in python programming (7+ years) will ensure that we will deliver our best in python training in vijayawada. , and we believe that no one matches us in this context.
Thank you for sharing such a informative and useful post.
Basic Computer Institute in Uttam Nagar
This is a really impressive post. I am inspired with your post, I am waiting for your blogs.
Node JS Online training
Node JS training in Hyderabad
Nice! its really very helpful. thanks for sharing here.
we provide short term Course training in Delhi
Thank For Sharing Valuable information. Join Best Training institute for Machine Learning Training in Bangalore
Thank For Sharing Valuable information. Join Best Training institute for Machine Learning Training in Bangalore
Thanks for sharing such helpful information with us I appreciate your effort of writing a valuable piece. if you want to learn spanish language course. you can contact us.
We as a team of real-time industrial experience with a lot of knowledge in developing applications in python programming (7+ years) will ensure that we will deliver our best in python training in vijayawada. , and we believe that no one matches us in this context.
Is IELTS preparations for giving a headache? Prepare for IELTS with the best trainers in town and provide a remedy to your headache! Classes of Professional Studies is the best IELTS Institute in Delhi. we also provide job oriented Course in Delhi
Good information to know and right to the point.Java training in Abu Dhabi
Java course in Abu Dhabi
Java classes in Abu Dhabi
java Programming in Abu Dhabi
Java programming training in Abu Dhabii'll follow up for more updates if you keep posting them...
hey...It is highly comprehensive and elaborated. Thanks for sharing!
Localebazar Your single guide for exploring delicious foods, travel diaries and fitness stories.
Visit us for more-
localebazar.com
Great info. Thanks for spending your valuable time to share this post.
Node JS Online training
Node JS training in Hyderabad
Thank you for the information.
core java training in hyderabad.
Mind Q Systems provides python training in Hyderabad & Bangalore. Python Training designed for students and professionals. Mind Q Provides 100% placement assistance with python training.
Mind Q Systems is a Software Training Institute in Hyderabad and Bangalore offering courses on Testing tools, selenium, java, oracle, Manual Testing, Angular, Python, SAP, Devops etc.to Job Seekers, Professionals, Business Owners, and Students. We have highly qualified trainers with years of real-time experience.
AWSS
This is a topic that's close to my heart... Best wishes! Exactly where are your contact details though?
Best Advanced Java Training In Bangalore Marathahalli
Advanced Java Courses In Bangalore Marathahalli
Advanced Java Training in Bangalore Marathahalli
Advanced Java Training Center In Bangalore
Advanced Java Institute In Marathahalli
Very well explained and easy to understand. Thanks for sharing !!!!
i also would like to share my content topic on French language course and German language course. please review and share your feedback.
Thanks for sharing the useful Information...
Web Designing Training in Bangalore
There is a high demand for this advanced JS framework among web developers. It lets them develop robust websites and applications for different verticals. And these are the reasons which push business to hire node js web development companies out of leading node js development companies available in the global market for your website requirements.
I really like this information . thanks for sharing such a beautiful information with us. I would like to share some more information on Foreign Language Career . Please share your feedback too
Blockchain training in Bangalore
Great Article & Thanks for sharing.
Oflox Is The Best Digital Marketing Company In Dehradun Or Digital Marketing Institute In Dehradun
The blog or and best that is extremely useful to keep I can share the ideas of the future as this is really what I was looking for, I am very comfortable and pleased to come here. Thank you very much. thnaks
Ai & Artificial Intelligence Course in Chennai
PHP Training in Chennai
Ethical Hacking Course in Chennai Blue Prism Training in Chennai
UiPath Training in Chennai
MP Board 12th Class Blueprint 2021 English Medium & Hindi Medium PDF download, MPBSE 12th Blueprint 2021 Pdf Download, mpbse.nic.in 12th Blue Print, Marking Scheme and Arts, Commerce and Science Streams Chapter wise Weightage pdf download. MP Board 12th Blue Print || MPBSE 12th Model Papers || MPBSE 10th Model Papers
Manabadi AP Intermediate 2nd Year Model Question Paper 2021 MPC, BIPC, CEC, MEC group TM, EM Subject wise Blue Print, Download BIEAP Intermediate Second Year Model Question Papers, AP Senior Inter Test Papers, Chapter wise important Questions download. || AP Inter MPC, Bi.PC, CEC Blue Print || AP Inter 1st / 2nd Year Model Papers || AP 2nd year inter Test Papers
Kar 1st / 2nd PUC Blue Print
Thanks for provide great informatic and looking beautiful blog, really nice required information & the things i never imagined and i would request, wright more blog and blog post like that for us. Thanks you once agian
we offer services delhi birth certificate which inculde name add in birth certificate and birth certificate correction complete process is online and we offer
birth certificate and we offer this birth certificate online same service offers at yourdoorstep at birth certificate in ghaziabad our dream to provide birth certificate in india and other staes like birth certificate in bengaluru and birth certificate in gurgaon book service with us birth certificate in noida also, service at yoursdoorstep only birth certificate in india or
Hi!!!
Hey Wonder full Blog! Thanks for this valuable Information Sharing with us your review is very nice.
Thanks once again for this Wonderful article. Waiting for a more new post
Keep on posting!
Digital Marketing Agency in Coimbatore
SEO Company in Coimbatore
web designing Company in coimbatore
I recently came across your article and have been reading along. I want to express my admiration of your writing skill and ability to make readers read from the beginning to the end. I would like to read newer posts and to share my thoughts with you.
Mulesoft training in bangalore
Mulesoft class in bangalore
learn Mulesoft in bangalore
places to learn Mulesoft in bangalore
Mulesoft schools in bangalore
Mulesoft reviews in bangalore
Mulesoft training reviews in bangalore
Mulesoft training in bangalore
Mulesoft institutes in bangalore
Mule soft trainers in bangalore
learning Mule soft in bangalore
where to learn Mule soft in bangalore
best places to learn Mule soft in bangalore
top places to learn Mule soft in bangalore
Mule soft training in bangalore india
Such a very useful article. Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article.
MongoDB Online Training
MongoDB Classes Online
MongoDB Training Online
Online MongoDB Course
MongoDB Course Online
Very interesting blog Thank you for sharing such a nice and interesting blog and really very helpful article.
Sap Solution Manager Online Training
Sap Solution Manager Classes Online
Sap Solution Manager Training Online
Online Sap Solution Manager Course
Sap Solution Manager Course Online
The heart of an Artificial Intelligence based system is it's model. A model is nothing but a program that improves its knowledge through a learning process by making observations about its environment. machine learning and ai courses in hyderabad
the great page thx for sharing
PHP Training in Chennai | Certification | Online Training Course | Machine Learning Training in Chennai | Certification | Online Training Course | iOT Training in Chennai | Certification | Online Training Course | Blockchain Training in Chennai | Certification | Online Training Course | Open Stack Training in Chennai |
Certification | Online Training Course
Nice Blog it is.
Robotic Process Automation (RPA) Training in Chennai | Robotic Process Automation (RPA) Training in anna nagar | Robotic Process Automation (RPA) Training in omr | Robotic Process Automation (RPA) Training in porur | Robotic Process Automation (RPA) Training in tambaram | Robotic Process Automation (RPA) Training in velachery
It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful
AWS training in Chennai
AWS Online Training in Chennai
AWS training in Bangalore
AWS training in Hyderabad
AWS training in Coimbatore
AWS training
Am really impressed about this blog because this blog is very easy to learn and understand clearly.This blog is very useful for the college students and researchers to take a good notes in good manner,I gained many unknown information.
Data Science Training In Chennai
Data Science Online Training In Chennai
Data Science Training In Bangalore
Data Science Training In Hyderabad
Data Science Training In Coimbatore
Data Science Training
Data Science Online Training
Great Article… I love to read your articles because your writing style is too good, it is very helpful for all of us and I never get bored while reading your article because they are becomes more and more interesting from the starting lines until the end.
Spring Boot and Micro services Training in Gurgaon
Java Training in Gurgaon
Java Framawork Training in Gurgaon
Thank you, its helps to learn more about javascript concept.
Ah,so beautiful and wonderful post!An opportunity to read a fantastic and imaginary blogs.It gives me lots of pleasure and interest.Thanks for sharing.
Data Science Training In Chennai
Data Science Course In Chennai
nice post!!
Thank you for your information
Gowebs kolkata
https://www.gowebs.in
wonderful article!!
website design company
Thank you so much for sharing this informative blog
web design company in Kolkata
https://www.gowebs.in/web-design-kolkata
amazing blog!!
Thank you
logo design company in Kolkata
https://www.gowebs.in/logo-design
I read a lot of blog posts and I never heard of such a topic. I love the subject you have done about bloggers. Very simple. I am also writing a blog related to the best visa consultants, process and application. You can also see this.
visa consultants in Delhi
Awesome Blog with informative concept. Really I feel happy to see this useful blog, Thanks for sharing such a nice blog...
Digital Marketing Courses near me
Thanks for sharing great content with us. I like reading your site's content more. I appreciate your writing skills and the way you are written. I am also a content writer and writing about a Malta work permit, please check and review that.
Thanks for sharing great content with us. I like reading your site's content more. I appreciate your writing skills and the way you are written. I am also a content writer and writing about a Malta work permit, please check and review that.
Well Said, you have furnished the right information that will be useful to anyone at all time. Thanks for sharing your Ideas.
CCIE Training in Bangalore
Best CCIE Training Institutes in Bangalore
Great post and informative blog.it was awesome to read, thanks for sharing this great content to my vision.
UI UX Design Agency
Great with detailed information. It is really very helpful for us.
Village Talkies a top-quality professional corporate video production company in Bangalore and also best explainer video company in Bangalore & animation video makers in Bangalore, Chennai, India & Maryland, Baltimore, USA provides Corporate & Brand films, Promotional, Marketing videos & Training videos, Product demo videos, Employee videos, Product video explainers, eLearning videos, 2d Animation, 3d Animation, Motion Graphics, Whiteboard Explainer videos Client Testimonial Videos, Video Presentation and more for all start-ups, industries, and corporate companies. From scripting to corporate video production services, explainer & 3d, 2d animation video production , our solutions are customized to your budget, timeline, and to meet the company goals and objectives.
As a best video production company in Bangalore, we produce quality and creative videos to our clients.
Want to do Data Science Course in Chennai with Certification Exam? Catch the best features of Data Science training courses with Infycle Technologies, the best Data Science Training & Placement institutes in and around Chennai. Infycle offers the best hands-on training to the students with the revised curriculum to enhance their knowledge. In addition to the Certification & Training, Infycle offers placement classes for personality tests, interview preparation, and mock interviews for clearing the interviews with the best records. To have all it in your hands, dial 7504633633 for a free demo from the experts.
Excellent blog and I really glad to visit your post. Keep continuing..
internship meaning | internship meaning in tamil | internship work from home | internship certificate format | internship for students | internship letter | Internship completion certificate | internship program | internship certificate online | internship graphic design
watch all spanish daramas here in HD quality ·doramashd
You're definitely familiar with the best coding language C++ that developers use to develop their projects and they get all their queries like "expected unqualified-id before 'if'answered properly. Developers are finding an appropriate answer about expected unqualified-id before 'if' related to the C++ coding language. By visiting this online portal developers get answers concerning C++ codes question like expected unqualified-id before 'if'. Enter your desired code related query in the search bar and get every piece of information about C++ code related question on expected unqualified-id before 'if'.
React JS Training in Hyderabad
Informative blog post, thanks for sharing
Fantastic post about vapes kampala and thanks ...
Excellent site you have here.. It’s hard to find high-quality writing like yours these days. I honestly appreciate individuals like you! Take care!!
Web Designing Training in Bangalore
Full Stack Training in Bangalore
Best Training Institute in Bangalore
your information is so useful. thanks for sharing
MERN Stack Course In Hyderabad
Awesome blog. I enjoyed reading your articles. This is truly a great read for me. It Keep up the good work!Google could platform Training institute in hyderabad
Awesome blog. I enjoyed reading your articles. This is truly a great read for me. It Keep up the good work!France Study visa consultants in Hyderabad
thanks for sharing information on JavaScript, also check our blog for Bhajan, Chalisa, Aur Katha on Aglowd
Very informative blog. Thanks for sharing valuable information with us..
java full stack course in warangal
Thank you sharing this kind of noteworthy information. Nice Post.
python-full-stack-developer
Great Article bcom colleges Bangalore is home to several prestigious B.Com colleges that offer quality education and excellent career opportunities. These institutions provide a strong foundation in commerce, with programs that cover areas such as accounting, finance, economics, business law, and taxation. Renowned colleges like Christ University, St. Joseph’s College of Commerce, and Jain University offer comprehensive B.Com courses, equipped with modern infrastructure, experienced faculty, and industry connections. The colleges in Bangalore also offer various specializations, including professional courses like B.Com (Honours), B.Com (International Accounting and Finance), and B.Com (Business Analytics), preparing students for successful careers in both the corporate sector and entrepreneurship. With a focus on skill development and practical exposure, these colleges create an ideal environment for students aspiring to excel in the world of commerce.
Nice blog and informative content,
Thanks for sharing with us,
Visit Insight IT - SAP BODS Training in Hyderabad
Post a Comment