en string | translation string | target_lang string | domain string | complexity string |
|---|---|---|---|---|
SaaS provides on-demand access to application software. | SaaS درخواست سافٹ ویئر تک آن ڈیمانڈ رسائی فراہم کرتا ہے۔ | ur | technical | simple |
The list `list3` contains a mix of data types: an integer, a float, and a string. | لسٹ `list3` میں مختلف قسم کے ڈیٹا شامل ہیں: ایک انٹیجر، ایک فلوٹ، اور ایک اسٹرنگ۔ | ur | technical | simple |
Nested lists, like `list4`, are lists within lists, allowing for structured data representation. | گھونسلے کی فہرستیں، جیسے `list4`، فہرستوں کے اندر فہرستیں ہیں، جو منظم ڈیٹا کی نمائندگی کی اجازت دیتی ہیں۔ | ur | technical | moderate |
Each element in a list is accessed using its index, starting from 0 for the first element. | فہرست میں موجود ہر عنصر کو اس کے انڈیکس کا استعمال کرتے ہوئے حاصل کیا جاتا ہے، جو پہلے عنصر کے لیے 0 سے شروع ہوتا ہے۔ | ur | technical | simple |
Accessing an out-of-range index in a list results in an `IndexError`. | فہرست میں حد سے باہر انڈیکس تک رسائی کے نتیجے میں `IndexError` ہوتا ہے۔ | ur | technical | moderate |
Negative indices can be used to access list elements from the end, with -1 referring to the last element. | منفی انڈیکس کا استعمال فہرست کے عناصر کو آخر سے حاصل کرنے کے لیے کیا جا سکتا ہے، جس میں -1 آخری عنصر کا حوالہ دیتا ہے۔ | ur | technical | moderate |
Lists in Python are mutable, meaning their contents can be changed after creation. | پائیتھون میں فہرستیں تغیر پذیر ہیں، یعنی تخلیق کے بعد ان کے مواد کو تبدیل کیا جا سکتا ہے۔ | ur | technical | simple |
The concatenation operator `+` joins two or more lists together. | جوڑنے والا آپریٹر `+` دو یا زیادہ فہرستوں کو ایک ساتھ جوڑتا ہے۔ | ur | technical | simple |
Concatenation requires both operands to be of list type; otherwise, a `TypeError` occurs. | جوڑنے کے لیے ضروری ہے کہ دونوں آپرینڈ فہرست کی قسم کے ہوں؛ بصورت دیگر، ایک `TypeError` ہوتا ہے۔ | ur | technical | moderate |
The repetition operator `*` replicates the contents of a list a specified number of times. | تکرار کرنے والا آپریٹر `*` ایک فہرست کے مواد کو ایک مخصوص تعداد میں دہراتا ہے۔ | ur | technical | simple |
The `in` operator checks if an element is present in a list and returns `True` or `False`. | `in` آپریٹر چیک کرتا ہے کہ آیا کوئی عنصر فہرست میں موجود ہے اور `True` یا `False` واپس کرتا ہے۔ | ur | technical | simple |
Slicing allows you to extract a portion of a list to create a new list. | سلائسنگ آپ کو ایک نئی فہرست بنانے کے لیے فہرست کا ایک حصہ نکالنے کی اجازت دیتی ہے۔ | ur | technical | simple |
You can traverse a list using `for` or `while` loops to access each element. | آپ ہر عنصر تک رسائی کے لیے `for` یا `while` لوپس کا استعمال کرتے ہوئے ایک فہرست کو عبور کر سکتے ہیں۔ | ur | technical | simple |
The `len()` function returns the number of elements in a list. | `len()` فنکشن ایک فہرست میں موجود عناصر کی تعداد واپس کرتا ہے۔ | ur | technical | simple |
The `append()` method adds a single element to the end of a list. | `append()` طریقہ ایک واحد عنصر کو فہرست کے آخر میں شامل کرتا ہے۔ | ur | technical | simple |
The `extend()` method adds multiple elements from another list to the end of the current list. | `extend()` طریقہ موجودہ فہرست کے آخر میں دوسری فہرست سے متعدد عناصر شامل کرتا ہے۔ | ur | technical | moderate |
The `insert()` method inserts an element at a specific index in the list. | `insert()` طریقہ فہرست میں ایک مخصوص انڈیکس پر ایک عنصر داخل کرتا ہے۔ | ur | technical | moderate |
The `count()` method returns the number of times a specific element appears in the list. | `count()` طریقہ اس بات کی تعداد واپس کرتا ہے کہ ایک مخصوص عنصر فہرست میں کتنی بار ظاہر ہوتا ہے۔ | ur | technical | moderate |
The `index()` method returns the index of the first occurrence of a given element. | `index()` طریقہ کسی دیے گئے عنصر کی پہلی موجودگی کا انڈیکس واپس کرتا ہے۔ | ur | technical | moderate |
The `remove()` method removes the first occurrence of a specified element from the list. | `remove()` طریقہ فہرست سے ایک مخصوص عنصر کی پہلی موجودگی کو ہٹا دیتا ہے۔ | ur | technical | moderate |
The `pop()` method removes and returns an element from a specific index (or the last element if no index is given). | `pop()` طریقہ ایک مخصوص انڈیکس سے ایک عنصر کو ہٹا دیتا ہے اور واپس کرتا ہے (یا آخری عنصر اگر کوئی انڈیکس نہیں دیا گیا ہے۔) | ur | technical | moderate |
The ATM printed the receipt after I withdrew cash. | اے ٹی ایم نے کیش نکالنے کے بعد رسید پرنٹ کی۔ | ur | general | simple |
Please check your account balance at the ATM. | برائے مہربانی اے ٹی ایم پر اپنا اکاؤنٹ بیلنس چیک کریں۔ | ur | general | simple |
The bank's system handles cash withdrawals through its ATMs. | بینک کا نظام اپنے اے ٹی ایم کے ذریعے کیش نکالنے کو سنبھالتا ہے۔ | ur | technical | moderate |
Verify your login details before proceeding with the transaction. | لین دین کے ساتھ آگے بڑھنے سے پہلے اپنی لاگ ان کی تفصیلات کی تصدیق کریں۔ | ur | technical | moderate |
The system checks for berth availability in the desired class. | نظام مطلوبہ کلاس میں برتھ کی دستیابی کی جانچ کرتا ہے۔ | ur | technical | moderate |
If payment is successful, the tickets are issued. | اگر ادائیگی کامیاب ہو جاتی ہے تو ٹکٹ جاری کر دیے جاتے ہیں۔ | ur | technical | moderate |
The number of available tickets is reduced after each booking. | ہر بکنگ کے بعد دستیاب ٹکٹوں کی تعداد کم ہو جاتی ہے۔ | ur | technical | moderate |
A PNR number is allocated for each ticket. | ہر ٹکٹ کے لیے ایک PNR نمبر مختص کیا جاتا ہے۔ | ur | technical | moderate |
Berths are allocated or a waiting list number is generated. | برتھ مختص کی جاتی ہیں یا انتظار کی فہرست کا نمبر تیار کیا جاتا ہے۔ | ur | technical | moderate |
The ticket includes journey details like start and end stations. | ٹکٹ میں سفر کی تفصیلات شامل ہیں جیسے کہ شروع اور اختتامی اسٹیشن۔ | ur | technical | moderate |
The date of journey and the number of tickets required are specified. | سفر کی تاریخ اور مطلوبہ ٹکٹوں کی تعداد کی وضاحت کی گئی ہے۔ | ur | technical | moderate |
Passengers provide their names, ages, and contact information. | مسافر اپنے نام، عمریں اور رابطہ کی معلومات فراہم کرتے ہیں۔ | ur | technical | moderate |
Payment details are also included in the ticket information. | ادائیگی کی تفصیلات بھی ٹکٹ کی معلومات میں شامل ہیں۔ | ur | technical | moderate |
The system generates a ticket with berth and coach number. | نظام برتھ اور کوچ نمبر کے ساتھ ایک ٹکٹ تیار کرتا ہے۔ | ur | technical | moderate |
Alternatively, a ticket with a waiting list number is issued. | متبادل کے طور پر، انتظار کی فہرست کے نمبر کے ساتھ ایک ٹکٹ جاری کیا جاتا ہے۔ | ur | technical | moderate |
Data processing involves several steps. | ڈیٹا پروسیسنگ میں کئی مراحل شامل ہیں۔ | ur | technical | moderate |
Raw data is transformed into useful information. | خام ڈیٹا کو کارآمد معلومات میں تبدیل کیا جاتا ہے۔ | ur | technical | moderate |
Statistical techniques are used for data summarization. | ڈیٹا خلاصہ کرنے کے لیے شماریاتی تکنیکوں کا استعمال کیا جاتا ہے۔ | ur | technical | complex |
Measures of central tendency help understand the data. | مرکزی رجحان کی پیمائش ڈیٹا کو سمجھنے میں مدد کرتی ہے۔ | ur | technical | complex |
The mean, median, and mode are common measures. | اوسط، وسطی اور موڈ عام پیمائش ہیں۔ | ur | technical | complex |
Enter a string: | ایک سٹرنگ درج کریں: | ur | technical | simple |
Write a program to convert a number entered by the user into its corresponding number in words. | ایک پروگرام لکھیں جو صارف کے ذریعہ داخل کردہ نمبر کو الفاظ میں اس کے مساوی نمبر میں تبدیل کرے۔ | ur | technical | moderate |
Lists are mutable sequences in Python, i.e. we can change the elements of the list. | لسٹس از پائیتھون میں تغیر پذیر ترتیبیں ہیں، یعنی ہم فہرست کے عناصر کو تبدیل کر سکتے ہیں۔ | ur | technical | moderate |
Each key is separated from its value by a colon. | ہر کلید کو اس کی قدر سے کالن کے ذریعے الگ کیا جاتا ہے۔ | ur | technical | simple |
What will be the output of the following statements? | مندرجہ ذیل بیانات کا آؤٹ پٹ کیا ہوگا؟ | ur | technical | simple |
Consider the following list myList. What will be the elements of myList after each of the following operations? | مندرجہ ذیل فہرست myList پر غور کریں۔ مندرجہ ذیل ہر آپریشن کے بعد myList کے عناصر کیا ہوں گے؟ | ur | technical | moderate |
Differentiate between append() and extend() methods of list. | فہرست کے append() اور extend() طریقوں کے درمیان فرق کریں۔ | ur | technical | moderate |
What is the difference between the following operations on list1: | list1 پر مندرجہ ذیل آپریشنز کے درمیان کیا فرق ہے: | ur | technical | simple |
Write Python statements to retrieve the following information from the list stRecord. | فہرست stRecord سے مندرجہ ذیل معلومات حاصل کرنے کے لیے Python کے بیانات لکھیں۔ | ur | technical | moderate |
Find the output of the following statements: | مندرجہ ذیل بیانات کا آؤٹ پٹ تلاش کریں: | ur | technical | simple |
Write a program to find the number of times an element occurs in the list. | ایک پروگرام لکھیں جو یہ معلوم کرے کہ کوئی عنصر فہرست میں کتنی بار ظاہر ہوتا ہے۔ | ur | technical | moderate |
Write a program to read a list of n integers (positive as well as negative). | n عددوں کی ایک فہرست پڑھنے کے لیے ایک پروگرام لکھیں (مثبت کے ساتھ ساتھ منفی بھی)۔ | ur | technical | moderate |
Write a program to find the largest and the second largest elements in a given list of elements. | ایک پروگرام لکھیں جو عناصر کی دی گئی فہرست میں سب سے بڑے اور دوسرے سب سے بڑے عناصر کو تلاش کرے۔ | ur | technical | complex |
Write a program to read a list of n integers and find their median. | n عددوں کی ایک فہرست پڑھنے اور ان کا وسط تلاش کرنے کے لیے ایک پروگرام لکھیں۔ | ur | technical | complex |
Modify this list so that it does not contain any duplicate elements. | اس فہرست میں ترمیم کریں تاکہ اس میں کوئی بھی ڈپلیکیٹ عناصر شامل نہ ہوں۔ | ur | technical | moderate |
Input an element from the user that has to be inserted in the list. | صارف سے ایک عنصر ان پٹ کریں جسے فہرست میں داخل کرنا ہے۔ | ur | technical | moderate |
The program should ask for the position of the element to be deleted from the list. | پروگرام کو فہرست سے حذف کیے جانے والے عنصر کی پوزیشن کے لیے پوچھنا چاہیے۔ | ur | technical | moderate |
Write a Python program to find the highest 2 values in a dictionary. | ایک Python پروگرام لکھیں جو ایک لغت میں سب سے زیادہ 2 اقدار تلاش کرے۔ | ur | technical | complex |
Write a Python program to create a dictionary from a string ‘w3resource’. | ایک Python پروگرام لکھیں جو ایک سٹرنگ 'w3resource' سے ایک لغت بنائے۔ | ur | technical | complex |
Display the Name and Phone number for all your friends. | اپنے تمام دوستوں کے لیے نام اور فون نمبر ڈسپلے کریں۔ | ur | technical | simple |
It increases the chances of loss of data due to any failure of hardware or software. | یہ ہارڈ ویئر یا سافٹ ویئر کی کسی بھی ناکامی کی وجہ سے ڈیٹا کے ضائع ہونے کے امکانات کو بڑھاتا ہے۔ | ur | technical | moderate |
It can bring all operations to a halt for all the users. | یہ تمام صارفین کے لیے تمام کارروائیوں کو روک سکتا ہے۔ | ur | technical | moderate |
Each table can have multiple columns where each column name should be unique. | ہر ٹیبل میں متعدد کالم ہو سکتے ہیں جہاں ہر کالم کا نام منفرد ہونا چاہیے۔ | ur | technical | moderate |
For example, each row in the table represents a related set of values. | مثال کے طور پر، ٹیبل کی ہر قطار اقدار کے ایک متعلقہ سیٹ کی نمائندگی کرتی ہے۔ | ur | technical | simple |
Thus, a table consists of a collection of relationships. | اس طرح، ایک ٹیبل رشتوں کے مجموعے پر مشتمل ہے۔ | ur | technical | simple |
It is important to note here that relations in a database are not independent tables, but are associated with each other. | یہاں یہ نوٹ کرنا ضروری ہے کہ ڈیٹا بیس میں تعلقات آزاد ٹیبل نہیں ہیں، بلکہ ایک دوسرے سے وابستہ ہیں۔ | ur | technical | complex |
If linking attributes are not there in appropriate relations, it will not be possible to keep the database in correct state and retrieve valid information from the database. | اگر مناسب رشتوں میں لنکنگ ایٹریبیوٹس موجود نہیں ہیں، تو ڈیٹا بیس کو درست حالت میں رکھنا اور ڈیٹا بیس سے درست معلومات حاصل کرنا ممکن نہیں ہوگا۔ | ur | technical | complex |
Figure 7.3 shows the relational database Student Attendance along with the three relations (tables) STUDENT, ATTENDANCE and GUARDIAN. | شکل 7.3 رشتہ دار ڈیٹا بیس اسٹوڈنٹ حاضری کو تین رشتوں (ٹیبلز) اسٹوڈنٹ، حاضری اور گارڈین کے ساتھ دکھاتا ہے۔ | ur | technical | moderate |
RollNumber: unique id of the student | رول نمبر: طالب علم کی منفرد شناخت | ur | technical | simple |
AttendanceDate: date on which attendance is taken | حاضری کی تاریخ: وہ تاریخ جس پر حاضری لی جاتی ہے | ur | technical | simple |
Each row of data in a relation (table) is called a tuple. | ایک رشتے (ٹیبل) میں ڈیٹا کی ہر قطار کو ٹپل کہا جاتا ہے۔ | ur | technical | simple |
It is a set of values from which an attribute can take a value in each row. | یہ اقدار کا ایک مجموعہ ہے جس سے ایک وصف ہر قطار میں ایک قدر لے سکتا ہے۔ | ur | technical | moderate |
A database that is modeled on relational data model concept is called Relational Database. | ایک ڈیٹا بیس جو رشتہ دار ڈیٹا ماڈل کے تصور پر مبنی ہے اسے رشتہ دار ڈیٹا بیس کہا جاتا ہے۔ | ur | technical | moderate |
Let us now understand the commonly used terminologies in relational data model using Figure 7.4. | آئیے اب شکل 7.4 کا استعمال کرتے ہوئے رشتہ دار ڈیٹا ماڈل میں عام طور پر استعمال ہونے والی اصطلاحات کو سمجھتے ہیں۔ | ur | technical | moderate |
The number of attributes in a relation is called the Degree of the relation. | ایک رشتے میں ایٹریبیوٹس کی تعداد کو رشتے کی ڈگری کہا جاتا ہے۔ | ur | technical | simple |
In relational data model, following three properties are observed with respect to a relation which makes a relation different from a data file or a simple table. | رشتہ دار ڈیٹا ماڈل میں، ایک رشتے کے حوالے سے مندرجہ ذیل تین خصوصیات کا مشاہدہ کیا جاتا ہے جو ایک رشتے کو ڈیٹا فائل یا ایک سادہ ٹیبل سے مختلف بناتی ہیں۔ | ur | technical | complex |
Each attribute in a relation has a unique name. | ایک رشتے میں ہر وصف کا ایک منفرد نام ہوتا ہے۔ | ur | technical | simple |
Each tuple in a relation is distinct. | ایک رشتے میں ہر ٹپل الگ ہوتا ہے۔ | ur | technical | simple |
All data values in an attribute must be from the same domain (same data type). | ایک وصف میں موجود تمام ڈیٹا ویلیوز ایک ہی ڈومین (ایک ہی ڈیٹا ٹائپ) سے ہونی چاہئیں۔ | ur | technical | moderate |
A foreign key is used to represent the relationship between two relations. | ایک غیر ملکی کلید دو رشتوں کے درمیان تعلق کی نمائندگی کرنے کے لیے استعمال ہوتی ہے۔ | ur | technical | moderate |
Load the data in the file Iris.txt in a 2-D array called iris. | ڈیٹا کو Iris.txt فائل میں لوڈ کریں جسے آئرس نامی 2-D صف میں رکھا گیا ہے۔ | ur | technical | moderate |
Drop column whose index = 4 from the array iris. | صف آئرس سے اس کالم کو ہٹا دیں جس کا انڈیکس 4 ہے۔ | ur | technical | moderate |
Display the shape, dimensions and size of iris. | آئرس کی شکل، جہتیں اور سائز دکھائیں۔ | ur | technical | simple |
Split iris into three 2-D arrays, each array for a different species. | آئرس کو تین 2-D صفوں میں تقسیم کریں، ہر صف ایک مختلف نوع کے لیے ہے۔ | ur | technical | moderate |
Print the three arrays iris1, iris2, iris3. | تین صفیں iris1, iris2, iris3 پرنٹ کریں۔ | ur | technical | simple |
Create a 1-D array header having elements "sepal length", "sepal width", "petal length", "petal width", "Species No" in that order. | ایک 1-D صف ہیڈر بنائیں جس میں عناصر ہوں "sepal length", "sepal width", "petal length", "petal width", "Species No" اسی ترتیب میں۔ | ur | technical | complex |
Display the array header. | صف ہیڈر دکھائیں۔ | ur | technical | simple |
Find the max, min, mean and standard deviation for the columns of the iris and store the results in the arrays iris_max, iris_min, iris_avg, iris_std, iris_ var respectively. | آئرس کے کالموں کے لیے زیادہ سے زیادہ، کم سے کم، اوسط اور معیاری انحراف معلوم کریں اور نتائج کو بالترتیب صفوں iris_max, iris_min, iris_avg, iris_std, iris_ var میں محفوظ کریں۔ | ur | technical | complex |
The results must be rounded to not more than two decimal places. | نتائج کو زیادہ سے زیادہ دو اعشاریہ مقامات تک گول کیا جانا چاہیے۔ | ur | technical | moderate |
Similarly find the max, min, mean and standard deviation for the columns of the iris1, iris2 and iris3 and store the results in the arrays with appropriate names. | اسی طرح، iris1, iris2 اور iris3 کے کالموں کے لیے زیادہ سے زیادہ، کم سے کم، اوسط اور معیاری انحراف معلوم کریں اور نتائج کو مناسب ناموں کے ساتھ صفوں میں محفوظ کریں۔ | ur | technical | complex |
Check the minimum value for sepal length, sepal width, petal length and petal width of the three species in comparison to the minimum value of sepal length, sepal width, petal length and petal width for the data set as a whole and fill the table below with True if the species value is greater than the dataset value and... | تین پرجاتیوں کی سیپل کی لمبائی، سیپل کی چوڑائی، پنکھڑی کی لمبائی اور پنکھڑی کی چوڑائی کے لیے کم از کم قیمت کو ڈیٹا سیٹ کے لیے سیپل کی لمبائی، سیپل کی چوڑائی، پنکھڑی کی لمبائی اور پنکھڑی کی چوڑائی کی کم از کم قیمت کے مقابلے میں چیک کریں اور اگر پرجاتی کی قیمت ڈیٹا سیٹ کی قیمت سے زیادہ ہے تو نیچے دی گئی جدول کو سچ سے پُر... | ur | technical | complex |
Compare Iris setosa’s average sepal width to that of Iris virginica. | آئرس سیٹوسا کی اوسط سیپل کی چوڑائی کا موازنہ آئرس ورجینیکا سے کریں۔ | ur | technical | moderate |
Compare Iris setosa’s average petal length to that of Iris virginica. | آئرس سیٹوسا کی اوسط پنکھڑی کی لمبائی کا موازنہ آئرس ورجینیکا سے کریں۔ | ur | technical | moderate |
Compare Iris setosa’s average petal width to that of Iris virginica. | آئرس سیٹوسا کی اوسط پنکھڑی کی چوڑائی کا موازنہ آئرس ورجینیکا سے کریں۔ | ur | technical | moderate |
Save the array iris_avg in a comma separated file named IrisMeanValues.txt on the hard disk. | صف iris_avg کو ایک کوما سے الگ کردہ فائل میں محفوظ کریں جس کا نام IrisMeanValues.txt ہے جو ہارڈ ڈسک پر ہے۔ | ur | technical | moderate |
Save the arrays iris_max, iris_avg, iris_min in a comma separated file named IrisStat.txt on the hard disk. | صفوں iris_max, iris_avg, iris_min کو ایک کوما سے الگ کردہ فائل میں محفوظ کریں جس کا نام IrisStat.txt ہے جو ہارڈ ڈسک پر ہے۔ | ur | technical | moderate |
After learning about importance of data in the previous chapter, we need to explore the methods to store and manage data electronically. | پچھلے باب میں ڈیٹا کی اہمیت کے بارے میں جاننے کے بعد، ہمیں الیکٹرانک طور پر ڈیٹا کو ذخیرہ کرنے اور منظم کرنے کے طریقوں کو تلاش کرنے کی ضرورت ہے۔ | ur | technical | moderate |
Let us take an example of a school that maintains data about its students, along with their attendance record and guardian details. | آئیے ایک اسکول کی مثال لیتے ہیں جو اپنے طلباء کے بارے میں ڈیٹا برقرار رکھتا ہے، ان کے حاضری کے ریکارڈ اور سرپرست کی تفصیلات کے ساتھ۔ | ur | technical | moderate |
The class teacher marks daily attendance of the students in the attendance register. | کلاس ٹیچر حاضری رجسٹر میں طلباء کی روزانہ حاضری لگاتی ہے۔ | ur | technical | simple |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.