Skip to main content

Posts

Showing posts from May, 2023

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.

Kya Mojo programming भाषा python को पूरे तरीके से खत्म कर देगा ?

 Kya Mojo programming भाषा जायदा fast है python से? मोजो के जो writer है उनका बोलना  है कि इसका कोई नई प्रोग्रामिंग भाषा बनाने का कोई motive नहीं था. “But as we were building our platform with the intent to unify the world’s ML/AI infrastructure, we realised that programming across the entire too complicated,”. This means building a programming language with powerful compile-time metaprogramming, integration of adaptive compilation techniques, caching throughout the compilation flow, and other things that are not supported by existing languages. That is the direction that Mojo is heading towards. The team claims it is 35000X faster than Python. AI infrastructure company, Modular AI, recently unveiled Mojo, a new programming language that combines the syntax of Python along with the portability and speed of C, making it ideal for both research and production.  Mojo is a programming language developed by OpenAI that focuses on providing fast and efficient execution for machine learning a

How to calculate CBSE marks in CGPA

 CBSE (Central Board of Secondary Education) uses the Cumulative Grade Point Average (CGPA) system to calculate marks for classes 9 to 10 and grades for classes 11 to 12. Here's how the CGPA is calculated: For each subject, your marks are converted into grades based on a predefined grading scale. The grading scale used by CBSE is as follows: A1 (91-100 marks) - 10 CGPA A2 (81-90 marks) - 9 CGPA B1 (71-80 marks) - 8 CGPA B2 (61-70 marks) - 7 CGPA C1 (51-60 marks) - 6 CGPA C2 (41-50 marks) - 5 CGPA D (33-40 marks) - 4 CGPA E1 (21-32 marks) - 3 CGPA E2 (0-20 marks) - 2 CGPA Once the grades are assigned for each subject, the CGPA is calculated by taking the average of all the individual subject grades. CGPA is a 9-point scale, so the average grade obtained in step 2 is the CGPA. For example, if the average grade is 7, then the CGPA is 7. It is important to note that CBSE also provides a corresponding percentage range for each CGPA value, which can be used to convert CGPA into percentag

Software development and agile life cycle process

Software development is the process of designing, coding, testing, and maintaining software applications or systems. It involves a series of steps and methodologies to ensure the successful delivery of a software product. Agile is one of the popular approaches to software development that emphasizes flexibility, collaboration, and iterative development. Here's a breakdown of software development and agile methodologies: Software Development Process: a. Requirements Gathering: Gathering and documenting the needs and expectations of the software application or system from stakeholders. b. Design: Creating a high-level design and architecture for the software based on the requirements. c. Implementation/Coding: Writing the actual code of the software using programming languages, frameworks, and libraries. d. Testing: Conducting various testing activities to identify and fix bugs or issues in the software. e. Deployment: Releasing the software for end-users to access and use. f. Mainte