Day - 10 (07_05_24) (3).zip
1.1 GB
DAY - 10 ALPHA 5.0 by apna college π DSA C++
Give 69 reaction for DAY 11 π
If you want complete course DM - @Myhurthearts
Give 69 reaction for DAY 11 π
If you want complete course DM - @Myhurthearts
β€3π3
Day - 11 (09_05_24).zip
1003.5 MB
DAY - 11 ALPHA 5.0 by apna college π DSA C++
Give 69 reaction for DAY 12 π
If you want any complete course DM - @Myhurthearts
Give 69 reaction for DAY 12 π
If you want any complete course DM - @Myhurthearts
π₯3π2π1π₯°1
Day - 12 (11_05_24).zip
638.1 MB
DAY - 12 ALPHA 5.0 by apna college π DSA C++
Give 69 reaction for DAY 13 π
Give 69 reaction for DAY 13 π
If you want any course like Apna college, love babbar, GFG, cohort , PW, harkirat Singh, namaste dev, Naresh IT, durga soft, ashok IT DM on π @Myhurthearts (Already 50+ member purchased course in just 1% of course price π)
β€4π₯1π1
π Java & Java with DSA Courses
π Web Development
π€ Data Science & Machine Learning
β¨
100+ More Demanding Courses to Explore!
Price starting at βΉ99 ..........
For more information and discount π - DM - @Myhurthearts
π CORE JAVA: NareshIT | Kishan Sirπ Python & Python with DSA
π₯ ADVANCED JAVA: Venkatesh Mansani
π₯οΈ SPRING BOOT: NareshIT | Kishan Sir
βοΈ JAVA DSA: DurgaSoft
β Sigma 5.0 Batch: Apna College
π CORE JAVA: Hari Krishna Sir | Naresh IT
π» JAVA FULL STACK COURSE
π Adul Bari Pythonπ΅ C++ & C++ with DSA
π₯οΈ PYTHON FULL STACK: KV Rao 2024
βοΈ PYTHON DSA: DurgaSoft
π KRISH NAIK Python Course
π‘ ALPHA DSA C++
π PW C++ DSA
π₯ Love Babbar Supreme Batch
π DSA Abdul Bari
---
π Web Development
π¨ PW Skills Web Developmentπ Database & SQL
β Delta 5.0 Batch: Apna College
π» DOT Batch: Love Babbar
π Namaste React
π Namaste JavaScript
βοΈ Namaste NodeJs
π Cohort 3.0: Web + DevOps
π§ Full Stack Web Development: Naresh IT & DurgaSoft
π Sanket Singh Full Stack Web Development
π NodeJS: Sanket Singh
π MERN Stack: Anuj Bhaiya
π₯οΈ PHP: Ram Sir
π¨ Frontend Development: IIT Madras
π Almabetter Full Stack Web Development Course
β‘ ASHOK IT Node JS
β UI Full Stack: Sudhakar Sharma | Naresh IT
π₯ Sherians Frontend Course
π MongoDB: Durga Sir
β Namaste SQL: Akshay Saini
π₯οΈ SQL: DurgaSoft & Naresh IT
π§ ORACLE
π€ Data Science & Machine Learning
π PW Skills Data Science Courseπ οΈ DevOps & Azure
π iNeuron Complete Data Science
π Data Science Master 2.0
π Data Science: IIT Madras
βοΈ MLOps Course: Naresh IT
β‘ Full DevOps Course: Tech Nanaπ Other Courses
β Hey DevOps 5.0
π§ Ashok IT DevOps
π MS Azure DevOps Course
π Azure Data Engineering: Gareth | Naresh IT
βοΈ Azure Cloud Mastery
π DevOps with AWS
βοΈ Google Cloud Platform: Mr. Saidul
π ASP.NET: Bangar Raju | Naresh IT
π GATE CSE Prep: PW 1500
π± App Development: Harnoor Singh
π± Android Using Kotlin: DurgaSoft
βοΈ Selenium: Naresh IT
π€ Applied AI Full Course
π» C#: Bangar Raju
π Unix/Linux: Imran 2024 | Naresh IT
π Power BI Course
βοΈ Salesforce: Adnan | Naresh IT
π‘οΈ Cyber Security: iNeuron
π Digital Marketing: Ramakanth | Naresh IT
π§ Git for DevOps: DurgaSoft
π Dhruv Rathee Management Course
β¨
100+ More Demanding Courses to Explore!
Price starting at βΉ99 ..........
For more information and discount π - DM - @Myhurthearts
What is the correct syntax to declare an integer variable in C?
Anonymous Quiz
78%
int number;
15%
int number()
7%
integer number;
Which of the following is the correct way to write a comment in C?
Anonymous Quiz
57%
// This is a comment
37%
/* This is a comment */
5%
# This is a comment
0%
-- This is a comment
What is the correct format specifier for printing a float in C?
Anonymous Quiz
9%
%d
83%
%f
5%
%c
3%
%s
Which operator is used to access the value at the address stored in a pointer?
Anonymous Quiz
43%
&
44%
*
8%
@
5%
#
Which keyword is used to define a constant in C?
Anonymous Quiz
14%
constant
9%
define
72%
const
5%
static
What are assignment operator ?
Anonymous Quiz
59%
=
9%
& , || , !=
21%
< , > <= , >=
12%
+ , - , * / , %
π3
Which of the following function declarations is invalid in C?
Anonymous Quiz
24%
int func();
19%
int func(int, char);
24%
int func(int a, b);
34%
int func(void);
Which of the following statements is true about static variables in C?
Anonymous Quiz
26%
static variables are automatically initialized to 1.
30%
static variables retain their value between function calls.
32%
static variables can only be declared globally.
12%
static variables cannot be used in recursive functions.
Which of the following is a correct statement about the pointer arithmetic in C?
Anonymous Quiz
31%
ptr++ increments the pointer ptr by the size of the pointer itself.
20%
ptr++ increments the pointer ptr by 1 byte regardless of the data type it points to.
34%
ptr++ increments the pointer ptr by the size of the data type it points to.
15%
ptr++ does not change the pointer ptr.
What is the purpose of the volatile keyword in C?
Anonymous Quiz
31%
To declare a variable whose value may be changed unexpectedly by other parts of the program.
37%
To allocate memory dynamically.
20%
To prevent the compiler from optimizing the code.
12%
To declare a constant value.
Who is the father of C language?
Anonymous Poll
6%
Steve Jobs
22%
James Gosling
69%
Dennis Ritchie
3%
Rasmus Lerdorf
Which of the following declaration is not supported by C language?
Anonymous Quiz
26%
a) String str;
13%
b) char *str;
33%
c) float str = 3e2;
28%
d) Both βString str;β and βfloat str = 3e2;β
In C Language, which of the following is not a valid variable name declaration?
Anonymous Quiz
33%
int __3a;
17%
int __A3;
12%
int __a3;
37%
None of the mentioned
In C language, why do variable names beginning with the underscore is not encouraged?
Anonymous Quiz
18%
It is not standardized
41%
To avoid conflicts since assemblers and loaders use such names
24%
To avoid conflicts since library routines use such names
18%
To avoid conflicts with environment variables of an operating system
πβ¨ Explore Your Future with Our Amazing Courses! β¨π
π Java & Java with DSA Courses
π Python & Python with DSA
π Web Development
π Database & SQL
π€ Data Science & Machine Learning
π οΈ DevOps & Azure
π Your journey to success starts here! π
For free course - https://t.me/addlist/vnAFuK9rY6FjNjM1
π Java & Java with DSA Courses
π CORE JAVA: NareshIT | Kishan Sir
π₯ ADVANCED JAVA: Venkatesh Mansani
π₯οΈ SPRING BOOT: NareshIT | Kishan Sir
βοΈ JAVA DSA: DurgaSoft
β Sigma 5.0 Batch: Apna College
π CORE JAVA: Hari Krishna Sir | Naresh IT
π» JAVA FULL STACK COURSE
π Python & Python with DSA
π Adul Bari Pythonπ΅ C++ & C++ with DSA
π₯οΈ PYTHON FULL STACK: KV Rao 2024
βοΈ PYTHON DSA: DurgaSoft
π KRISH NAIK Python Course
π ineuron python course
π‘ ALPHA DSA C++
π PW C++ DSA
π₯ Love Babbar Supreme Batch
π DSA Abdul Bari
β NARESH IT DSA
π± Durgasoft DSA
π€‘ Ashok IT
π Web Development
π¨ PW Skills Web Developmentο»Ώ
β Delta 5.0 Batch: Apna College
π» DOT Batch: Love Babbar
π Namaste React
π Namaste JavaScript
βοΈ Namaste NodeJs
π Cohort 3.0: Web + DevOps
π§ Full Stack Web Development: Naresh IT & DurgaSoft
π Sanket Singh Full Stack Web Development
π NodeJS: Sanket Singh
π MERN Stack: Anuj Bhaiya
π₯οΈ PHP: Ram Sir
π¨ Frontend Development: IIT Madras
π Almabetter Full Stack Web Development Course
β‘ ASHOK IT Node JS
β UI Full Stack: Sudhakar Sharma | Naresh IT
π₯ Sherians Frontend Course
π Database & SQL
π MongoDB: Durga Sir
β Namaste SQL: Akshay Saini
π₯οΈ SQL: DurgaSoft & Naresh IT
π§ ORACLE
π Power BI Course
π€ Data Science & Machine Learning
π PW Skills Data Science Course
π iNeuron Complete Data Science
π Data Science Master 2.0
π Data Science: IIT Madras
βοΈ MLOps Course: Naresh IT
π οΈ DevOps & Azure
β‘ Full DevOps Course: Tech Nanaπ» Special Courses
β Hey DevOps 5.0
π§ Ashok IT DevOps
π MS Azure DevOps Course
π Azure Data Engineering: Gareth | Naresh IT
βοΈ Azure Cloud Mastery
π DevOps with AWS
β¨ Ineuron All Course
βοΈ Google Cloud Platform: Mr. Saidul
π§ Git for DevOps: DurgaSoft
π ASP.NET: Bangar Raju | Naresh ITπ« Plus, we have:
π GATE CSE Prep: PW 1500
π± App Development: Harnoor Singh
π± Android Using Kotlin: DurgaSoft
βοΈ Selenium: Naresh IT
π€ Applied AI Full Course
π» C#: Bangar Raju
π Unix/Linux: Imran 2024 | Naresh IT
βοΈ Salesforce: Adnan | Naresh IT
π‘οΈ Cyber Security: iNeuron
π Digital Marketing: Ramakanth | Naresh IT
- Colt Steele Full Stack Web Development
- StationX Full Stack Python Development
- Arpit Bhayani System Design
- Government Exam All Courses Available
- 1500 TB Mega Link Course Available
- 13 TB Google Drive Course Link
- Code with Mosh All Courses
- Andrew Tate All Courses
- Zero to Mastery All Courses
π€ 100+ More Demanding Courses to Explore!β¨ For more information and discounts π, DM us @Myhurthearts!
π€‘ Order any course and get completed course in 24 hours
π Price Starting at βΉ49!
π Cheapest and best course in history
π 113+ member purchased course and 396 people in DM
π Your journey to success starts here! π
For free course - https://t.me/addlist/vnAFuK9rY6FjNjM1
π3π1π1