IT Questions and Answers :)

Saturday, February 22, 2020

What was the first version of Windows to incorporate the Aero Glass theme?

What was the first version of Windows to incorporate the Aero Glass theme?

  • Windows Vista
  • Windows 8
  • Windows XP
  • Windows 7 

EXPLANATION

Windows Aero (a backronym for Authentic, Energetic, Reflective, and Open)[1] is a design language introduced in the Windows Vista operating system. The changes made in the Aero interface affected many elements of the Windows interface, including the incorporation of a new look, along with changes in interface guidelines reflecting appearance, layout, and the phrasing and tone of instructions and other text in applications.
Windows Aero was in force during the development of Windows Vista and Windows 7. In 2012, with the development of Windows 8 and Windows Server 2012, Microsoft moved on to a design language codenamed "Metro".

On Windows Vista and Windows 7 computers that meet certain hardware and software requirements, the Aero Glass theme is used by default, primarily incorporating various animation and transparency effects into the desktop using hardware acceleration and the Desktop Window Manager (DWM). In the "Personalize" section added to Control Panel of Windows Vista, users can customize the "glass" effects to either be opaque or transparent, and change the color it is tinted. Enabling Aero Glass also enables other new features, including an enhanced Alt-Tab menu and taskbar thumbnails with live previews of windows, and "Flip 3D", a window switching mechanism which cascades windows with a 3D effect.
Windows 7 features refinements in Aero Glass, including larger window buttons by default (minimize, maximize, close and query), revised taskbar thumbnails, the ability to manipulate windows by dragging them to the top or sides of the screen (to the side to make it fill half the screen, and to the top to maximize), the ability to hide all windows by hovering the Show Desktop button on the taskbar, and the ability to minimize all other windows by shaking one.
Use of DWM, and by extension the Aero Glass theme, requires a video card with 128 MB of graphics memory (or at least 64 MB of video RAM and 1 GB of system RAM for on-board graphics) supporting pixel shader 2.0, and with WDDM-compatible drivers. Aero Glass is also not available in Windows 7 Starter, only available to a limited extent on Windows Vista Home Basic, and is automatically disabled if a user is detected to be running a non-genuine copy of Windows.[16][17] Windows Server 2008 and Windows Server 2008 R2 also support Aero Glass as part of the "Desktop Experience" component, which is disabled by default.[18]


Share:

Friday, February 21, 2020

In Microsoft Azure, What server size/series uses credits and slows down if the credits run out?

In Microsoft Azure, What server size/series uses credits and slows down if the credits run out?

  • F series
  • D series
  • B series
  • A series 
In Microsoft Azure, What server size/series uses credits and slows down if the credits run out?

EXPLANATION

The B-series VMs are ideal for workloads that do not need the full performance of the CPU continuously, like web servers, proof of concepts, small databases and development build environments. These workloads typically have burstable performance requirements. The B-series provides you with the ability to purchase a VM size with baseline performance and the VM instance builds up credits when it is using less than its baseline.
When the VM has accumulated credit, the VM can burst above the baseline using up to 100% of the vCPU when your application requires higher CPU performance. If the CPU usage goes above 25% it will start to consume credit. WHen the credits run out the server will run at baseline rate.

SOURCE

https://docs.microsoft.com/en-us/azure/virtual-machines/windows/b-series-burstable
Share:

Which of the following lines of code is not in proper Syntax for its language?

Which of the following lines of code is not in proper Syntax for its language?

  • VISIBLE "HAI WORLD!!!1!"
  • console.log(Hello World!);
  • cout << "Hello World!" << endl;
  • TALK TO THE HAND "Hello, World!" 
Which of the following lines of code is not in proper Syntax for its language?

EXPLANATION

The correct answer is console.log(Hello World!); The code is written in JavaScript and it is missing the apostrophes around 'Hello World!' The working version of this code would be: console.log('Hello World!');
The rest of the lines of code are all completely legal for their own language. The first being C++ the code cout << "Hello World!" << endl; will print the words "Hello World!" to the console and then move to the next line.
The next answer is written in ArnoldC which is a language based off of quotes from movies that featured Arnold Schwarzenegger. YOU HAVE BEEN TERMINATED
The final, and my favorite is called LOLCODE, which is a c based language that features language used by the stereotypical lolcatz. If you would like to learn more about this language there is a website dedicated to its use. you can find it here at http://lolcode.org

PS. Yes I sourced wikipedia, it only let me source one website.

SOURCE

https://en.wikipedia.org/wiki/Esoteric_programming_language




Share:

Wednesday, February 19, 2020

What is the current (as of Feb. 2020) limit on physical memory for Windows 10 Pro 64-bit?

What is the current (as of Feb. 2020) limit on physical memory for Windows 10 Pro 64-bit?

  • 24 TB
  • 6 TB
  • 2 TB
  • 4 GB 
What is the current (as of Feb. 2020) limit on physical memory for Windows 10 Pro 64-bit?

 

EXPLANATION

Physical Memory Limits on the following editions of Windows 10:

  • Windows 10 Pro 32-bit: 4 GB
  • Windows 10 Pro 64-bit: 2 TB
  • Windows 10 Enterprise 64-bit: 6 TB
  • Windows Server 2016: 24 TB
See Microsoft's article on Memory Limits for Windows and Windows Server Releases
See this video on actually running Windows 10 Pro with 2 TB of physical memory.

SOURCE

https://docs.microsoft.com/en-us/windows/win32/memory/memory-limits-for-windows-releases
Share:

Tuesday, February 18, 2020

Which of the following features does TFTP provide?

Which of the following features does TFTP provide?

  • flow control
  • email notifications
  • compression
  • snmp traps 

 

EXPLANATION

While UDP is connection-less, it does not mean that TFTP is not, it means the transport layer protocol is connection-less.
In this case TFTP has it's own built in flow control, error detection, acknowledgements, and error recovery mechanisms

SOURCE

https://en.wikipedia.org/wiki/User_Datagram_Protocol
Share:

Popular Posts