SATHISH.V B.E/CSE

 TYPING CIRTIFICATE


FELLINGS: 🥳I am excited to share the certificate. I have basic typing knowledge and speed. It is very useful for quickly writing code.

 
IDEAS: 🧍‍♂️It is my first step toward achieving my dream, and I am gaining knowledge by referring to YouTube channels.

 
LEARNING PLATFORMS: 👩‍💻I am practicing my typing skills using offline applications like 'Typing Master.' I received a certificate from 'Typingtest.com'.

 
MOTIVATIONAL CODES: "Learning this skill by myself is very difficult, but anyone can do it." - SATHISH V


**********************************************************************************************

HTML


FELLINGS:

🥳I am excited to share the video. I have basic knowledge about HTML. It is easy to understand for every one.


IDEAS:

🧍‍♂️I am want to learn about web technology this course very useful and I am gaining knowledge by referring some YouTube channels.


LEARNING PLATFORMS:

👩‍💻I am refering you tube channel like Tuter Joes .


MOTIVATIONAL CODES:

"Learning this skill by myself is very difficult, but anyone can do it." - SATHISH  

**********************************************************************************************


#SATHISH V

**********************************************************************************************

CSS LEARNING... 



*********************************************************************************************

CSS|PROJECT-1



********************************************************************************************
CLOUD COMPUTING


import java.util.*;

public class WordCount {
    public static void main(String[] args) {
        List<String> input = Arrays.asList(
            "Hello world", 
            "MapReduce is awesome", 
            "Hello MapReduce", 
            "Java is great"
        );

        Map<String, Integer> wordCounts = new HashMap<>();

        // Map and Reduce steps combined
        for (String line : input) {
            for (String word : line.split("\\s+")) {
                word = word.toLowerCase();
                wordCounts.put(word, wordCounts.getOrDefault(word, 0) + 1);
            }
        }

        // Print the result
        wordCounts.forEach((word, count) -> 
            System.out.println(word + ": " + count)
        );
    }
}
********************************************************************************************





Comments