Home »
Recent posts
All posts from February 2018
How to access MetaData Of a class using Java?
27 FEB 2018 by Jyoti Singh
In this article, we are going to learn that how can we access metadata of a class using java. MetaData of a class includes the class name, fields name, methods, constructor etc.
Tags:
Java
Java Reflection API to change the behavior of the class.
27 FEB 2018 by Jyoti Singh
In this article, we are going to learn how we can change the behavior of a class methods or fields during runtime that is how you can access a private member of a class by changing its behavior from private to accessible.
Tags:
Java
Record Insert and Display Using PHP CodeIgniter.
27 FEB 2018 by Jyoti Singh
In this article, we will insert and display record using codeIgniter. In order to do this we will follow MVC (Model, View, and Controller). MVC simplifies data flow and it’s easy to understand.
Tags:
PHP
SQL - Explain VIEW with Examples.
25 FEB 2018 by Anusha Sharma
In this article, we are going to learn about the VIEW in SQL (DBMS), what is VIEW? How and why it is created? We will learn all about VIEW with syntax, and query examples.
Tags:
SQL
C Example for nested 'printf'.
25 FEB 2018 by Shamikh Faraz
In this example, we will learn how to use nested printf statement in C program, how it works and what values will be printed?
Tags:
C programs
How to use Services in Android?
25 FEB 2018 by Manu Jemini
In the example below, we are going to use the Activity and Service class to make and start the service, so that you can use it in the same screen.
Here, we are going to learn about services and how to enable it in android.
Tags:
Android
How to send SMS in android using Intent?
25 FEB 2018 by Manu Jemini
In the example below, we are going to use the Intent and Bundle class to make a SMS and send it programmatically from your app with intent.
Here, we are going to learn about the intent to use it for sending SMS on a cell phone number.
Tags:
Android
Puzzle 33) Sitting Arrangement.
22 FEB 2018 by Ashish Varshney
Aeris and his 3 friends become so talkative that their teacher decides to make boys sit with five girls. Now the teacher is confused how to make it possible. Your task is to help the teacher to make such arrangement.
Tags:
Puzzles
Save data using SharedPreferences in Android.
22 FEB 2018 by Manu Jemini
In this article, we are going to use sharedPreferences in Android to save data with its key.
In the example below, we are going to use the SharedPreferences and Toast class to save the user input for future use which is very important nowadays.
Tags:
Android
Transaction Management in JDBC.
21 FEB 2018 by Jyoti Singh
Transaction is a group of tasks or operations. It can also be seen as a single unit of work. In this article, we are going to study about Transaction Management in JDBC.
Tags:
Java
Batch Processing In Java.
21 FEB 2018 by Jyoti Singh
In this article, we are going to learn about batch processing. What is it and how to implement batch processing system in java?
Tags:
Java
What is static import in java?
18 FEB 2018 by Preeti Jain
Java static import - In this article, we are going to learn about it, and how to implement static import in java?
Tags:
Java
What is Operator Overloading in C#?
18 FEB 2018 by IncludeHelp
In this article, we are going to learn about operator overloading in C#, here, we will also learn - which operators can be overloaded and which cannot be overloaded?
Tags:
C# programming
How to make a multi-item carousel which is also responsive across all screens?
17 FEB 2018 by Prerna Saxena
Today we are going to learn how to make a multiple item slider. We have seen many websites with full image slider but for some ecommerce websites we require multi-item carousel. For that we will use Html, CSS, Bootstrap and JavaScript. Bootstrap used here is for making the pages responsive so that it looks good in all screen sizes whether it will be mobile, laptop etc.
Tags:
HTML
Thread pool in java, how to create it?
15 FEB 2018 by Preeti Jain
It is a container of threads or (In other words it is a collection of threads which is having capacity to execute our task)....
In this article, we are going to learn about Thread pool in java, how we can create Thread Pool in java?
Tags:
Java
Glimpse of Virtualization in Cloud computing.
14 FEB 2018 by Aleesha Ali
Virtualization is another core technology of cloud computing it encloses a troupe of program or solutions allowing the abstraction of some of the fundamental elements for computing such as hardware, storage, networking and run time environments.
In this article we are going to learn about virtualization a major component of cloud computing.
Tags:
Cloud Computing
C program for ‘Full Pyramid’ Pattern.
14 FEB 2018 by Shamikh Faraz
In this C program, we are going to learn how to print a Full pyramid. Here, we are reading total number of rows and printing the Full pyramid accordingly.
Tags:
C programs
C program for 'Half Pyramid' Pattern.
14 FEB 2018 by Shamikh Faraz
In this C program, we are going to learn how to print a half pyramid. Here, we are reading total number of rows and printing the half pyramid accordingly.
Tags:
C programs
Top 7 mistakes made while using C++ Multithreading.
13 FEB 2018 by Saurabh Hooda
C++ is one of the most powerful object-oriented languages there is, if not the strongest. It’s a multi-platform titan that allows total flexibility, fast and robust development. It’s also well suited for heavy applications, like game engines and some AI applications, to mention at the very least...
Tags:
Expert’s columns, C++
Hottest technologies in Computer Science nowadays.
13 FEB 2018 by Aleesha Ali
As we can see this cosmos is growing very rapidly, no one wants to wait here everyone wants to achieve the speed of light, so does the technology is evolving in a way to make everything faster and easier as well.
Tags:
Articles
Services of Cloud Computing.
13 FEB 2018 by Aleesha Ali
Let’s start discussing about what are the services provided by cloud computing? So in terms of services cloudis mostly refer as XaaS means everything as a service, and this XaaS is categorised as:
Tags:
Cloud Computing
How to use $gt in MongoDB?
13 FEB 2018 by Manu Jemini
While working on $gt in MongoDB means greater than, to find a document in MongoDB through an Express server we need to full fill certain requirements:
In this article, we are going learn about $gt and the purpose and method to use it in MongoDB.
Tags:
MongoDB
How to use of $ne in MongoDB?
13 FEB 2018 by Manu Jemini
Mongo makes developing and data management easy for web developers because of the simplicity in which the data is been store in MongoDB.
$ne in MongoDB means not equal to, to find a document in MongoDB through an Express server we need to full fill certain requirements:
Tags:
MongoDB
Explain OutOfMemory Error in java.
10 FEB 2018 by Preeti Jain
Here, we are going to discuss about an error in java ‘OutOfMemory’, when and how it occurs, how to prevent this error?
Tags:
Java
How to use $eq in MongoDB?
10 FEB 2018 by Manu Jemini
In this article, we are going to learn about the method to use $eq in MongoDB for finding suitable data.
Tags:
MongoDB
Vector Class in Java.
09 FEB 2018 by Jyoti Singh
In this article, we are going to learn about Vector class of Java. Here, we will explain about it with the help of example.
Tags:
Java
Comparator in Java.
09 FEB 2018 by Jyoti Singh
In this article, we are going to learn about java comparator Interface. What is java Comparator? How it works?
Tags:
Java
ToString Method in Java.
09 FEB 2018 by Jyoti Singh
In this article, we are going to learn how we can print the value of an object (using ToString method) of a user-defined class?
Tags:
Java
Jump Search Implementation using C++.
08 FEB 2018 by Aleesha Ali
Jump search is a Searching algorithm and its efficiency lies between linear search and binary search.
In this article, we are going to learn what Jump search is, and how to implement it using C++ program?
Tags:
Algorithms, C++ programs
Android - Context Menu Example.
07 FEB 2018 by Shamikh Faraz
In this Android Example, we are going to learn how to write code to display content menu with its options? Here, you will find all project related file like java, xml.
Tags:
Android
Thread properties in java.
07 FEB 2018 by Preeti Jain
Learn: What do you understand by Thread Priority in java? Explain in brief Thread Priorities in java.
Tags:
Java
Explain Inner class in java.
06 FEB 2018 by Preeti Jain
Learn: What is inner class in java? Here we will learn core concepts of java? Why inner class used in java?
Tags:
Java
Explain life cycle of a thread in java.
06 FEB 2018 by Preeti Jain
In this article, we are going to learn about thread life cycle, what is life cycle of a thread in java? What are the different states in life cycle of a thread in java?
Tags:
Java
Advantages of Cloud Computing.
06 FEB 2018 by Aleesha Ali
In this article, we are going to learn about the advantages of cloud computing like: Scalable, Flexible, Elastic nature, Pay per use Model, Environment friendly, Backup and Recovery, Easy Access of data.
Tags:
Cloud Computing
Find output of Java program - 2 (Mixed topics).
03 FEB 2018 by Abhishek Jain
Find Output of Java program - 2: This section contains programs/code snippets on java and with the outputs and explanations; you have to find the output and match with the correct output.
Tags:
Java
Why java is platform independent?
03 FEB 2018 by Preeti Jain
Learn: why java is platform independent? What do you understand by platform independent? How java is platform independent?
Tags:
Java
Marker Interface in Java.
02 FEB 2018 by Preeti Jain
An interface with empty implementation (i.e It contains nothing like methods, variables etc.) is known as Marker Interface.
Learn: What is marker interface in java? Why it is used? Define and Elaborate marker interface in java?
Tags:
Java
Android Popup Menu Example.
01 FEB 2018 by Shamikh Faraz
In this article, we are going to learn about Popup Menu. This displays menu either below or above the anchor text. If you click outside of the popup menu, it is not visible.
Tags:
Android