Posts

MediaTek Dimensity 9400

Image
Mediatek Dimensity 9400 Announced. MediaTek has announced latest flagship mobile chipset. It is built on Second generation 3nm (nanometer) N3E TSMC process. OPPO Find X8 Series will be the first globally available products to use MediaTek Dimensity 9400 chip. This chip brings a huge upgrade in performance compared to its predecessor  CPU (central processing unit) consists of 8 cores . 1 × 3.62GHz Cortex X925 3 × 3.30GHz Cortex X4 4 × 2.40GHz Cortex A720 GPU is Arm Immortalis G925 MC12 GPU which supports Raytracing. It features 12MB L3 cache + 10MB system cache •320MP Max camera support • 8K 60 fps (7690 x 4320) Max video •LPDDR5X RAM •UFS 4.0 storage + MCQ •MediaTek APU 890 (Generative AI, Agentic AI) • WiFi 7 •Bluetooth version 5.4 Display supports WQHD+ 180Hz max • MiraVision 1090 Dimensity 9400 improvements compared to Dimensity 9300:  Single-core CPU performance has improved by 35%  Multi-core CPU performance has improved by 28% It adopts a PC-level ARMv9 architecture...

python course 2

Control Statements: A control statement is a statement that determines the control flow of a set of instructions. It decides the sequence in which the instructions in a program are to be executed. A control statement can either comprise of one or more instructions. The three fundamental methods of control flow in a programming language are i) Sequential Control Statements ii) Selection Control Statements iii) Iterative Control Statements i) Sequential Control Statements: The code of Python program is executed sequentially from the first line of the program to its last line. That is, the second statement is executed after the first, the third statement is executed after the second, so on and so forth. This method is known as sequential Control flow and these statements called as sequential control statements. ii) Selection Control Statements: Some cases, execute only a set of statements called as selection control statements. This method is known as selection control flow. ...

python Course

Features of Python  ● High Level ● Object Oriented ● Scalable: ● Extensible ● Portable ● Easy to Learn ● Easy to Read ● Easy to Maintain ● Robust ● Effective as a Rapid Prototyping Tool ● A Memory Manager ● Interpreted and (Byte-) Compiled Program Output, the print Statement : ● In some languages, such as C, displaying to the screen is accomplished with a function, e.g., printf(), while with Python and most interpreted and scripting languages, it is a statement. ● Many shell script languages use an echo command for program output. print Statement : >>> myString = 'AIMLDS SECSIOT ' >>> print myString SECSIOT >>> myString 'AIMLDS SECSIOT ' The underscore (_) also has special meaning in the interactive interpreter: the last evaluated expression. So after the code above has executed, _ will contain the string: >>> _ SECSIOT ● Python's print statement, paired with the string format operator (%), supports string substitution, much like ...