Loyiha darajasi


Beshinchi avlod mobil tarmoqlari arxitekturasi


Download 16.6 Kb.
bet4/4
Sana15.06.2023
Hajmi16.6 Kb.
#1481487
1   2   3   4
Bog'liq
firvads eng zori35

Beshinchi avlod mobil tarmoqlari arxitekturasi
Beshincha avlod mobil aloqa tarmoqlarining imkoniyatlari

  • Oldingi mobil aloqa avlodalaridan farqli 5G tarmoqlari 1G-4G bo’lgan barcha turdagi xizmatlarni ajoyib sifat darajasida va uzatish tezligida qo’llab quvvatlaydi. Ko’plab xizmatlarni integrasiya qiladi hamda mavjud fizik ob’ektlarning ko’plari 5G tarmoqlari dasturish ko’risnishda ishlab chiqilgan. 5G tarmoqlari orqali barcha simsiz: sputnik aloqa, Wi-Fi, Wi-Max va simli aloqa xizmatlaridan foylanish mumkin. 5G tarmoqlari uchun chastota diapazoni ikki to'plamda orqali belgilanadi (1) chastota diapazoni LTE chastota diapazonini o'z ichiga olgan 450MHs – 6 GHz oralig’ida va (2) chastota diapazoni

jihozlarning deyarli hammasi - kompyuterlardan tortib to uyali aloqa telefonlarigacha barchasi yarimoʻtkazgichli texnologiyaga asoslangan. Eng keng qoʻllaniladigan yarimoʻtkazgich modda kremniy boʻlib, boshqa moddalar ham keng qoʻllaniladi.Yarimoʻtkazgichlar — elektr tokini yaxshi oʻtkazuvchi moddalar (oʻtkazgichlar, asosan, metallar) va elektr tokini amalda oʻtkazmaydigan moddalar (dielektriklar) orasidagi oraliq vaziyatni egallaydigan moddalar. Mendeleyev davriy sistemasida II, III, IV, V jihozlarning deyarli hammasi - kompyuterlardan tortib to uyali aloqa telefonlarigacha barchasi yarimoʻtkazgichli texnologiyaga asoslangan. Eng keng qoʻllaniladigan yarimoʻtkazgich modda kremniy boʻlib, boshqa moddalar ham keng qoʻllaniladi.Yarimoʻtkazgichlar — elektr tokini yaxshi oʻtkazuvchi moddalar (oʻtkazgichlar, asosan, metallar) va elektr tokini amalda oʻtkazmaydigan moddalar (dielektriklar) orasidagi oraliq vaziyatni egallaydigan moddalar. Mendeleyev davriy sistemasida II, III, IV, V jihozlarning deyarli hammasi - kompyuterlardan tortib to uyali aloqa telefonlarigacha barchasi yarimoʻtkazgichli texnologiyaga asoslangan. Eng keng qoʻllaniladigan yarimoʻtkazgich modda kremniy boʻlib, boshqa moddalar ham keng qoʻllaniladi.Yarimoʻtkazgichlar — elektr tokini yaxshi oʻtkazuvchi moddalar (oʻtkazgichlar, asosan, metallar) va elektr tokini amalda oʻtkazmaydigan moddalar (dielektriklar) orasidagi oraliq vaziyatni egallaydigan moddalar. Mendeleyev davriy sistemasida II, III, IV, V jihozlarning deyarli hammasi - kompyuterlardan tortib to uyali aloqa telefonlarigacha barchasi yarimoʻtkazgichli texnologiyaga asoslangan. Eng keng qoʻllaniladigan yarimoʻtkazgich modda kremniy boʻlib, boshqa moddalar ham keng qoʻllaniladi.Yarimoʻtkazgichlar — elektr tokini yaxshi oʻtkazuvchi moddalar (oʻtkazgichlar, asosan, metallar) va elektr tokini amalda oʻtkazmaydigan moddalar (dielektriklar) orasidagi oraliq vaziyatni egallaydigan moddalar. Mendeleyev davriy sistemasida II, III, IV, V Similarity with 1D Arrays • Each element in the 2D array must by the same type, • either a primitive type or object type. • Subscripted variables can be use just like a variable: rating[0][3] = 10; • Array indices must be of type int and can be a literal, variable, or expression. rating[3][j] = j; • If an array element does not exists, the Java runtime system will give you an ArrayIndexOutOfBoundsException 4 Summer 2010 15-110 (Reid-Miller) Declaring 2D Arrays • Declare a local variable rating that references a 2D array of int: • Declare a field family that reference a 2D array of GiftCards: • Create a 2D array with 3 rows and 4 columns and assign the reference to the new array to rating: • Shortcut to declare and create a 2D array: int[][] rating; private GiftCard[][] family; rating = new int[3][4]; int[][] rating = new int[3][4]; 5 Summer 2010 15-110 (Reid-Miller) Example 1 • Find the average rating by the reviewer in row 2. int sum = 0; for (int col = 0; col <= 3; col++) { sum += rating[2][col]; } double average = (double) sum / 4; 2 6 9 3 7 1 7 Similarity with 1D Arrays • Each element in the 2D array must by the same type, • either a primitive type or object type. • Subscripted variables can be use just like a variable: rating[0][3] = 10; • Array indices must be of type int and can be a literal, variable, or expression. rating[3][j] = j; • If an array element does not exists, the Java runtime system will give you an ArrayIndexOutOfBoundsException 4 Summer 2010 15-110 (Reid-Miller) Declaring 2D Arrays • Declare a local variable rating that references a 2D array of int: • Declare a field family that reference a 2D array of GiftCards: • Create a 2D array with 3 rows and 4 columns and assign the reference to the new array to rating: • Shortcut to declare and create a 2D array: int[][] rating; private GiftCard[][] family; rating = new int[3][4]; int[][] rating = new int[3][4]; 5 Summer 2010 15-110 (Reid-Miller) Example 1 • Find the average rating by the reviewer in row 2. int sum = 0; for (int col = 0; col <= 3; col++) { sum += rating[2][col]; } double average = (double) sum / 4; 2 6 9 3 7 1 7 Similarity with 1D Arrays • Each element in the 2D array must by the same type, • either a primitive type or object type. • Subscripted variables can be use just like a variable: rating[0][3] = 10; • Array indices must be of type int and can be a literal, variable, or expression. rating[3][j] = j; • If an array element does not exists, the Java runtime system will give you an ArrayIndexOutOfBoundsException 4 Summer 2010 15-110 (Reid-Miller) Declaring 2D Arrays • Declare a local variable rating that references a 2D array of int: • Declare a field family that reference a 2D array of GiftCards: • Create a 2D array with 3 rows and 4 columns and assign the reference to the new array to rating: • Shortcut to declare and create a 2D array: int[][] rating; private GiftCard[][] family; rating = new int[3][4]; int[][] rating = new int[3][4]; 5 Summer 2010 15-110 (Reid-Miller) Example 1 • Find the average rating by the reviewer in row 2. int sum = 0; for (int col = 0; col <= 3; col++) { sum += rating[2][col]; } double average = (double) sum / 4; 2 6 9 3 7 1 7 Similarity with 1D Arrays • Each element in the 2D array must by the same type, • either a primitive type or object type. • Subscripted variables can be use just like a variable: rating[0][3] = 10; • Array indices must be of type int and can be a literal, variable, or expression. rating[3][j] = j; • If an array element does not exists, the Java runtime system will give you an ArrayIndexOutOfBoundsException 4 Summer 2010 15-110 (Reid-Miller) Declaring 2D Arrays • Declare a local variable rating that references a 2D array of int: • Declare a field family that reference a 2D array of GiftCards: • Create a 2D array with 3 rows and 4 columns and assign the reference to the new array to rating: • Shortcut to declare and create a 2D array: int[][] rating; private GiftCard[][] family; rating = new int[3][4]; int[][] rating = new int[3][4]; 5 Summer 2010 15-110 (Reid-Miller) Example 1 • Find the average rating by the reviewer in row 2. int sum = 0; for (int col = 0; col <= 3; col++) { sum += rating[2][col]; } double average = (double) sum / 4; 2 6 9 3 7 1 7 Similarity with 1D Arrays • Each element in the 2D array must by the same type, • either a primitive type or object type. • Subscripted variables can be use just like a variable: rating[0][3] = 10; • Array indices must be of type int and can be a literal, variable, or expression. rating[3][j] = j; • If an array element does not exists, the Java runtime system will give you an ArrayIndexOutOfBoundsException 4 Summer 2010 15-110 (Reid-Miller) Declaring 2D Arrays • Declare a local variable rating that references a 2D array of int: • Declare a field family that reference a 2D array of GiftCards: • Create a 2D array with 3 rows and 4 columns and assign the reference to the new array to rating: • Shortcut to declare and create a 2D array: int[][] rating; private GiftCard[][] family; rating = new int[3][4]; int[][] rating = new int[3][4]; 5 Summer 2010 15-110 (Reid-Miller) Example 1 • Find the average rating by the reviewer in row 2. int sum = 0; for (int col = 0; col <= 3; col++) { sum += rating[2][col]; } double average = (double) sum / 4; 2 6 9 3 7 1 7 Similarity with 1D Arrays • Each element in the 2D array must by the same type, • either a primitive type or object type. • Subscripted variables can be use just like a variable: rating[0][3] = 10; • Array indices must be of type int and can be a literal, variable, or expression. rating[3][j] = j; • If an array element does not exists, the Java runtime system will give you an ArrayIndexOutOfBoundsException 4 Summer 2010 15-110 (Reid-Miller) Declaring 2D Arrays • Declare a local variable rating that references a 2D array of int: • Declare a field family that reference a 2D array of GiftCards: • Create a 2D array with 3 rows and 4 columns and assign the reference to the new array to rating: • Shortcut to declare and create a 2D array: int[][] rating; private GiftCard[][] family; rating = new int[3][4]; int[][] rating = new int[3][4]; 5 Summer 2010 15-110 (Reid-Miller) Example 1 • Find the average rating by the reviewer in row 2. int sum = 0; for (int col = 0; col <= 3; col++) { sum += rating[2][col]; } double average = (double) sum / 4; 2 6 9 3 7 1 7 Similarity with 1D Arrays • Each element in the 2D array must by the same type, • either a primitive type or object type. • Subscripted variables can be use just like a variable: rating[0][3] = 10; • Array indices must be of type int and can be a literal, variable, or expression. rating[3][j] = j; • If an array element does not exists, the Java runtime system will give you an ArrayIndexOutOfBoundsException 4 Summer 2010 15-110 (Reid-Miller) Declaring 2D Arrays • Declare a local variable rating that references a 2D array of int: • Declare a field family that reference a 2D array of GiftCards: • Create a 2D array with 3 rows and 4 columns and assign the reference to the new array to rating: • Shortcut to declare and create a 2D array: int[][] rating; private GiftCard[][] family; rating = new int[3][4]; int[][] rating = new int[3][4]; 5 Summer 2010 15-110 (Reid-Miller) Example 1 • Find the average rating by the reviewer in row 2. int sum = 0; for (int col = 0; col <= 3; col++) { sum += rating[2][col]; } double average = (double) sum / 4; 2 6 9 3 7 1 7
Download 16.6 Kb.

Do'stlaringiz bilan baham:
1   2   3   4




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©fayllar.org 2024
ma'muriyatiga murojaat qiling