Deck 11: String Manipulation and Menus

ملء الشاشة (f)
exit full mode
سؤال
Visual Basic provides the ____ method for accessing any number of characters in a string.

A) Mid
B) Left
C) Substring
D) Right
استخدم زر المسافة أو
up arrow
down arrow
لقلب البطاقة.
سؤال
____ is the syntax for inserting characters into a string.

A) string.Substring(startIndex[,numCharsToAccess])
B) string.Insert(startIndex, value)
C) string.Remove(startIndex[, numCharsToRemove])
D) string.Find(startIndex[, numCharsToFind])
سؤال
Each menu element is considered a(n) ____.

A) interface
B) class
C) system
D) object
سؤال
The Contains method always begins the search with ____.

A) the last character in the string
B) the middle character in the string
C) both ends of the string
D) the first character in the string
سؤال
When an expression contains more than one method, the computer processes the methods from right to left.
سؤال
The ____ character represents zero or more characters.

A) ?
B) *
C) #
D) .
سؤال
The Substring method accesses one or more characters contained in a string.
سؤال
A ____ character forces a literal constant to assume a data type other than the one its form indicates.

A) static type
B) conditioned type
C) literal type
D) reconditioned type
سؤال
To insert the value at the beginning of a string, you use a startIndex of 1.
سؤال
To represent a single digit in a pattern, you use the ____ character.

A) *
B) ?
C) .
D) #
سؤال
When processing the PadLeft and PadRight methods, the computer first makes a temporary copy of the string in memory; it then pads the copy only.
سؤال
To specify a different starting location in the IndexOf method, you use the optional ____ argument.

A) startIndex
B) firstIndex
C) Index
D) locateIndex
سؤال
The ____ character in a pattern represents one character only.

A) ?
B) *
C) #
D) .
سؤال
The ____ argument in the syntax of the PadRight method is an integer that represents the total number of characters you want the string's copy to contain.

A) firstChars
B) totalChars
C) countChars
D) replaceChars
سؤال
If you need to determine whether a string contains a specific sequence of characters, you can use the ____ method.

A) Find
B) IndexOf
C) Locate
D) Regex
سؤال
When processing the Insert method, the computer first makes a temporary copy of the string in memory.
سؤال
____ is the syntax to access characters in a string.

A) string.Find(startIndex[, numCharsToFind])
B) string.Substring(startIndex[,numCharsToAccess])
C) string.Insert(startIndex, value)
D) string.Remove(startIndex[, numCharsToRemove])
سؤال
The ____ method pads the string on the right, which means it inserts the padded characters at the end of the string.

A) PadLeft
B) Pad
C) TrimRight
D) PadRight
سؤال
____ is the syntax for removing the characters from a string.

A) string.Find(startIndex[, numCharsToFind])
B) string.Insert(startIndex, value)
C) string.Remove(startIndex[, numCharsToRemove])
D) string.Substring(startIndex[,numCharsToAccess])
سؤال
The most commonly used properties for a menu element are the ____ properties.

A) Name and Text
B) Name and Action
C) Action and Text
D) Label and Text
سؤال
In Windows applications that have an Edit menu, ____ is used to select the Paste command when the Edit menu is closed.

A) Ctrl+X
B) Ctrl+V
C) Ctrl+C
D) Ctrl+P
سؤال
Discuss why applications might need to work with strings.
سؤال
The number of characters contained in a string is stored as an integer in the string's ____________________ property.
سؤال
The access key allows the user to open the menu by pressing the ____ key in combination with the access key.

A) Ctrl
B) Shift
C) Alt
D) Ctrl+Alt
سؤال
Describe menu title captions.
سؤال
If an item on a menu or submenu is a command, you enter the appropriate instructions in the item's ____________________ event procedure.
سؤال
In Windows applications that have an Edit menu, ____ is used to select the Cut command when the Edit menu is closed.

A) Ctrl+Y
B) Ctrl+C
C) Ctrl+V
D) Ctrl+X
سؤال
The ____________________ method pads the string on the left, which means it inserts the padded characters at the beginning of the string.
سؤال
What happens when you omit the numCharsToAccess argument from the Substring method?
سؤال
You specify a menu item's shortcut keys in the ShortcutKeys property in the ____ window.

A) Properties
B) System
C) Menu
D) Interface
سؤال
Explain the difference between the Trim method and the Remove method.
سؤال
Explain how the Contains method works.
سؤال
Explain what the Like operator does.
سؤال
Visual Basic's ____________________ method allows you to insert characters anywhere in a string.
سؤال
A menu item's ____ key can be used only when the menu is open.

A) control
B) menu
C) access
D) shortcut
سؤال
What does the Substring method return?
سؤال
Commonly used menu items should be assigned ____.

A) shortcut keys
B) header keys
C) global keys
D) control keys
سؤال
Discuss the purpose of the access key.
سؤال
A menu item's ____________________ keys can be used only when the menu is closed.
سؤال
Explain how the PadLeft and PadRight methods work.
سؤال
Match between columns
Returns a -1 if the subString is not contained in the string
Trim method
Returns a -1 if the subString is not contained in the string
Remove method
Returns a -1 if the subString is not contained in the string
Contains method
Returns a -1 if the subString is not contained in the string
IndexOf method
Returns a -1 if the subString is not contained in the string
PadLeft
Returns a -1 if the subString is not contained in the string
Like operator
Returns a -1 if the subString is not contained in the string
menu strip control
Returns a -1 if the subString is not contained in the string
menu title
Returns a -1 if the subString is not contained in the string
shortcut key
Removes a specified number of characters located anywhere in a string
Trim method
Removes a specified number of characters located anywhere in a string
Remove method
Removes a specified number of characters located anywhere in a string
Contains method
Removes a specified number of characters located anywhere in a string
IndexOf method
Removes a specified number of characters located anywhere in a string
PadLeft
Removes a specified number of characters located anywhere in a string
Like operator
Removes a specified number of characters located anywhere in a string
menu strip control
Removes a specified number of characters located anywhere in a string
menu title
Removes a specified number of characters located anywhere in a string
shortcut key
Aligns the characters in a string
Trim method
Aligns the characters in a string
Remove method
Aligns the characters in a string
Contains method
Aligns the characters in a string
IndexOf method
Aligns the characters in a string
PadLeft
Aligns the characters in a string
Like operator
Aligns the characters in a string
menu strip control
Aligns the characters in a string
menu title
Aligns the characters in a string
shortcut key
Appears to the right of the menu item and allow the user to select the item without opening the menu
Trim method
Appears to the right of the menu item and allow the user to select the item without opening the menu
Remove method
Appears to the right of the menu item and allow the user to select the item without opening the menu
Contains method
Appears to the right of the menu item and allow the user to select the item without opening the menu
IndexOf method
Appears to the right of the menu item and allow the user to select the item without opening the menu
PadLeft
Appears to the right of the menu item and allow the user to select the item without opening the menu
Like operator
Appears to the right of the menu item and allow the user to select the item without opening the menu
menu strip control
Appears to the right of the menu item and allow the user to select the item without opening the menu
menu title
Appears to the right of the menu item and allow the user to select the item without opening the menu
shortcut key
Used to include one or more menus on a Windows form
Trim method
Used to include one or more menus on a Windows form
Remove method
Used to include one or more menus on a Windows form
Contains method
Used to include one or more menus on a Windows form
IndexOf method
Used to include one or more menus on a Windows form
PadLeft
Used to include one or more menus on a Windows form
Like operator
Used to include one or more menus on a Windows form
menu strip control
Used to include one or more menus on a Windows form
menu title
Used to include one or more menus on a Windows form
shortcut key
Returns the Boolean value True when the substring is contained anywhere in the string
Trim method
Returns the Boolean value True when the substring is contained anywhere in the string
Remove method
Returns the Boolean value True when the substring is contained anywhere in the string
Contains method
Returns the Boolean value True when the substring is contained anywhere in the string
IndexOf method
Returns the Boolean value True when the substring is contained anywhere in the string
PadLeft
Returns the Boolean value True when the substring is contained anywhere in the string
Like operator
Returns the Boolean value True when the substring is contained anywhere in the string
menu strip control
Returns the Boolean value True when the substring is contained anywhere in the string
menu title
Returns the Boolean value True when the substring is contained anywhere in the string
shortcut key
Removes any space characters from both the beginning and end of a string
Trim method
Removes any space characters from both the beginning and end of a string
Remove method
Removes any space characters from both the beginning and end of a string
Contains method
Removes any space characters from both the beginning and end of a string
IndexOf method
Removes any space characters from both the beginning and end of a string
PadLeft
Removes any space characters from both the beginning and end of a string
Like operator
Removes any space characters from both the beginning and end of a string
menu strip control
Removes any space characters from both the beginning and end of a string
menu title
Removes any space characters from both the beginning and end of a string
shortcut key
Displays a list of options when clicked
Trim method
Displays a list of options when clicked
Remove method
Displays a list of options when clicked
Contains method
Displays a list of options when clicked
IndexOf method
Displays a list of options when clicked
PadLeft
Displays a list of options when clicked
Like operator
Displays a list of options when clicked
menu strip control
Displays a list of options when clicked
menu title
Displays a list of options when clicked
shortcut key
Allows you to use pattern-matching characters to determine whether one string is equal to another string
Trim method
Allows you to use pattern-matching characters to determine whether one string is equal to another string
Remove method
Allows you to use pattern-matching characters to determine whether one string is equal to another string
Contains method
Allows you to use pattern-matching characters to determine whether one string is equal to another string
IndexOf method
Allows you to use pattern-matching characters to determine whether one string is equal to another string
PadLeft
Allows you to use pattern-matching characters to determine whether one string is equal to another string
Like operator
Allows you to use pattern-matching characters to determine whether one string is equal to another string
menu strip control
Allows you to use pattern-matching characters to determine whether one string is equal to another string
menu title
Allows you to use pattern-matching characters to determine whether one string is equal to another string
shortcut key
سؤال
What is the Windows standard for the capitalization of menu item captions?
فتح الحزمة
قم بالتسجيل لفتح البطاقات في هذه المجموعة!
Unlock Deck
Unlock Deck
1/42
auto play flashcards
العب
simple tutorial
ملء الشاشة (f)
exit full mode
Deck 11: String Manipulation and Menus
1
Visual Basic provides the ____ method for accessing any number of characters in a string.

A) Mid
B) Left
C) Substring
D) Right
C
2
____ is the syntax for inserting characters into a string.

A) string.Substring(startIndex[,numCharsToAccess])
B) string.Insert(startIndex, value)
C) string.Remove(startIndex[, numCharsToRemove])
D) string.Find(startIndex[, numCharsToFind])
B
3
Each menu element is considered a(n) ____.

A) interface
B) class
C) system
D) object
D
4
The Contains method always begins the search with ____.

A) the last character in the string
B) the middle character in the string
C) both ends of the string
D) the first character in the string
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
5
When an expression contains more than one method, the computer processes the methods from right to left.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
6
The ____ character represents zero or more characters.

A) ?
B) *
C) #
D) .
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
7
The Substring method accesses one or more characters contained in a string.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
8
A ____ character forces a literal constant to assume a data type other than the one its form indicates.

A) static type
B) conditioned type
C) literal type
D) reconditioned type
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
9
To insert the value at the beginning of a string, you use a startIndex of 1.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
10
To represent a single digit in a pattern, you use the ____ character.

A) *
B) ?
C) .
D) #
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
11
When processing the PadLeft and PadRight methods, the computer first makes a temporary copy of the string in memory; it then pads the copy only.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
12
To specify a different starting location in the IndexOf method, you use the optional ____ argument.

A) startIndex
B) firstIndex
C) Index
D) locateIndex
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
13
The ____ character in a pattern represents one character only.

A) ?
B) *
C) #
D) .
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
14
The ____ argument in the syntax of the PadRight method is an integer that represents the total number of characters you want the string's copy to contain.

A) firstChars
B) totalChars
C) countChars
D) replaceChars
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
15
If you need to determine whether a string contains a specific sequence of characters, you can use the ____ method.

A) Find
B) IndexOf
C) Locate
D) Regex
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
16
When processing the Insert method, the computer first makes a temporary copy of the string in memory.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
17
____ is the syntax to access characters in a string.

A) string.Find(startIndex[, numCharsToFind])
B) string.Substring(startIndex[,numCharsToAccess])
C) string.Insert(startIndex, value)
D) string.Remove(startIndex[, numCharsToRemove])
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
18
The ____ method pads the string on the right, which means it inserts the padded characters at the end of the string.

A) PadLeft
B) Pad
C) TrimRight
D) PadRight
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
19
____ is the syntax for removing the characters from a string.

A) string.Find(startIndex[, numCharsToFind])
B) string.Insert(startIndex, value)
C) string.Remove(startIndex[, numCharsToRemove])
D) string.Substring(startIndex[,numCharsToAccess])
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
20
The most commonly used properties for a menu element are the ____ properties.

A) Name and Text
B) Name and Action
C) Action and Text
D) Label and Text
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
21
In Windows applications that have an Edit menu, ____ is used to select the Paste command when the Edit menu is closed.

A) Ctrl+X
B) Ctrl+V
C) Ctrl+C
D) Ctrl+P
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
22
Discuss why applications might need to work with strings.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
23
The number of characters contained in a string is stored as an integer in the string's ____________________ property.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
24
The access key allows the user to open the menu by pressing the ____ key in combination with the access key.

A) Ctrl
B) Shift
C) Alt
D) Ctrl+Alt
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
25
Describe menu title captions.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
26
If an item on a menu or submenu is a command, you enter the appropriate instructions in the item's ____________________ event procedure.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
27
In Windows applications that have an Edit menu, ____ is used to select the Cut command when the Edit menu is closed.

A) Ctrl+Y
B) Ctrl+C
C) Ctrl+V
D) Ctrl+X
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
28
The ____________________ method pads the string on the left, which means it inserts the padded characters at the beginning of the string.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
29
What happens when you omit the numCharsToAccess argument from the Substring method?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
30
You specify a menu item's shortcut keys in the ShortcutKeys property in the ____ window.

A) Properties
B) System
C) Menu
D) Interface
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
31
Explain the difference between the Trim method and the Remove method.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
32
Explain how the Contains method works.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
33
Explain what the Like operator does.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
34
Visual Basic's ____________________ method allows you to insert characters anywhere in a string.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
35
A menu item's ____ key can be used only when the menu is open.

A) control
B) menu
C) access
D) shortcut
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
36
What does the Substring method return?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
37
Commonly used menu items should be assigned ____.

A) shortcut keys
B) header keys
C) global keys
D) control keys
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
38
Discuss the purpose of the access key.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
39
A menu item's ____________________ keys can be used only when the menu is closed.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
40
Explain how the PadLeft and PadRight methods work.
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
41
Match between columns
Returns a -1 if the subString is not contained in the string
Trim method
Returns a -1 if the subString is not contained in the string
Remove method
Returns a -1 if the subString is not contained in the string
Contains method
Returns a -1 if the subString is not contained in the string
IndexOf method
Returns a -1 if the subString is not contained in the string
PadLeft
Returns a -1 if the subString is not contained in the string
Like operator
Returns a -1 if the subString is not contained in the string
menu strip control
Returns a -1 if the subString is not contained in the string
menu title
Returns a -1 if the subString is not contained in the string
shortcut key
Removes a specified number of characters located anywhere in a string
Trim method
Removes a specified number of characters located anywhere in a string
Remove method
Removes a specified number of characters located anywhere in a string
Contains method
Removes a specified number of characters located anywhere in a string
IndexOf method
Removes a specified number of characters located anywhere in a string
PadLeft
Removes a specified number of characters located anywhere in a string
Like operator
Removes a specified number of characters located anywhere in a string
menu strip control
Removes a specified number of characters located anywhere in a string
menu title
Removes a specified number of characters located anywhere in a string
shortcut key
Aligns the characters in a string
Trim method
Aligns the characters in a string
Remove method
Aligns the characters in a string
Contains method
Aligns the characters in a string
IndexOf method
Aligns the characters in a string
PadLeft
Aligns the characters in a string
Like operator
Aligns the characters in a string
menu strip control
Aligns the characters in a string
menu title
Aligns the characters in a string
shortcut key
Appears to the right of the menu item and allow the user to select the item without opening the menu
Trim method
Appears to the right of the menu item and allow the user to select the item without opening the menu
Remove method
Appears to the right of the menu item and allow the user to select the item without opening the menu
Contains method
Appears to the right of the menu item and allow the user to select the item without opening the menu
IndexOf method
Appears to the right of the menu item and allow the user to select the item without opening the menu
PadLeft
Appears to the right of the menu item and allow the user to select the item without opening the menu
Like operator
Appears to the right of the menu item and allow the user to select the item without opening the menu
menu strip control
Appears to the right of the menu item and allow the user to select the item without opening the menu
menu title
Appears to the right of the menu item and allow the user to select the item without opening the menu
shortcut key
Used to include one or more menus on a Windows form
Trim method
Used to include one or more menus on a Windows form
Remove method
Used to include one or more menus on a Windows form
Contains method
Used to include one or more menus on a Windows form
IndexOf method
Used to include one or more menus on a Windows form
PadLeft
Used to include one or more menus on a Windows form
Like operator
Used to include one or more menus on a Windows form
menu strip control
Used to include one or more menus on a Windows form
menu title
Used to include one or more menus on a Windows form
shortcut key
Returns the Boolean value True when the substring is contained anywhere in the string
Trim method
Returns the Boolean value True when the substring is contained anywhere in the string
Remove method
Returns the Boolean value True when the substring is contained anywhere in the string
Contains method
Returns the Boolean value True when the substring is contained anywhere in the string
IndexOf method
Returns the Boolean value True when the substring is contained anywhere in the string
PadLeft
Returns the Boolean value True when the substring is contained anywhere in the string
Like operator
Returns the Boolean value True when the substring is contained anywhere in the string
menu strip control
Returns the Boolean value True when the substring is contained anywhere in the string
menu title
Returns the Boolean value True when the substring is contained anywhere in the string
shortcut key
Removes any space characters from both the beginning and end of a string
Trim method
Removes any space characters from both the beginning and end of a string
Remove method
Removes any space characters from both the beginning and end of a string
Contains method
Removes any space characters from both the beginning and end of a string
IndexOf method
Removes any space characters from both the beginning and end of a string
PadLeft
Removes any space characters from both the beginning and end of a string
Like operator
Removes any space characters from both the beginning and end of a string
menu strip control
Removes any space characters from both the beginning and end of a string
menu title
Removes any space characters from both the beginning and end of a string
shortcut key
Displays a list of options when clicked
Trim method
Displays a list of options when clicked
Remove method
Displays a list of options when clicked
Contains method
Displays a list of options when clicked
IndexOf method
Displays a list of options when clicked
PadLeft
Displays a list of options when clicked
Like operator
Displays a list of options when clicked
menu strip control
Displays a list of options when clicked
menu title
Displays a list of options when clicked
shortcut key
Allows you to use pattern-matching characters to determine whether one string is equal to another string
Trim method
Allows you to use pattern-matching characters to determine whether one string is equal to another string
Remove method
Allows you to use pattern-matching characters to determine whether one string is equal to another string
Contains method
Allows you to use pattern-matching characters to determine whether one string is equal to another string
IndexOf method
Allows you to use pattern-matching characters to determine whether one string is equal to another string
PadLeft
Allows you to use pattern-matching characters to determine whether one string is equal to another string
Like operator
Allows you to use pattern-matching characters to determine whether one string is equal to another string
menu strip control
Allows you to use pattern-matching characters to determine whether one string is equal to another string
menu title
Allows you to use pattern-matching characters to determine whether one string is equal to another string
shortcut key
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
42
What is the Windows standard for the capitalization of menu item captions?
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.
فتح الحزمة
k this deck
locked card icon
فتح الحزمة
افتح القفل للوصول البطاقات البالغ عددها 42 في هذه المجموعة.