Skip to main content

Posts

Showing posts from 2023

G20 Summit India 2023, G20 Member countries, List of Host Nations in India

  What is G 20 sum mit The  G20 New De lhi summit  is coming on 18th meeting of  G 20 . A   G 20   summit   scheduled to place in   International Exhibition-Convention Centre (IECC) , Pragati   Maidan, New Delhi  in 2023.  It will be the first time  G 20   summit   to be happening in India as well as in South Asia . It is host country is India and  G 20   summit  date: - 9–10 September 2023 Purpose of  G 20   summit G 20  India six agenda for the  G 20  in 2023:- Green Development, Climate Finance &  Life Accelerated, Inclusive & Resilient Growth Accelerating progress on SDGs Technological Transformation & Digital Public Infrastructure Multilateral Institutions for the 21st century Women-led development

How to start career in IT company in India

  H ow to start career in IT company in India 2023 Analyse your career on Click here Naukri.com

BGMI coming soon Unban official news

  BGMI game unban होने जा रहा है इंडिया में इससे related new खुद BGMI अपने game notification में बताया है. Sean Hyunil Sohn, CEO, KRAFTON, Inc. India, says “We are highly grateful to the Indian authorities for allowing us to resume operations of BATTLEGROUNDS MOBILE INDIA (BGMI). We would like to extend our gratitude to our Indian gaming community for their support and patience over the past few months. We are excited to announce that BATTLEGROUNDS MOBILE INDIA will be available for download soon and we cannot wait to welcome you back to our platform. We believe in the power of gaming to bring people together and create unforgettable experiences. We are committed to delivering exceptional products and services to our users in India and beyond, and we look forward to continuing our journey with you.”

Modular AI Mojo programming language 2023

M o j o   a   n e w   p r o g r a m m i n g   l a n g u a g e  for all AI developers Mojo combines the usability of Python with the performance of C, unlocking unparalleled programmability of AI hardware and extensibility of AI models.

Latest .NET interview questions with explanations

  .NET interview questions with explanations What is .NET Framework?  The .NET Framework is a software development framework developed by Microsoft.  It provides a programming model, libraries, and runtime for building and executing applications on Windows-based systems.  It supports multiple programming languages like C#, VB.NET, and F#, and  allows developers to build a wide range of applications, including  desktop applications, web applications, and mobile applications. What is the difference between .NET Framework and .NET Core?  .NET Framework and .NET Core are two different implementations of the .NET platform.  .NET Framework is the traditional full-featured framework that runs on Windows only,  while .NET Core is a cross-platform, open-source framework that runs on Windows, macOS, and Linux.  .NET Core is also more modular and lightweight compared to the .NET Framework. What is C#?  C# (pronounced C sharp) is a programming language developed by Microsoft.  It is a strongly-typ

C# programming भाषा में iOS iPhone का IP Address कैसे निकाले

  you can use the System.Net.Dns class to perform a reverse DNS lookup on the hostname "iphone-wi.local" or "iphone-cell.local" using the GetHostAddresses method. This will return an array of IP Address objects, and you can use the Address property of the IP Address object to get the IP address as a string. Write this code on your class file : using  System;  using  System.Net;  IPAddress[] addresses = Dns. GetHostAddresses ( "iphone-wi.local" );  foreach (IPAddress address in addresses)  {  Console . WriteLine ( "IP Address: "  + address. ToString ());  } This will only work if the iPhone is connected to the same Wi-Fi network as the computer running the C# code. You can also use the same approach for the cellular network by replacing "iphone-wi.local" with "iphone-cell.local" Keep in mind that this method may not work if the iPhone has a private IP address assigned by a cellular network or if the reverse DNS lookup fails.