অমিত্রাক্ষর ছন্দের পাঁচটি বৈশিষ্ট্য উল্লেখ করুন।
দৈন্যতা
সমিচিন
শিরচ্ছেদ
সন্যাসী
পোষ্টমাষ্টার
আকাংখা
নুন্যতম
জল
আকাশ
পাথর
ঘোড়া
উর্মি
Who were the University wits? Discuss the contribution of the University wits to English Drama.
What is 'Romanticism'? Evaluate the major English romantic poets and their contributions to English romantic poetry.
Discuss E.M. Forster's symbolism with reference to the novel "A Passage to India".
Who are the major writers of the Puritan Age? Discuss "The Paradise Lost" by Milton as an epic.
What is a romantic comedy? Discuss "As You Like It" as a romantic comedy.
How does Shelley build up the image of the west wind as a destroyer and preserver in "Ode to the West Wind"?
How does Swift Portray the negative side of human life in "Gulliver's Travels"?
Comment on Shaw's views on love and war in "Arms and the Man".
Allegory
Satire
Fable
Ballad
Three Unities
Mock-epic
Elegy
Parable
She was trembling like a leaf.
I fall upon the thorns of life! I bleed!
O Judgment! thou art tied to brutish beasts.
was this the face that launch'd a thousand ships. And burnt the topless towers of Ilium?
She is an open book.
Bath (verb)
Bright (adverb)
Heart (adjective)
Enjoyment (verb)
Choose (noun)
Courage (adjective)
Success (verb)
Dramatic (adverb)
Scarcely had he reached the station _________
A bad workman quarrels _________
They wash their hands and ___________
It was five years since we _________
Had I been you ________
It was high time for us _________
The old man walks carefully lest _________
The car is too costly _________
Friend Function হল একটি বিশেষ ধরনের ফাংশন যা C++ এ ব্যবহৃত হয়। এটি ক্লাসের বাইরে থেকেও ক্লাসের private এবং protected ডাটা মেম্বার অ্যাক্সেস করতে পারে।
class MyClass {
private:
int private_data;
public:
MyClass() {
private_data = 0;
}
// Friend function declaration
friend void displayData(MyClass obj);
};
// Friend function definition
void displayData(MyClass obj) {
// Can access private members
cout << "Private data = " << obj.private_data;
}
সুবিধাসমূহ:
অসুবিধাসমূহ:
উদাহরণ:
class Box {
private:
int length;
public:
Box() {
length = 0;
}
friend void printLength(Box b);
};
void printLength(Box b) {
// Can access private member length
cout << "Length = " << b.length << endl;
}
int main() {
Box box;
printLength(box); // Will print: Length = 0
return 0;
}