Skip to main content

Posts

Join Data Engineering Course at Shiva Concept Solution | best Data Engineering training Institute in Indore

 Join Data Engineering Course at Shiva Concept Solution: Shiva Concept Solution Provide Complete Data Engineering course including  Python  Advance Python SQL, Advance SQL PYSPARK, AZURE or AWS. Data engineering is in high demand due to the rapid growth of data and the complexity of modern data environments. Companies need data engineers to manage, process, and integrate vast amounts of data from various sources. This role is crucial for enabling data-driven decision-making, optimizing system performance, and ensuring data quality and governance. With the rise of big data technologies, machine learning, and regulatory requirements, skilled data engineers are essential for building and maintaining the infrastructure that supports these needs. Ready to dive into the world of data and boost your career? Join our Data Engineering Course at Shiva Concept Solution ! 📊 What You'll Learn: Master the latest big data technologies and tools Build and manage scalable data pipelines...

Kotlin Complete Tutorial by Shiva sir, Android Kotlin step by step?

What is Kotlin?  Kotlin is a modern, statically-typed programming language developed by JetBrains, known for its conciseness, safety, and interoperability with Java. It's designed to be fully compatible with Java and runs on the Java Virtual Machine (JVM), making it a popular choice for Android app development, server-side applications, and more. Kotlin offers many features that improve productivity and code safety, such as null safety, extension functions, and a more expressive syntax. Step-by-Step Guide to Install Kotlin on Windows Step 1: Install Java Development Kit (JDK) Kotlin runs on the JVM, so you'll need to install the Java Development Kit (JDK) first. Download JDK: Visit the Oracle JDK download page or AdoptOpenJDK (open-source version). Choose the Windows version and download the installer. Install JDK: Run the downloaded installer. Follow the on-screen instructions and complete the installation. Set JAVA_HOME Environment Variable: Open Control Panel > System and...

Database connectivity in ASP.net core , .NET Core DB Connection, step by step

Database connectivity in ASP.net core , .NET Core DB Connection, step by step  Step1st: Create ASP.NET Core Project Step2nd: Manage Nuget Package Manager Console  Microsoft.EntityFrameworkCore 7.0 Microsoft.EntityFrameworkCore.SqlServer 7.0 Microsoft.EntityFrameworkCore.Tools 7.0 Step3rd: Create Model Class namespace WelcomeProject.Models {     public class Product     {         public int Id { get; set; }         public string Name { get; set; }         public decimal Price { get; set; }     } } Create AppDbContext Class also under model using Microsoft.EntityFrameworkCore; using System.Collections.Generic; namespace WelcomeProject.Models {     public class AppDbContext : DbContext     {         public DbSet<Product> Products { get; set; }         private readonly IConfiguration _configuration;         ...

Test your Python logic! Python most important question List

 Python most asked question during interview: These are question list of python if you solve then comment this code on below comment section. 1) Write a program to count total even elements and odd elements in list? 2) Write a program to write five differences between list and tuple? 3) Write a program to write 10 predefine function name of dictionary and explain shortly with example. 4) Write a program to find lowest age in four person age? 5)Write a program to contain score of Australia,india,bangladesh,southafrica and afganistan and display max score team. 6)Write a program to display this pattern *******  ****** *****   ****   ***    **     * 7)Write a program to find most repeated word in paragraph? 8) Write a program to display total combination of any word. naman amann manan annma 9)Write a program to find only consecutive word  in paragraph? 10)Write a program to find first max and second max element in matrix for each row? 11)Wr...

Most Important Flutter Widgets Code snippet | Learn Flutter by Code

 Create Complete quiz app using flutter app with timer : import 'dart:async'; import 'package:flutter/material.dart'; class quizApp extends StatelessWidget {   @override   Widget build(BuildContext context) {     return MaterialApp(       home: quizAppScreen(),     );   } } class quizAppScreen extends StatefulWidget {   @override   quizAppScreenState createState() => quizAppScreenState(); } class quizAppScreenState extends State<quizAppScreen> {   String? _selectedValue1;   String? _selectedValue2;   String? _selectedValue3;   int _secondsRemaining = 20;   late Timer _timer;   @override   void initState() {     super.initState();     startTimer();   }   void startTimer() {     _timer = Timer.periodic(Duration(seconds: 1), (timer) {       setState(() {         if (_secondsRemaining > 0) {     ...

High level Flutter Code snippet | Learn Flutter with real-time App

 Create EVM Pad Application: import 'package:flutter/material.dart'; void main() {   runApp(EVMPadApp()); } class EVMPadApp extends StatelessWidget {   @override   Widget build(BuildContext context) {     return MaterialApp(       title: 'EVM Pad',       home: EVMHomePage(),     );   } } class EVMHomePage extends StatefulWidget {   @override   _EVMHomePageState createState() => _EVMHomePageState(); } class _EVMHomePageState extends State<EVMHomePage> {   final List<Candidate> candidates = [     Candidate('Indian National Congress', 'assets/images/congress.png'),     Candidate('Bjp', 'assets/images/bjp.png'),     Candidate('Aap', 'assets/images/aap.png'),     Candidate('Bsp', 'assets/images/bsp.png'),   ];   void showResultsDialog(BuildContext context) {     int totalVotes =     candidates.fold(0, (sum, candidate) =...

Advance Flutter Code Snippet | Learn Flutter by Code

 Dropdownlist Example in Flutter: import 'package:flutter/foundation.dart'; import 'package:flutter/material.dart'; class DropdownDemo extends StatefulWidget {   const DropdownDemo({Key? key}) : super(key: key);   @override   State<DropdownDemo> createState() => _DropdownDemoState(); } class _DropdownDemoState extends State<DropdownDemo> {   String dropdownValue = 'Area of circle';   @override   Widget build(BuildContext context) {     return Scaffold(       appBar: AppBar(title: const Text("DDDD")),       body: Center(         child: Column(           children: [             SizedBox(               height: 50,             ),             // Step 2.             DropdownButton<String>(   ...