
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 755 Articles for Business

227 Views
The concept of Guerrilla marketing was created by Jay Conrad Levinson. Traditional marketing involves advertising methods such as advertising on television, radio, print, and mail. Online marketing or Digital marketing is the type of advertising which we see today on websites, YouTube videos, blogs, etc. Whereas, Guerrilla Marketing is an inexpensive method that focuses more on reach rather than frequency. This style of marketing is effective for small businesses to advertise their product and services. One needs to have imagination, energy and time for this kind of advertising.Give an ImpactThis kind of advertising engages the customers with the product and ... Read More

308 Views
Ambush, as the name implies, is a surprise marketing. The term Ambush marketing was coined by Jerry Welsh, a marketing strategist. Ambush marketing is a type of marketing where the marketer associates the product with an event or property and the marketer is not directly or officially related to that event. This is a type of Guerilla marketing.To be more precise, we often happen to watch some advertisements which refer to some events or personalities indirectly without mentioning them officially. Such advertisements have a lot of impact on unknowingly.Grab the OpportunityThis kind of advertising is done by utilizing the opportunities ... Read More

570 Views
Marketing is a concept which is related to beliefs. With marketing, a consumer is made to believe that a certain product or service delivers the results mentioned. Whether it is digital or traditional, marketing is a tool to sell your product or service by gaining trust. But with the increasing attention towards digital marketing, there are many unethical practices prevailing. Recently, social media platforms like Facebook and YouTube have made their rules more stringent so as to avoid unethical practices in the digital marketing field.What Are They Like?It is unethical to do false marketing by conveying the false messages into ... Read More

126 Views
Automation is an integral part of the development and progression of equipment and processes that in turn, are integral parts of most of the activities that act as engines of growth across most economies around the world. There's another side to automation and that is the importance of its application in military equipment and processes. It has been seen that nations with a history of producing robust and highly efficient military equipment, are the ones that are dominating the automation industry today.The USA, Germany, Japan, France, UK, Russia, Sweden, Italy, and Canada among a few others dominate in automation excellence.The ... Read More

70K+ Views
Online stores do not have space constraints and a wide variety of products can be displayed on websites. It helps the analytical buyers to purchase a product after a good search.The convenience of online shoppingCustomers can purchase items from the comfort of their own homes or workplace. Shopping is made easier and convenient for the customer through the internet. It is also easy to cancel the transactions.Why shop OnlineSaves time and efforts.The convenience of shopping at home.Wide variety/range of products are available.Good discounts / lower prices.Get detailed information about the product.We can compare various models/brands.No pressure shoppingGenerally, in physical stores, ... Read More

237 Views
Information Technology Infrastructure Library (ITIL) is the framework that is designed to standardize the planning, selection, and delivery of IT services to a business. The goal of ITIL is to improve efficiency and also achieve predictable goals or targets. An ITIL enables an IT professional to be a business service partner, not just back-end support.ITIL Foundation ExaminationIt is a closed book examination.It consists of 40 questions.Each question has multiple choices.One mark is allotted for the correct answer.The duration of the exam is one hour.One has to score 65% of the marks to pass the examination i.e minimum 26 questions must ... Read More

721 Views
Yes, it is feasible and I have done something similar in one of my previous projects. But you need to be little clear on what you need to export. There are two options regarding the content of export:Raw Data ( it is basically the query)Formatted Data ( it is your report)I will provide you help for both. In case, if you are looking for just exporting the raw data then you can the following call and you should be able to fetch the raw data.http://:6405/biprws/raylight/v1/documents//dataproviders//flows/Also as will require the response in CSV, set the ACCEPT to ‘text/plain’ so that the ... Read More

530 Views
The thumb rule goes like this, if you instantiate a DI API object, you have to release it. if you don't release it explicitly, it will result in memory leaks.You can use a ReleaseComObject method to release the object memory. In case if you try to release a null object, it will throw an exception.So, it will be better to have a null check before you try to release the object.Sample snippet:if (obj != null) System.Runtime.InteropServices.Marshal.ReleaseComObject(obj);

284 Views
You can make use of SP_TransactionNotification, which is one of the most common way of receiving notification of data-driven events. With the use of SP_TransactionNotification, you can edit error code returned by Transaction notification, and also prevent transaction to committed.This shows how to prevent a purchase order from adding when the base document is not provided. You can make use of SBO_SP_TransactionNotification for Screen Painter forms in SBO to avoid null values.