HDMI VS Display Port

HDMI vs Display PORT

What is HDMI HDMI (High-Definition Multimedia Interface) is a digital interface that transfers video and audio over a single cable. Some important points about HDMI HDMI was developed in 2002, Since its development, it has been widely adopted across a range of devices. It was developed by  Hitachi, Panasonic, Philips, Silicon Image, Sony, Thomson, and Toshiba. HDMI technology is used with …

HDMI vs Display PORT Read More »

top command in Linux

top -h top -n 5 top -u username Press q for exit   top -b Press CTRL+C for exit top -s Press q for exit  

samsung galaxy book 3 ultra

Samsung Galaxy Book 3 Ultra Specifications, Features, Reviews, Price (Rumuored)

You are viewing details about Samsung Galaxy Book 3 Ultra, which is not released yet. We will update these details after the official announcement. On February 1 2023, Samsung may unveil Samsung Galaxy Book 3 Ultra. Highlights The laptop will have AKG-tuned Dolby Atmos quad-speaker system. This laptop will run on Windows 11. Display & …

Samsung Galaxy Book 3 Ultra Specifications, Features, Reviews, Price (Rumuored) Read More »

C Program to Convert Decimal to Binary

C Program to Convert Decimal to Binary

#include <stdio.h> #include <math.h> long long convertdecimaltobinary(int); int main() {     int decimal, binary;     printf(“Enter a decimal number\n “);     scanf(“%d”, &decimal);     binary = convertdecimaltobinary(decimal);     printf(“%d in decimal =  %lld in binary”, decimal, binary);     return 0; } long long convertdecimaltobinary(int decimal) {     long …

C Program to Convert Decimal to Binary Read More »