A project utilizing big data and machine learning aims to predict concrete compressive strength in 28 seconds, complementing traditional lab testing.Data from Kaggle is used, incorporating features like water-to-cement ratio and weights of aggregates to enhance accuracy.Visualizations like heatmaps and pair plots are used to assess correlations between input features and compressive strength.Data is split into training, cross-validation, and test sets for model evaluation using SGD, XGBoost, and ANN algorithms.Hyperparameter tuning is done for each model, with XGBoost showing an accuracy of 91% to 92% on cross-validation and test sets.ANN, designed after biological neurons, performs well but with slightly lower accuracy compared to XGBoost at 86.8% on the test set.An early stopping setting at 100 patience and 200 epochs is used to address overfitting in the ANN model.XGBoost algorithm demonstrated superior performance in this concrete compressive strength prediction project.A web app deploying the ANN model for interactive use is provided for further exploration.