Skip to content
  • Facebook
GeekCer Logo

GeekCer

The geek's Coding education and Review centre

  • Home
  • Tutorials
    • Java
    • Servlet
    • JSP
    • Python
    • C Tutorial
    • Spring
    • Spring Boot
    • MongoDB
    • Hibernate
    • Data Structure
  • General Knowledge
  • Biography
  • Grammar
  • Festival (त्योहार)
  • Interview
  • Differences
  • Important
  • Toggle search form

Home » Archives for December 2021

  • Java Server Pages (JSP)
    Java Server Pages (JSP) JSP
  • World Earth Day in Hindi | पृथ्वी दिवस कब और क्यों मनाया जाता है?
    Earth Day in Hindi, Theme | पृथ्वी दिवस कब और क्यों मनाया जाता है? General Knowledge
  • Method Overloading in Java
    Method Overloading in Java Java
  • Git commands with example and git log, git bash, create repo
    Git commands with example and git log, git bash, create repo Important
  • How to become a Chief Financial Officer (CFO)
    How to become a Chief Financial Officer (CFO)? Important
  • JSP Scripting Tags (Scripting Elements)
    JSP Scripting Tags (Scripting Elements) JSP
  • Sawan ka Mahina : सावन का महीना का महत्व, भगवान शिव की पूजा
    Sawan ka Mahina : सावन का महीना का महत्व, भगवान शिव की पूजा Festival
  • Top 100 C programs for geeks
    Top 100 C programs for geeks C Language

Month: December 2021

Subhas Chandra Bose Biography in Hindi, Essay, Paragraph

Posted on December 24, 2021December 24, 2021 By admin No Comments on Subhas Chandra Bose Biography in Hindi, Essay, Paragraph
Subhas Chandra Bose Biography in Hindi, Essay, Paragraph

तुम मुझे खून दो, मैं तुम्हें आजादी दूंगा जैसे क्रांतिकारी नारे लगाने वाले महान भारतीय राष्ट्रवादी नेताजी सुभाष चंद्र बोस (Subhas Chandra Bose) एक ऐसे नेता थे जिन्होंने हर भारतीय में स्वराज की लालसा पैदा की। और उनकी नेतृत्व क्षमता इतनी प्रभावशाली थी कि उन्होंने दुनिया भर के प्रशंसकों को आकर्षित किया। सुभाष चंद्र बोस…

Read More “Subhas Chandra Bose Biography in Hindi, Essay, Paragraph” »

Biography, General Knowledge

Kumkum Bhagya Hindi TV Serial, Cast Name, Actress Name

Posted on December 21, 2021January 6, 2022 By admin No Comments on Kumkum Bhagya Hindi TV Serial, Cast Name, Actress Name
Kumkum Bhagya Hindi TV Serial, Cast Name, Actress Name

कुमकुम भाग्य (Kumkum Bhagya) ज़ी टीवी पर प्रकाशित होने वाला एक हिंदी टीवी धारावाहिक है, जिसकी शुरुवात 15 अप्रैल 2014 से अब तक चल रही है। यह धारावाहिक सोमवार से शुक्रवार रात 9 बजे प्रसारित होता है। यह धारावाहिक प्रेम सम्बंधित धारावाहिक है। जिसमे कई कलाकार काम कर रहे है। उनके बारे में हम आगे…

Read More “Kumkum Bhagya Hindi TV Serial, Cast Name, Actress Name” »

News

Concurrent collections in Java, details, advantages, examples

Posted on December 18, 2021May 17, 2022 By admin No Comments on Concurrent collections in Java, details, advantages, examples
Concurrent collections in Java, details, advantages, examples

Concurrent collections in Java are designed with the goal of allowing many threads to access the same data in a synchronized manner. If you’re familiar with Java Collections, you’re probably aware that most Collection classes aren’t thread-safe by default. Take, for example, Java’s ArrayList, LinkedList, HashMap  classes. We must manually make the collection thread-safe if…

Read More “Concurrent collections in Java, details, advantages, examples” »

Java

Structure in C program with example | Nested structure in C

Posted on December 17, 2021April 28, 2022 By admin No Comments on Structure in C program with example | Nested structure in C
Structure in C program with example | Nested structure in C

Structure in C is a user-defined data type that the user defines according to his needs. These are collection of various types of data. Members of a structure can be of any type, including variables, pointers, arrays, and structures. For example, you may want to retain and process student information such as name, class, marks,…

Read More “Structure in C program with example | Nested structure in C” »

C Language

Function in C Language | Recursive function with example

Posted on December 12, 2021March 29, 2022 By admin No Comments on Function in C Language | Recursive function with example
Function in C Language | Recursive function with example

In the C language, a function is a chunk of code that does a certain task. If required, we can call the function many times in the program. If necessary, a function can return a value after executing an operation. It is optional. Here you can learn the basics of C programming before going through…

Read More “Function in C Language | Recursive function with example” »

C Language

Lambda Expression in Java 8 | Functional Interface | Example

Posted on December 8, 2021February 18, 2022 By admin No Comments on Lambda Expression in Java 8 | Functional Interface | Example
Lambda Expression in Java 8 | Functional Interface | Example

Lambda expressions aided the developer in simplifying the development process. The lambda expression is important feature of Java 8. This functionality is highly useful in collections for iterating and filtering the data. It does not have a return type or even a method name, and it does not specify accessibility. Classes and objects are given…

Read More “Lambda Expression in Java 8 | Functional Interface | Example” »

Java

Pointers in C Programming, Definition, Types & Example

Posted on December 7, 2021December 7, 2021 By admin No Comments on Pointers in C Programming, Definition, Types & Example
Pointers in C Programming, Definition, Types & Example

Pointers in C are variables that store the memory location, or memory address, of a data item to be held in memory rather than its value. A memory address is assigned to a pointer. Typically, this address refers to the memory location of some other variable. The first variable points to the second if one…

Read More “Pointers in C Programming, Definition, Types & Example” »

C Language

How to create Database and Collection in MongoDB?

Posted on December 3, 2021December 3, 2021 By admin No Comments on How to create Database and Collection in MongoDB?
How to create Database and Collection in MongoDB?

The database must come first in MongoDB, followed by the collection in the database. As you may be aware, the database holds the collection, which we then use to store the documents. We’ll learn database-related operations like CREATE, DROP, and VIEW, as well as collection-related activities, in this tutorial. If you haven’t installed MongoDB yet…

Read More “How to create Database and Collection in MongoDB?” »

MongoDB

CRUD Operations in MongoDB | NoSQL | CRUD Transaction

Posted on December 1, 2021December 1, 2021 By admin No Comments on CRUD Operations in MongoDB | NoSQL | CRUD Transaction
CRUD Operations in MongoDB | NoSQL | CRUD Transaction

The most significant element of MongoDB is the CRUD operations. CRUD stands for Create, Read, Update, and Delete, as you may know. In this post, we’ll go through how to insert a document in MongoDB, view a document in MongoDB, update a document in MongoDB, and remove a document in MongoDB. Before reading this article…

Read More “CRUD Operations in MongoDB | NoSQL | CRUD Transaction” »

MongoDB

Recent Posts

  • Structured Vs Unstructured Data in Hindi | Key Difference
  • Jhansi Ki Rani Lakshmi Bai History, Story, Information in Hindi
  • Elon musk Hindi : एलन मस्क हिंदी में, Autobiography,  Net Worth
  • World Environment Day in Hindi : Objective, Importance, Theme
  • Thomas Edison Biography in Hindi – थॉमस एडिसन जीवनी
  • International Nurses Day in Hindi | नर्स दिवस क्यों मनाते हैं?
  • Fork/Join Framework in Java | RecursiveTask, RecursiveAction
  • DBMS in Hindi | DBMS क्या है? | DBMS की विशेषताएं और प्रकार
  • Java Server Pages (JSP)
    Java Server Pages (JSP) JSP
  • World Earth Day in Hindi | पृथ्वी दिवस कब और क्यों मनाया जाता है?
    Earth Day in Hindi, Theme | पृथ्वी दिवस कब और क्यों मनाया जाता है? General Knowledge
  • Method Overloading in Java
    Method Overloading in Java Java
  • Git commands with example and git log, git bash, create repo
    Git commands with example and git log, git bash, create repo Important
  • How to become a Chief Financial Officer (CFO)
    How to become a Chief Financial Officer (CFO)? Important
  • JSP Scripting Tags (Scripting Elements)
    JSP Scripting Tags (Scripting Elements) JSP
  • Sawan ka Mahina : सावन का महीना का महत्व, भगवान शिव की पूजा
    Sawan ka Mahina : सावन का महीना का महत्व, भगवान शिव की पूजा Festival
  • Top 100 C programs for geeks
    Top 100 C programs for geeks C Language
  • Java Tutorial
  • Servlet Tutorial
  • JSP Tutorial
  • Maven Tutorial
  • HTML Tutorial
  • Programs
  • Hindi/English Grammar
  • Difference Between ... and ...
  • HR Interview
  • Important Articles

Write to Us:
geekcer.code@gmail.com

  • About Us
  • Privacy and Policy
  • Disclaimer
  • Contact Us
  • Sitemap

Copyright © GeekCer 2022 All Rights reserved