en
string
translation
string
target_lang
string
domain
string
complexity
string
Proteins are the polymers of about twenty different amino acids.
پروٹین تقریباً بیس مختلف امینو ایسڈ کے پولیمر ہیں۔
ur
technical
moderate
Enzymes are biocatalysts which speed up the reactions in biosystems.
اینزائمز بائیو کیٹالسٹ ہیں جو بائیو سسٹمز میں رد عمل کو تیز کرتے ہیں۔
ur
technical
moderate
Deficiency of vitamins leads to many diseases.
وٹامن کی کمی بہت سی بیماریوں کا باعث بنتی ہے۔
ur
technical
simple
Nucleic acids are responsible for the transfer of characters from parents to offsprings.
نیوکلک ایسڈ والدین سے اولاد میں خصوصیات کی منتقلی کے ذمہ دار ہیں۔
ur
technical
moderate
The structure of DNA is a double strand whereas RNA is a single strand molecule.
ڈی این اے کی ساخت ایک ڈبل اسٹرینڈ ہے جبکہ آر این اے ایک سنگل اسٹرینڈ مالیکیول ہے۔
ur
technical
moderate
What are monosaccharides?
مونو سیکرائڈ کیا ہیں؟
ur
technical
simple
What do you understand by the term glycosidic linkage?
آپ گلائکوسیڈک لنکج کی اصطلاح سے کیا سمجھتے ہیں؟
ur
technical
moderate
What are essential and non-essential amino acids?
ضروری اور غیر ضروری امینو ایسڈ کیا ہیں؟
ur
technical
moderate
How are vitamins classified?
وٹامن کی درجہ بندی کیسے کی جاتی ہے؟
ur
technical
simple
Write the important structural and functional differences between DNA and RNA.
ڈی این اے اور آر این اے کے درمیان اہم ساختی اور فعال اختلافات لکھیں۔
ur
technical
complex
Close the file once our work is done.
جب ہمارا کام ہو جائے تو فائل بند کر دیں۔
ur
technical
simple
If the file object is re-assigned, the previous file is automatically closed.
اگر فائل آبجیکٹ کو دوبارہ تفویض کیا جاتا ہے، تو پچھلی فائل خود بخود بند ہو جاتی ہے۔
ur
technical
moderate
Python allows opening a file using the 'with' clause.
پائیتھون 'with' کلاز کا استعمال کرتے ہوئے فائل کھولنے کی اجازت دیتا ہے۔
ur
technical
moderate
The advantage of 'with' clause is automatic file closing.
'with' کلاز کا فائدہ خودکار فائل بند کرنا ہے۔
ur
technical
simple
Even if an exception occurs, the file is closed automatically.
یہاں تک کہ اگر کوئی استثنیٰ ہوتا ہے، تو فائل خود بخود بند ہو جاتی ہے۔
ur
technical
moderate
We can open a file in write or append mode.
ہم فائل کو لکھنے یا شامل کرنے کے موڈ میں کھول سکتے ہیں۔
ur
technical
simple
Existing data will be erased if opened in write mode.
اگر لکھنے کے موڈ میں کھولا جائے تو موجودہ ڈیٹا مٹا دیا جائے گا۔
ur
technical
moderate
New data is added at the end in append mode.
شامل کرنے کے موڈ میں نیا ڈیٹا آخر میں شامل کیا جاتا ہے۔
ur
technical
simple
The write() method writes a single string.
write() طریقہ ایک واحد سٹرنگ لکھتا ہے۔
ur
technical
simple
The writelines() method writes a sequence of strings.
writelines() طریقہ سٹرنگز کا ایک سلسلہ لکھتا ہے۔
ur
technical
simple
Add a newline character at the end of each sentence.
ہر جملے کے آخر میں ایک نئی لائن کا کردار شامل کریں۔
ur
technical
moderate
Numeric data must be converted to a string before writing.
لکھنے سے پہلے عددی ڈیٹا کو ایک سٹرنگ میں تبدیل کرنا ضروری ہے۔
ur
technical
moderate
The write() method writes data onto a buffer.
write() طریقہ ڈیٹا کو ایک بفر پر لکھتا ہے۔
ur
technical
moderate
The close() method moves the buffer contents to the file.
close() طریقہ بفر کے مواد کو فائل میں منتقل کرتا ہے۔
ur
technical
moderate
writelines() does not return the number of characters written.
writelines() لکھے گئے حروف کی تعداد واپس نہیں کرتا ہے۔
ur
technical
moderate
We can use the flush() method to clear the buffer.
ہم بفر کو صاف کرنے کے لیے flush() طریقہ استعمال کر سکتے ہیں۔
ur
technical
moderate
Before reading a file, open it in read mode.
فائل پڑھنے سے پہلے، اسے پڑھنے کے موڈ میں کھولیں۔
ur
technical
simple
The read() method reads a specified number of bytes.
read() طریقہ مخصوص کردہ بائٹس کی تعداد پڑھتا ہے۔
ur
technical
moderate
If no argument is specified, the entire file is read.
اگر کوئی دلیل نہیں دی جاتی ہے، تو پوری فائل پڑھ لی جاتی ہے۔
ur
technical
moderate
The readline() method reads one complete line.
readline() طریقہ ایک مکمل لائن پڑھتا ہے۔
ur
technical
simple
The computer science textbook is designed for class XII students.
کمپیوٹر سائنس کی درسی کتاب بارہویں جماعت کے طلباء کے لیے ڈیزائن کی گئی ہے۔
ur
education
simple
This book covers fundamental concepts and problem-solving skills.
یہ کتاب بنیادی تصورات اور مسئلہ حل کرنے کی مہارتوں کا احاطہ کرتی ہے۔
ur
education
moderate
Exception handling is crucial in programming to prevent unexpected program termination.
غیر متوقع پروگرام کے خاتمے کو روکنے کے لیے پروگرامنگ میں استثنیٰ ہینڈلنگ بہت ضروری ہے۔
ur
technical
complex
The syllabus includes data structures, databases, and programming.
نصاب میں ڈیٹا اسٹرکچر، ڈیٹا بیس اور پروگرامنگ شامل ہیں۔
ur
education
moderate
Computer networks and security aspects are also important topics.
کمپیوٹر نیٹ ورکس اور سیکیورٹی کے پہلو بھی اہم موضوعات ہیں۔
ur
technical
moderate
Students will learn about file handling in Python.
طلباء پائتھون میں فائل ہینڈلنگ کے بارے میں سیکھیں گے۔
ur
technical
simple
The book provides hands-on examples to explain methodologies.
کتاب طریقہ کار کی وضاحت کے لیے عملی مثالیں فراہم کرتی ہے۔
ur
education
moderate
Project-based learning is included to promote teamwork.
ٹیم ورک کو فروغ دینے کے لیے پروجیکٹ پر مبنی سیکھنے کو شامل کیا گیا ہے۔
ur
education
moderate
The National Council of Educational Research and Training published this textbook.
نیشنل کونسل آف ایجوکیشنل ریسرچ اینڈ ٹریننگ نے یہ درسی کتاب شائع کی ہے۔
ur
education
simple
The book aims to develop logical thinking and problem-solving skills.
کتاب کا مقصد منطقی سوچ اور مسئلہ حل کرنے کی مہارتوں کو فروغ دینا ہے۔
ur
education
moderate
The preface highlights the importance of computer science in modern education.
پیش لفظ جدید تعلیم میں کمپیوٹر سائنس کی اہمیت کو اجاگر کرتا ہے۔
ur
education
moderate
The book is divided into chapters covering various topics.
کتاب کو مختلف موضوعات پر مشتمل ابواب میں تقسیم کیا گیا ہے۔
ur
education
simple
The authors and reviewers contributed to the development of this textbook.
مصنفین اور جائزہ لینے والوں نے اس درسی کتاب کی تیاری میں حصہ ڈالا۔
ur
education
moderate
The book includes activities and self-assessment sections.
کتاب میں سرگرمیاں اور خود تشخیص کے حصے شامل ہیں۔
ur
education
simple
The curriculum is designed to meet the challenges of the 21st century.
نصاب کو 21 ویں صدی کے چیلنجوں کا مقابلہ کرنے کے لیے ڈیزائن کیا گیا ہے۔
ur
education
moderate
The book covers topics like data structures, databases, and networking.
کتاب میں ڈیٹا اسٹرکچر، ڈیٹا بیس اور نیٹ ورکنگ جیسے موضوعات شامل ہیں۔
ur
technical
moderate
The book emphasizes the importance of computational thinking.
کتاب کمپیوٹیشنل سوچ کی اہمیت پر زور دیتی ہے۔
ur
education
moderate
The book provides a comprehensive overview of computer science.
کتاب کمپیوٹر سائنس کا ایک جامع جائزہ فراہم کرتی ہے۔
ur
education
moderate
The book is a valuable resource for students.
یہ کتاب طلباء کے لیے ایک قیمتی وسیلہ ہے۔
ur
education
simple
The book aims to prepare students for future careers in technology.
کتاب کا مقصد طلباء کو ٹیکنالوجی میں مستقبل کے کیریئر کے لیے تیار کرنا ہے۔
ur
education
moderate
The queue at the bank was very long today.
آج بینک میں قطار بہت لمبی تھی۔
ur
general
simple
Customers were waiting patiently at the cash counter.
گاہک کیش کاؤنٹر پر صبر سے انتظار کر رہے تھے۔
ur
general
simple
The first-in, first-out (FIFO) principle is fundamental to queue operations.
پہلے اندر، پہلے باہر (FIFO) کا اصول قطار کے کاموں کے لیے بنیادی ہے۔
ur
technical
moderate
A waiting list for train tickets functions as a queue.
ٹرین کے ٹکٹوں کی انتظار کی فہرست ایک قطار کے طور پر کام کرتی ہے۔
ur
general
moderate
The server uses a queue to handle multiple user requests.
سرور متعدد صارف کی درخواستوں کو سنبھالنے کے لیے ایک قطار کا استعمال کرتا ہے۔
ur
technical
moderate
Vehicles at a toll booth follow the queue principle.
ٹول بوتھ پر گاڑیاں قطار کے اصول پر عمل کرتی ہیں۔
ur
general
simple
The operating system manages jobs in a queue.
آپریٹنگ سسٹم قطار میں کاموں کا انتظام کرتا ہے۔
ur
technical
moderate
Enqueue operation adds an element to the rear of the queue.
این کیو آپریشن قطار کے پچھلے حصے میں ایک عنصر شامل کرتا ہے۔
ur
technical
moderate
Dequeue removes an element from the front of the queue.
ڈی کیو قطار کے سامنے سے ایک عنصر کو ہٹا دیتا ہے۔
ur
technical
moderate
The isEmpty function checks if the queue is empty.
isEmpty فنکشن چیک کرتا ہے کہ آیا قطار خالی ہے۔
ur
technical
moderate
The peek operation allows viewing the front element without removing it.
جھانکنے کا عمل اسے ہٹائے بغیر سامنے والے عنصر کو دیکھنے کی اجازت دیتا ہے۔
ur
technical
moderate
The IS FULL function prevents overflow exceptions.
IS FULL فنکشن اوور فلو استثنا کو روکتا ہے۔
ur
technical
moderate
A simple queue can be implemented using a list in Python.
ایک سادہ قطار کو از پائیتھون میں ایک فہرست کا استعمال کرتے ہوئے لاگو کیا جا سکتا ہے۔
ur
technical
moderate
The append function adds an element to the end of the list.
ضمیمہ فنکشن فہرست کے آخر میں ایک عنصر شامل کرتا ہے۔
ur
technical
moderate
The pop function removes an element from the beginning of the list.
پاپ فنکشن فہرست کے شروع سے ایک عنصر کو ہٹا دیتا ہے۔
ur
technical
moderate
The size function returns the number of elements in the queue.
سائز فنکشن قطار میں عناصر کی تعداد لوٹاتا ہے۔
ur
technical
moderate
The cashier called 'Next' to serve the next person.
کیشیئر نے اگلے شخص کی خدمت کے لیے 'اگلا' کہا۔
ur
general
simple
The program simulates a queue of people at a bank.
پروگرام بینک میں لوگوں کی ایک قطار کی نقالی کرتا ہے۔
ur
technical
moderate
Deque allows insertion and deletion from both ends.
Deque دونوں سروں سے اندراج اور حذف کرنے کی اجازت دیتا ہے۔
ur
technical
moderate
A deque can be used to implement both stacks and queues.
Deque کا استعمال اسٹیکس اور قطاروں دونوں کو لاگو کرنے کے لیے کیا جا سکتا ہے۔
ur
technical
moderate
What will happen if we do not close it?
اگر ہم اسے بند نہ کریں تو کیا ہوگا؟
ur
technical
simple
Will some error message be flashed?
کیا کوئی غلطی کا پیغام ظاہر ہوگا؟
ur
technical
simple
Define pickling in Python.
پائیتھون میں پکلنگ کی تعریف کریں۔
ur
technical
moderate
Explain serialization and deserialization of Python object.
پائیتھون آبجیکٹ کی سیریلائزیشن اور ڈی سیریلائزیشن کی وضاحت کریں۔
ur
technical
complex
Write a program to enter the following records in a binary file:
ایک پروگرام لکھیں تاکہ درج ذیل ریکارڈز کو بائنری فائل میں داخل کیا جا سکے۔
ur
technical
complex
The operating system in computer or mobile allocates memory to different applications for their execution.
کمپیوٹر یا موبائل میں آپریٹنگ سسٹم مختلف ایپلی کیشنز کو ان کے عمل کے لیے میموری مختص کرتا ہے۔
ur
technical
moderate
How does an operating system keep track of the free memory that can be allocated among programs/ applications to be executed?
ایک آپریٹنگ سسٹم اس مفت میموری کا سراغ کیسے رکھتا ہے جسے چلائے جانے والے پروگراموں/ایپلیکیشنز میں مختص کیا جا سکتا ہے؟
ur
technical
complex
Pile of clothes in an almirah.
الماری میں کپڑوں کا ڈھیر۔
ur
general
simple
Multiple chairs in a vertical pile.
عمودی ڈھیر میں متعدد کرسیاں۔
ur
general
simple
Bangles worn on wrist.
کلائی پر پہنی جانے والی چوڑیاں۔
ur
general
simple
Pile of boxes of eatables in pantry or on a kitchen shelf.
پینٹری یا کچن کی شیلف پر کھانے کی اشیاء کے ڈبوں کا ڈھیر۔
ur
general
moderate
When we need to reverse a string, the string is traversed from the last character till the first character.
جب ہمیں ایک سٹرنگ کو الٹنا ہوتا ہے، تو سٹرنگ کو آخری حرف سے لے کر پہلے حرف تک عبور کیا جاتا ہے۔
ur
technical
moderate
We use text/image editor for editing the text/image where we have options to redo/undo the editing done.
ہم متن/تصویر میں ترمیم کرنے کے لیے ٹیکسٹ/تصویر ایڈیٹر استعمال کرتے ہیں جہاں ہمارے پاس کی گئی ترمیم کو دوبارہ کرنے/منسوخ کرنے کے اختیارات موجود ہیں۔
ur
technical
moderate
While browsing the web, we move from one web page to another by accessing links between them.
ویب براؤز کرتے وقت، ہم ان کے درمیان لنکس تک رسائی حاصل کرکے ایک ویب پیج سے دوسرے ویب پیج پر جاتے ہیں۔
ur
general
moderate
In order to go back to the last visited web page, we may use the back button on the browser.
آخری وزٹ کیے گئے ویب پیج پر واپس جانے کے لیے، ہم براؤزر پر بیک بٹن استعمال کر سکتے ہیں۔
ur
general
moderate
While writing any arithmetic expression in a program, we may use parentheses to order the evaluation of operators.
کسی پروگرام میں کوئی حسابی اظہار لکھتے وقت، ہم آپریٹرز کی تشخیص کو ترتیب دینے کے لیے قوسین استعمال کر سکتے ہیں۔
ur
technical
complex
The end from which elements are added or deleted is called TOP of the stack.
وہ اختتام جہاں سے عناصر شامل یا حذف کیے جاتے ہیں اسے اسٹیک کا ٹاپ کہا جاتا ہے۔
ur
technical
moderate
PUSH adds a new element at the TOP of the stack.
پش اسٹیک کے ٹاپ پر ایک نیا عنصر شامل کرتا ہے۔
ur
technical
simple
POP operation is used to remove the top most element of the stack, that is, the element at the TOP of the stack.
پاپ آپریشن اسٹیک کے سب سے اوپر والے عنصر کو ہٹانے کے لیے استعمال ہوتا ہے، یعنی اسٹیک کے ٹاپ پر موجود عنصر۔
ur
technical
moderate
A stack is used to insert and delete elements in LIFO order.
اسٹیک کا استعمال LIFO ترتیب میں عناصر کو داخل کرنے اور حذف کرنے کے لیے کیا جاتا ہے۔
ur
technical
moderate
When an error occurs, Python interpreter creates an object called the exception object.
جب کوئی غلطی ہوتی ہے، تو پائیتھون مترجم ایک ایسا آبجیکٹ بناتا ہے جسے استثنیٰ آبجیکٹ کہا جاتا ہے۔
ur
technical
moderate
This object contains information about the error like its type, file name and position in the program where the error has occurred.
اس آبجیکٹ میں غلطی کے بارے میں معلومات شامل ہوتی ہیں جیسے اس کی قسم، فائل کا نام اور پروگرام میں وہ جگہ جہاں غلطی ہوئی ہے۔
ur
technical
moderate
The object is handed over to the runtime system so that it can find an appropriate code to handle this particular exception.
آبجیکٹ کو رن ٹائم سسٹم کے حوالے کیا جاتا ہے تاکہ وہ اس خاص استثنیٰ کو سنبھالنے کے لیے مناسب کوڈ تلاش کر سکے۔
ur
technical
complex
This process of creating an exception object and handing it over to the runtime system is called throwing an exception.
استثنیٰ آبجیکٹ بنانے اور اسے رن ٹائم سسٹم کے حوالے کرنے کے اس عمل کو استثنیٰ پھینکنا کہا جاتا ہے۔
ur
technical
complex
It is important to note that when an exception occurs while executing a particular program statement, the control jumps to an exception handler.
یہ نوٹ کرنا ضروری ہے کہ جب کسی خاص پروگرام کے بیان پر عمل کرتے وقت کوئی استثنیٰ ہوتا ہے، تو کنٹرول ایک استثنیٰ ہینڈلر پر چھلانگ لگاتا ہے۔
ur
technical
complex
Abandoning execution of the remaining program statements.
باقی پروگرام کے بیانات پر عمل درآمد ترک کرنا۔
ur
technical
moderate
The runtime system searches the entire program for a block of code, called the exception handler that can handle the raised exception.
رن ٹائم سسٹم پورے پروگرام میں کوڈ کے ایک بلاک کی تلاش کرتا ہے، جسے استثنیٰ ہینڈلر کہا جاتا ہے جو اٹھائے گئے استثنیٰ کو سنبھال سکتا ہے۔
ur
technical
complex
It first searches for the method in which the error has occurred and the exception has been raised.
یہ سب سے پہلے اس طریقہ کار کی تلاش کرتا ہے جس میں غلطی ہوئی ہے اور استثنیٰ اٹھایا گیا ہے۔
ur
technical
moderate
If not found, then it searches the method from which this method (in which exception was raised) was called.
اگر نہیں ملا تو، یہ اس طریقہ کار کی تلاش کرتا ہے جس سے یہ طریقہ (جس میں استثنیٰ اٹھایا گیا تھا) بلایا گیا تھا۔
ur
technical
complex
This hierarchical search in reverse order continues till the exception handler is found.
الٹ ترتیب میں یہ درجہ بندی کی تلاش اس وقت تک جاری رہتی ہے جب تک کہ استثنیٰ ہینڈلر نہ مل جائے۔
ur
technical
complex