Skip to main content

Posts

Showing posts from February, 2022

Navigating the Storm: Common Mistakes People Make During Board Exams

Common Mistakes People Make During Board Exams Introduction: Board exams are a pivotal moment in a student's academic journey, often seen as the gateway to future opportunities. However, the pressure and anxiety associated with these exams can lead individuals to make mistakes that might jeopardize their performance. In this blog, we will explore some common mistakes people tend to make during board exams and discuss strategies to overcome these pitfalls. Procrastination: The Silent Saboteur One of the most prevalent mistakes students make during board exams is procrastination. Delaying study sessions, leaving topics for the last minute, and underestimating the amount of time required for preparation can lead to a last-minute cramming frenzy. Overcoming procrastination involves effective time management, setting realistic goals, and maintaining a consistent study schedule. Ignoring Revision: The Memory Mirage Many students focus solely on absorbing new information and neglect th

DBMS implementation of AGGREGATE(GROUP) functions (avg ,count, max ,min, sum)

   DBMS implementation of AGGREGATE(GROUP) functions (avg  ,count, max ,min, sum)             Create one table Book(Aname,BookName,Price,Date_of_publish,Qty)  Insert minimum 10 records in it, then implement group functions and display the results.  1. create a table in my sql (DBMS)           CODE:             create table book(             Aname varchar(40),              Bname varchar(40),              price int,             date_of_pub date,              qty int);                               OUTPUT:       2. INSERT 10 RECORD IN TABLE                                                                       CODE: insert into book values ("ramil", "java",500, '2008-10-01', 6 );        insert into book values ("ramesh", "java  fx",900, '2009-10-19', 7 );         insert into book values ("rahul", "java core ",400, '2008-10-21', 8 );       insert into book values ("rajesh", "java gui"

Giving more than taking - Motivational

Giving more than taking - Motivational Story in English Friends, once a teacher went out for a walk with a young disciple belonging to a wealthy family. He saw that a pair of old shoes were lying on the way, which probably belonged to a poor labourer working in a nearby field who was now getting ready to go back home after finishing his work. Said, "Guruji, why don't we hide these shoes somewhere and hide behind the bushes; It will be a lot of fun when that labourer gets nervous not finding them here. The teacher said seriously, "It is not right to make such lewd jokes with a poor person. Why don't we put some coins in these shoes and hide and see what effect it has on the labourer!!" The disciple did the same and both hid in the nearby bushes. The labourer soon finished his work and came to the place of shoes. As soon as he put one foot in the shoe, he realised something hard, he quickly took the shoes in his hand and saw that some coins were lying inside, he wa

Who is saint Ramanujacharya ? Some important points related to his Statue of equality

 Who is saint Ramanujacharya? Saint Ramanujacharya comes from the Hindu Bhakti tradition. He was born in 1017 AD in a Brahmin family of Tamil Nadu. He was a devotee of Varadaraja Swami and was a great saint and social reformer. Giving a message on different occasions, he had said that all are equal before God and people of every caste have the right to take his name. Entry to the temple is open to all. Let us know some important things related to this statue symbolising equality- The 216 feet high Statue of Equality of Bhakti saint Sri Ramanujacharya was inaugurated in the 11th century. Saint Ramanujacharya promoted the idea of ​​equality in various aspects of life, bhakti, caste and creed. Sant Sri Ramanujacharya worked closely with the people on the idea of ​​equality and promoted the idea of ​​equality in nationality, gender, caste or creed. This idol is made of 'Panch Loha' i.e. 5 different metals. These include iron, gold, silver, copper and bronze and zinc. It is one of t

Why Russia and Ukraine in discussion in 2022? :All explanation here

 Why Russia and Ukraine in discussion in 2022?

Q:Question 2: Using FlowLayout Manager, write a program that meets the following requirements (see figure below)• Create a frame and set its layout to FlowLayout • Create 2 panels and add them to the frame. • Each panel contains three buttons. The panel uses FlowLayout.

Q:Question 2: Using FlowLayout Manager, write a program that meets the following requirements (see figure below): • Create a frame and set its layout to FlowLayout • Create 2 panels and add them to the frame. • Each panel contains three buttons. The panel uses FlowLayout.  Code : import javax.swing.*; import java.awt.*; import java.awt.FlowLayout;  class swingex { public static void main (String args[])  {  JFrame f = new JFrame ();  JPanel p1 =new JPanel();  JPanel p2 =new JPanel();    p1.setBounds(100,100,150,150);  p2.setBounds(300,100,150,150);  JButton b1 = new JButton ("welcome");  JButton b2 = new JButton ("hello");  JButton b3 = new JButton ("open");  JButton b4 = new JButton ("click");  JButton b5 = new JButton ("done");  JButton b6 = new JButton ("ok");  b1.setBounds(50,10,50,50);  b2.setBounds(50,60,50,50);  b3.setBounds(50,80,50,50);  b4.setBounds(50,70,50,50);  b5.setBounds(50,90,50,50);  b6.setBounds(50,50,50,5