Posts

DIFFERENCE BETWEEN INFORMATION AND DATA

Image
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

VIDEOS

Image
HOW TO LIVE HAPPY IN RELATIONSHIPS In following video, The natural tips and Tricks are given on the behalf og Human Values Concept. Click on below Video to know more !!!! Thanks for Visiting... !!!!!

15 Best Places to Visit in India Written by Amit Choudhary Mar 16, 2020

Image
1. Agra 2. New Delhi 3. Mumbai 4. Rajasthan 5. Rishikesh 6. Varanasi 7. Amritsar 8. Goa 9. Kerala 10. Ajanta and Ellora Caves 11. Darjeeling 12. Kolkata 13. Ahmedabad 14. Shimla 15. Mysore

8-Queen Problem in java

Image
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 printQueens(int[] x) {         int N = x.length;         for (int i = 0; i < N; i++) {             for (int j = 0; j < N; j++) {                 if (x[i] == j) {                     System.out.print("Q ");                 } else {                     System.out.print("* ");                 }             }             System.out.println();         }        

Introduction of Amit Choudhary

Image
Hello guys, Nice to see you here.I have passed my Msc(Computer Science) in 2018.I Like to Play Chess and Learning new creative Things.