YOU CAN CONTECT WITH ME ON MY E-MAIL ID:
amitchoudhary385385@gmail.com
follow me on my facebook id: https://www.facebook.com/amitchoudhary1212
Instagram id: https://www.instagram.com/amitchoudhary385385/
VIDEOS
Get link
Facebook
X
Pinterest
Email
Other Apps
-
HOW TO LIVE HAPPY IN RELATIONSHIPS
In following video, The natural tips and Tricks are given on the behalf og Human Values Concept.
Difference between Information and Data What is Data? Data is a raw and unorganized fact that required to be processed to make it meaningful. Data can be simple at the same time unorganized unless it is organized. Generally, data comprises facts, observations, perceptions numbers, characters, symbols, image, etc. Data is always interpreted, by a human or machine, to derive meaning. So, data is meaningless. Data contains numbers, statements, and characters in a raw form. What is Information? Information is a set of data which is processed in a meaningful way according to the given requirement. Information is processed, structured, or presented in a given context to make it meaningful and useful. It is processed data which includes data that possess context, relevance, and purpose. It also involves manipulation of raw data. Information assigns meaning and improves the reliability of the data. It helps to ensure undesirability and reduces uncertainty. So, when the dat...
public class Queens { int[] x; public Queens(int N) { x = new int[N]; } public boolean canPlaceQueen(int r, int c) { /** * Returns TRUE if a queen can be placed in row r and column c. * Otherwise it returns FALSE. x[] is a global array whose first (r-1) * values have been set. */ for (int i = 0; i < r; i++) { if (x[i] == c || (i - r) == (x[i] - c) ||(i - r) == (c - x[i])) { return false; } } return true; } public void printQu...
Comments
Post a Comment