31, మార్చి 2025, సోమవారం
28, మార్చి 2025, శుక్రవారం
26, మార్చి 2025, బుధవారం
25, మార్చి 2025, మంగళవారం
23, మార్చి 2025, ఆదివారం
22, మార్చి 2025, శనివారం
what to do .......... after graduation……………… • Unemployment in India: • Factors contributing to unemployment in India include a growing population, lack of quality education and skill development, inadequate job opportunities, slow economic growth, and insufficient investment in certain sectors. • Addressing unemployment in India requires strategies such as encouraging public-private partnerships, implementing investor-friendly policies, and supporting job-oriented initiatives.
21, మార్చి 2025, శుక్రవారం
WHEN TWO PEOPLE START A LOVE AFFAIR WITH EACH OTHER, IF THE BEGINNING IS ENMITY THEN LATER STAGE IT BECOMES VERY STRONG. ...........................................RAMU HIS PERSONAL EXPERIENCE
మాటే మంత్రము | మనసే బంధము
ఈ మమతే ఈ సమతే | మంగళ వాద్యము
ఇది కళ్యాణం | కమనీయం | జీవితం
ఓ..ఓ..ఓ..
మాటే మంత్రము | మనసే బంధము
నీవే నాలో స్పందించిన
ఈ ప్రియ లయలో | శ్రుతి కలిపే | ప్రాణమిదే
నేనే నీవుగా | పువ్వు తావిగా
సంయోగాల సంగీతాలు విరిసే వేళలో
19, మార్చి 2025, బుధవారం
Today Mr Ram.A.Dayinaboyina...........................A ROMANTIC SONG, ALSO KNOWN AS A LOVE SONG, IS A MUSICAL COMPOSITION THAT EXPRESSES FEELINGS OF LOVE, AFFECTION, AND ROMANTIC EMOTION, OFTEN FOCUSING ON THEMES LIKE PASSION Or DEVOTION. THE JOYS AND CHALLENGES OF ROMANTIC RELATIONSHIPS. PURPOSE: THEY ARE COMMONLY USED TO CELEBRATE RELATIONSHIPS, EXPRESS FEELINGS OF LOVE, OR REFLECT ON ROMANTIC EXPERIENCES. STYLES AND GENRES: ROMANTIC SONGS CAN BE FOUND IN VARIOUS STYLES AND GENRES, RANGING FROM BALLADS TO UPBEAT TUNE..........పట్టు పట్టు పరువాల పట్టు… కట్టు కట్టు సొగసైన కట్టు ఒట్టు ఒట్టు ఎదపైన ఒట్టు… చుట్టు చుట్టు చీరల్లే చుట్టు సుందరుడా నిను వలచితిరా… చెలి పిలిచిన బిగువటరా చేకొనరా చిరు చిలకనురా… నను పలుచన చేయకురా పట్టు పట్టు పరువాల పట్టు… కట్టు కట్టు సొగసైన కట్టు, హో
12, మార్చి 2025, బుధవారం
About 19% of AI use cases deliver business value, says Infosys report, 40000 cr lost today infosys but it will get recover with in 3 months but the loosers are INTRADAY TRADERS ..........
UP AND DOWN ARE COMMON IN THE STOCK MARKET ACCORDING DOW
THEORY
LIKE TIDES IN THE SEA IN THIS COMMON MAN LOOS ALL THE MONEY I.E. POSITIONAL TRADERS, INTRADAY TRADERS
Narayana Murthy’s family wealth erodes by nearly Rs 6,800 crore as Infosys enters bear market
up and do11, మార్చి 2025, మంగళవారం
The astonishing thing is ADoLF has big fans ……….................. When I read this ....... Q ? what about u ……………SOMETIMES WEATHER NEGATIVE or POSITIVE BOTH INDICATES SUCCESS A movement today for ……………. Regarding FAVORABLE, PROMISING, Or LIKELY TO LEAD TO SUCCESS. IT SUGGESTS A POSITIVE OMEN Or A TIME WHEN THINGS ARE LIKELY TO GO WELL.
నీ తొలిచూపులోనే......
10, మార్చి 2025, సోమవారం
AJAX RIA'S U5. Ajax techonology, Dojo Toolkit is a JavaScript framework (technology) practise
Ajax-enabled Rich Internet Applications (RIAs)
are web applications that use Ajax technology to make them more responsive
to user interactions. Ajax is a combination of technologies including
JavaScript, XML, CSS, and the XMLHttpRequest object.
How Ajax works
·
Ajax allows users to
interact with web applications without page reloads
·
Ajax enables partial
page updates
·
Ajax allows individual
form fields to be validated without resubmitting the entire form
·
Ajax allows users to
interact with web applications more like they would with desktop
applications
Benefits of
Ajax-enabled RIAs
·
Improved usability
·
More interactive forms
·
Faster and more
accurate feedback
·
Real-time confirmation
of actions and choices
·
More informative and
detailed error messages
·
More consistent user
experience across different browsers and operating systems
How to create
Ajax-enabled RIAs
·
You can use
technologies like Natural for Ajax to create RIAs that use Ajax
·
You can use the
XMLHttpRequest object to make requests to the server without reloading the
entire page
8, మార్చి 2025, శనివారం
NINNE CHUDALANI…………… NITO UNDALANI , ………………. NUVVE GELAVALANI ………………….. NENE ODALANI …నిన్నే చూడాలని …………… నీతో ఉండాలని , ……………………. నువ్వే గెలవాలని ............. నేనే ఒడాలని ……………………………………TRUE LOVE OFTEN INVOLVES A DESIRE FOR MUTUAL GROWTH AND HAPPINESS Or.. SACRIFICE TO WIN THE COUNTERPART, RATHER THAN A COMPETITION OR A QUEST TO "WIN"
A Twitter bot is a type of software bot that controls a Twitter account via the Twitter API. The social bot software may autonomously perform actions such as tweeting, retweeting, liking, following, unfollowing, or direct messaging other accounts.
5, మార్చి 2025, బుధవారం
js classes & objects.............
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Objects</h1>
<h2>Display Properties</h2>
<p id="demo"></p>
<script>
// Create an Object
const person = {
name: "RAMU",
age: 40,
city: "HYDERABAD, loc AMERPET"
};
// Build a Text
let text = "";
for (let x in person) {
text += person[x] + " ";
};
// Display the Text
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<h1>js class objects functions </h1>
<h2>Adding a Property to a Constructor</h2>
<p id="demo"></p>
<script>
// Constructor function for Person Objects
function Person(first, last, age, eye) {
this.f = first;
this.l = last;
this.age = age;
this.eyecol = eye;
}
// Create 2 Person Objects
const myFather = new Person("ramu", "dayina", 40, "blue");
const myMother = new Person("ravi", "verma", 48, "green");
// Add a new Property
Person.prototype.nationality = "indian";
// Display new Property
document.getElementById("demo").innerHTML =
"The nationality of my father is "
+ myFather.nationality+ "<br>"
+"display from the FATHER object "+ "<br>"+myFather.f+ "<br>"+myFather.l+ "<br>"+myFather.age
+ "<br>"+myFather.eyecol+"<br>"
+"display from the MOTHER object "
+ "<br>"+myMother.f+ "<br>"
+myMother.l+ "<br>"+myMother.age+ "<br>"
+myMother.eyecol;
</script>
</body>
</html>
4, మార్చి 2025, మంగళవారం
3, మార్చి 2025, సోమవారం
When I see someone ……………I will forget present, like what I am ………my personal experiences ..................NOSTALGIC SONGS ARE SONGS THAT MAKE YOU FEEL SENTIMENTAL OR LONG FOR THE PAST. THEY CAN ALSO TRIGGER MEMORIES OF PEOPLE OR LIFE EVENTS. this type of music, అనేది ఒక వ్యక్తిని భావోద్వేగానికి గురిచేసే, గతం కోసం తహతహలాడే లేదా జ్ఞాపకాలను రేకెత్తించే పాట లేదా ఆడియో భాగం . కొన్ని పాటలు వారికి నిర్దిష్ట వ్యక్తులను అలాగే జీవిత సంఘటనలను గుర్తు చేస్తాయి.
నన్ను ఎవరో తాకిరి ..
1, మార్చి 2025, శనివారం
from my FIRST-HAND EXPERIENCE .... Mr Ramu ..........WHEN A WOMAN IS LOOKING AT YOU, IT COULD MEAN A VARIETY OF THINGS DEPENDING ON THE CONTEXT AND HER BODY LANGUAGE, INCLUDING: INTEREST, CURIOSITY, ATTRACTION, ASSESSMENT, A DESIRE TO CONNECT, or SIMPLY NOTICING YOU; HOWEVER, .................................................................THE ONLY WAY TO KNOW FOR SURE IS TO EITHER OBSERVE HER FURTHER or the best is DIRECTLY ASK HER.
నా తలుపు తట్టి కదిలించకే కవ్వించకే ప్రేమా