As a Data Engineer, there are several essential skills and tools that can greatly enhance your effectiveness and efficiency in managing and manipulating large volumes of data. Here are some of the key skills and tools you should consider:
📗 Power BI Visualisation from Apple Health App data (XML file) Link to GitHub to download file “Exercise_Analysis.pbix”
“Catch a drop” is a simple game that you can write in JAVA. This can be your first project for your portfolio. To download the simple game, press Download. You would need at least Java 11.
“Blackjack” is a simple game that you can write in JavaScript. This can be your first project for your portfolio. The object of the game is to win money by creating card totals higher than those of the dealer’s hand but not exceeding 21.
if statement int x = 7; if (x < 42) { System.out.println("Hello"); } if…else statement int age = 30; if (age < 16) { System.out.println("Too Young"); } else { System.out.println("Welcome!"); } //Outputs "Welcome!" else if statement int age = 25; if(age <= 0) { System.out.println("Error"); } else if(age <= 16) { System.out.println("Too Young"); } else […]
Definitions & Abbreviations: JDK (Java Development Kit): Download JVM (Java Virtual Machine) IDE (Integrated Development Environment), e.g. IntelliJ IDEA: Download & Help OOP (Object-Oriented Programming) UML (Unified Modeling Language) UI (User Interface) API (Application Programming Interface) JSR (Java Specification Request) разрабатываются JCP (Java Community Process): список JSR W3C (World Wide Web Consortium) is the main international standards organization […]