SlideShare a Scribd company logo
Switch Statement
SYNTAX
switch(variable||constant||character)
{
case 1:
statement1;
statement2;
break;
case 2:
statements;
break;
.
.
default:
statements;
}
Example..
void main()
{
char ch=‘x’;
switch(ch)
{
case ’v’:
printf(“In case v ”);
break;
case ’a’:
printf(“In case a ”);
break;
case ’x’:
printf(“In case x ”);
break;
default:
printf(“I am in defaultn”);
}
}
•Switch statement can also contain Expressions
eg switch(i+j*k)
switch(45*j)
•Only constant expressions can be evaluated in
case
eg case 5+9 is correct.
case a+b is incorrect
Limitation of switch
• A float Expression cannot be tested using a switch.
• Multiple cases cannot use same expression values.
eg
switch(var)
{
case 6:
…………..
.
.
case 3*2:
}
It is an Illegal Expression
• case a>2: is an illegal expression
The Loop Control Structure
For Loop
While Loop
Do-While Loop
for Loop
for Loop
• Syntax
void main()
{
for(initialization; condition;increment/decrement)
{
statements;
}
}
for Loop
A Basic program:- Take 5 numbers from user and
find their sum.
void main()
{
int a,i,sum;
printf(“Enter Five number”);
for (i=0;i<5;i++)
{
scanf(“%d”,&a);
sum=sum+a; //
}
printf(“The sum is %d”,sum);
}
for Loop
Some more formats.
• void main()
{
int i;
for(i=1;i<=10;i=i+1)
printf(“%dn”,i);
}
• void main()
{
int i;
for(i=1;i<=10;)
{
printf(“%dn”,i);
i=i+1;
}
}
for Loop
Some more formats.
• void main()
{
int i=1;
for(;i<=10;i=i+1)
printf(“%dn”,i);
}
• void main()
{
int i=1;
for(;i<=10;)
{
printf(“%dn”,i);
i=i+1;
}
}
for Loop
Some more formats.
• void main()
{
int i;
for(i=0;i++<10;)
printf(“%dn”,i);
}
• void main()
{
int i;
for(i=0;++i<=10;)
{
printf(“%dn”,i);
}
}
Nested for loop
• 1*1
• 1*2
• 2*1
• 2*2
• 3*1
• 3*2
Nested for loop
void main()
{
int i,j;
for(i=1;i<4;i++)
{
for(j=1;j<=2;j++)
{
printf(“%dn”,i*j)
}
}
Multiple Initializations in for loop
• for(i=1,j=2;j<=10;j++,i++)
Break Statement
Break Statement
• main()
{
int num,i;
printf(“Enter a number”);
scanf(“%d”,&num);
i=2;
while(i<=num-1)
{
if(num%i==0)
{
printf(“Not a prime number”);
break;
}
i++;
}
if(i==num)
printf(“Prime number”);
}
Continue statement
void main()
{
int x;
for ( x = 1; x <= 10; x++ ) {
if ( x == 5 )
continue; /* skip remaining code in loop only if x == 5 */
printf( "%d ", x );
}
printf( "nUsed continue to skip printing the value 5n" );
}
Output
Predict the output:
void main()
{
float a=3;
switch(a)
{
case 1:
printf(“Value is 1”);
break;
case 2:
printf(“Value is 2”);
break;
case 3:
printf(“Value is 3”);
break;
default:
printf(“ERROR!!”);
}
}
Predict the output
void main(){
int x=0,y=0,i,j;
for(i=0;i<2;i++);
for(j=1;j<3;j++)
{
x++;
}
y++;
printf("x: %d, y: %d",x,y);
getch();
}
Predict the output..
• void main(){
• int ch='a'+'b';
• printf("%cn",ch);
• switch(ch)
• {
• case 'a':
• case 'b':
• printf("u entered bn");
• case 'A':
• printf("u entered An");
• case 'b'+'a':
• printf("u entered b and an");
• default:
• printf("Reached default");
• }
• }
Output???
• void main()
{
char ch='a';
printf("%d",ch);
}
Output????
• 97
void main()
{
int ch=3;
printf(“%c”,ch);
}
Ans ♥
Output????
void main()
{
char c=1;
switch(c)
{
case '1':
printf("In '1'");
break;
case 1||2:
printf(" In 1 or 2");
break;
default:
printf("Not found");
}
}
• ANS
• In 1 or 2
Output???
void main()
{
int suite=1;
switch(suite);
{
case 0;
printf("Clubn");
case 1;
printf("Diamondn");
}
}
Output
Output????
void main()
{
switch('A'+1)
{
case 66:
printf("In 66");
break;
case 1+'A':
printf("In same") ;
break;
case 'B':
printf("In B") ;
break;
default:
printf("In default");
break;
}
}

More Related Content

What's hot

Control structures in java
Control structures in javaControl structures in java
Control structures in java
VINOTH R
 
python Function
python Function python Function
python Function
Ronak Rathi
 
Types of keys in database | SQL
Types of keys in database | SQLTypes of keys in database | SQL
Types of keys in database | SQL
Sumit Pandey
 
User defined functions in C
User defined functions in CUser defined functions in C
User defined functions in C
Harendra Singh
 
If-else and switch-case
If-else and switch-caseIf-else and switch-case
If-else and switch-case
Manash Kumar Mondal
 
Looping statements in C
Looping statements in CLooping statements in C
Looping statements in CJeya Lakshmi
 
Method overriding
Method overridingMethod overriding
Method overriding
Azaz Maverick
 
Function overloading
Function overloadingFunction overloading
Function overloading
Selvin Josy Bai Somu
 
Switch statements in Java
Switch statements  in JavaSwitch statements  in Java
Switch statements in JavaJin Castor
 
Control structures IN SWIFT
Control structures IN SWIFTControl structures IN SWIFT
Control structures IN SWIFT
LOVELY PROFESSIONAL UNIVERSITY
 
Function in c program
Function in c programFunction in c program
Function in c program
umesh patil
 
Recursive functions in C
Recursive functions in CRecursive functions in C
Recursive functions in C
Lakshmi Sarvani Videla
 
C data type format specifier
C data type format specifierC data type format specifier
C data type format specifier
Sandip Sitäulä
 
Polymorphism
PolymorphismPolymorphism
Polymorphism
zindadili
 
Operator overloading
Operator overloadingOperator overloading
Operator overloading
Burhan Ahmed
 
C functions
C functionsC functions
C Programming: Control Structure
C Programming: Control StructureC Programming: Control Structure
C Programming: Control Structure
Sokngim Sa
 
C tokens
C tokensC tokens
C tokens
Manu1325
 
Constructor in java
Constructor in javaConstructor in java
Constructor in java
Madishetty Prathibha
 

What's hot (20)

Control structures in java
Control structures in javaControl structures in java
Control structures in java
 
python Function
python Function python Function
python Function
 
Types of keys in database | SQL
Types of keys in database | SQLTypes of keys in database | SQL
Types of keys in database | SQL
 
User defined functions in C
User defined functions in CUser defined functions in C
User defined functions in C
 
If-else and switch-case
If-else and switch-caseIf-else and switch-case
If-else and switch-case
 
Looping statements in C
Looping statements in CLooping statements in C
Looping statements in C
 
Method overriding
Method overridingMethod overriding
Method overriding
 
Function overloading
Function overloadingFunction overloading
Function overloading
 
Switch statements in Java
Switch statements  in JavaSwitch statements  in Java
Switch statements in Java
 
Control structures IN SWIFT
Control structures IN SWIFTControl structures IN SWIFT
Control structures IN SWIFT
 
Strings
StringsStrings
Strings
 
Function in c program
Function in c programFunction in c program
Function in c program
 
Recursive functions in C
Recursive functions in CRecursive functions in C
Recursive functions in C
 
C data type format specifier
C data type format specifierC data type format specifier
C data type format specifier
 
Polymorphism
PolymorphismPolymorphism
Polymorphism
 
Operator overloading
Operator overloadingOperator overloading
Operator overloading
 
C functions
C functionsC functions
C functions
 
C Programming: Control Structure
C Programming: Control StructureC Programming: Control Structure
C Programming: Control Structure
 
C tokens
C tokensC tokens
C tokens
 
Constructor in java
Constructor in javaConstructor in java
Constructor in java
 

Viewers also liked

Loops in C Programming
Loops in C ProgrammingLoops in C Programming
Loops in C Programming
Himanshu Negi
 
PRESENTATION ON FOR LOOP
PRESENTATION  ON FOR LOOPPRESENTATION  ON FOR LOOP
PRESENTATION ON FOR LOOPFarooq Joyia
 
Chapter 05 looping
Chapter 05   loopingChapter 05   looping
Chapter 05 looping
Dhani Ahmad
 
Loops in C
Loops in CLoops in C
Loops in C
Kamal Acharya
 
Switch case and looping statement
Switch case and looping statementSwitch case and looping statement
Switch case and looping statement_jenica
 
Do...while loop structure
Do...while loop structureDo...while loop structure
Do...while loop structureJd Mercado
 
Looping statement
Looping statementLooping statement
Looping statementilakkiya
 
Looping and switch cases
Looping and switch casesLooping and switch cases
Looping and switch casesMeoRamos
 
The Loops
The LoopsThe Loops
The Loops
Krishma Parekh
 
10. switch case
10. switch case10. switch case
10. switch case
Way2itech
 
Switch Case in C Programming
Switch Case in C ProgrammingSwitch Case in C Programming
Switch Case in C Programming
Sonya Akter Rupa
 
Do While and While Loop
Do While and While LoopDo While and While Loop
Do While and While Loop
Hock Leng PUAH
 
While , For , Do-While Loop
While , For , Do-While LoopWhile , For , Do-While Loop
While , For , Do-While Loop
Abhishek Choksi
 
Presentation on nesting of loops
Presentation on nesting of loopsPresentation on nesting of loops
Presentation on nesting of loopsbsdeol28
 
C++ loop
C++ loop C++ loop
C++ loop
Khelan Ameen
 
Loops
LoopsLoops
Loops c++
Loops c++Loops c++
Loops c++
Shivani Singh
 

Viewers also liked (20)

Loops in C Programming
Loops in C ProgrammingLoops in C Programming
Loops in C Programming
 
For Loop
For LoopFor Loop
For Loop
 
PRESENTATION ON FOR LOOP
PRESENTATION  ON FOR LOOPPRESENTATION  ON FOR LOOP
PRESENTATION ON FOR LOOP
 
Loops in c
Loops in cLoops in c
Loops in c
 
Chapter 05 looping
Chapter 05   loopingChapter 05   looping
Chapter 05 looping
 
Loops in C
Loops in CLoops in C
Loops in C
 
Switch case and looping statement
Switch case and looping statementSwitch case and looping statement
Switch case and looping statement
 
Do...while loop structure
Do...while loop structureDo...while loop structure
Do...while loop structure
 
Looping statement
Looping statementLooping statement
Looping statement
 
Looping and switch cases
Looping and switch casesLooping and switch cases
Looping and switch cases
 
The Loops
The LoopsThe Loops
The Loops
 
10. switch case
10. switch case10. switch case
10. switch case
 
Switch Case in C Programming
Switch Case in C ProgrammingSwitch Case in C Programming
Switch Case in C Programming
 
Do While and While Loop
Do While and While LoopDo While and While Loop
Do While and While Loop
 
Switch case and looping
Switch case and loopingSwitch case and looping
Switch case and looping
 
While , For , Do-While Loop
While , For , Do-While LoopWhile , For , Do-While Loop
While , For , Do-While Loop
 
Presentation on nesting of loops
Presentation on nesting of loopsPresentation on nesting of loops
Presentation on nesting of loops
 
C++ loop
C++ loop C++ loop
C++ loop
 
Loops
LoopsLoops
Loops
 
Loops c++
Loops c++Loops c++
Loops c++
 

Similar to C Language - Switch and For Loop

C Unit-2.ppt
C Unit-2.pptC Unit-2.ppt
C Unit-2.ppt
Giri383500
 
Control flow in c
Control flow in cControl flow in c
Control flow in c
thirumalaikumar3
 
12 lec 12 loop
12 lec 12 loop 12 lec 12 loop
12 lec 12 loop
kapil078
 
Session 3
Session 3Session 3
3. chapter ii
3. chapter ii3. chapter ii
3. chapter ii
Chhom Karath
 
6 c control statements branching &amp; jumping
6 c control statements branching &amp; jumping6 c control statements branching &amp; jumping
6 c control statements branching &amp; jumping
MomenMostafa
 
unit 2-Control Structures.pptx
unit 2-Control Structures.pptxunit 2-Control Structures.pptx
unit 2-Control Structures.pptx
ishaparte4
 
INPUT AND OUTPUT STATEMENTS IN PROGRAMMING IN C
INPUT AND OUTPUT STATEMENTS IN PROGRAMMING IN CINPUT AND OUTPUT STATEMENTS IN PROGRAMMING IN C
INPUT AND OUTPUT STATEMENTS IN PROGRAMMING IN C
Chandrakant Divate
 
C tutorial
C tutorialC tutorial
C tutorial
Anurag Sukhija
 
c++ Lecture 4
c++ Lecture 4c++ Lecture 4
c++ Lecture 4sajidpk92
 
1 introduction to c program
1 introduction to c program1 introduction to c program
1 introduction to c program
NishmaNJ
 
Looping
LoopingLooping
Chap7_b Control Statement Looping (3).pptx
Chap7_b Control Statement Looping (3).pptxChap7_b Control Statement Looping (3).pptx
Chap7_b Control Statement Looping (3).pptx
FakhriyArif
 
Control Structures in C
Control Structures in CControl Structures in C
Control Structures in C
sana shaikh
 
Unit ii chapter 2 Decision making and Branching in C
Unit ii chapter 2 Decision making and Branching in CUnit ii chapter 2 Decision making and Branching in C
Unit ii chapter 2 Decision making and Branching in C
Sowmya Jyothi
 

Similar to C Language - Switch and For Loop (20)

C Unit-2.ppt
C Unit-2.pptC Unit-2.ppt
C Unit-2.ppt
 
if,loop,switch
if,loop,switchif,loop,switch
if,loop,switch
 
Control flow in c
Control flow in cControl flow in c
Control flow in c
 
12 lec 12 loop
12 lec 12 loop 12 lec 12 loop
12 lec 12 loop
 
Session 3
Session 3Session 3
Session 3
 
3. chapter ii
3. chapter ii3. chapter ii
3. chapter ii
 
6 c control statements branching &amp; jumping
6 c control statements branching &amp; jumping6 c control statements branching &amp; jumping
6 c control statements branching &amp; jumping
 
unit 2-Control Structures.pptx
unit 2-Control Structures.pptxunit 2-Control Structures.pptx
unit 2-Control Structures.pptx
 
INPUT AND OUTPUT STATEMENTS IN PROGRAMMING IN C
INPUT AND OUTPUT STATEMENTS IN PROGRAMMING IN CINPUT AND OUTPUT STATEMENTS IN PROGRAMMING IN C
INPUT AND OUTPUT STATEMENTS IN PROGRAMMING IN C
 
C tutorial
C tutorialC tutorial
C tutorial
 
c++ Lecture 4
c++ Lecture 4c++ Lecture 4
c++ Lecture 4
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
1 introduction to c program
1 introduction to c program1 introduction to c program
1 introduction to c program
 
Looping
LoopingLooping
Looping
 
3 flow
3 flow3 flow
3 flow
 
3 flow
3 flow3 flow
3 flow
 
Lec 10
Lec 10Lec 10
Lec 10
 
Chap7_b Control Statement Looping (3).pptx
Chap7_b Control Statement Looping (3).pptxChap7_b Control Statement Looping (3).pptx
Chap7_b Control Statement Looping (3).pptx
 
Control Structures in C
Control Structures in CControl Structures in C
Control Structures in C
 
Unit ii chapter 2 Decision making and Branching in C
Unit ii chapter 2 Decision making and Branching in CUnit ii chapter 2 Decision making and Branching in C
Unit ii chapter 2 Decision making and Branching in C
 

More from Sukrit Gupta

The n Queen Problem
The n Queen ProblemThe n Queen Problem
The n Queen Problem
Sukrit Gupta
 
Future Technologies - Integral Cord
Future Technologies - Integral CordFuture Technologies - Integral Cord
Future Technologies - Integral Cord
Sukrit Gupta
 
Harmful Effect Of Computers On Environment - EWASTE
Harmful Effect Of Computers On Environment - EWASTE Harmful Effect Of Computers On Environment - EWASTE
Harmful Effect Of Computers On Environment - EWASTE
Sukrit Gupta
 
MySql
MySqlMySql
Html n CSS
Html n CSSHtml n CSS
Html n CSS
Sukrit Gupta
 
Java script
Java scriptJava script
Java script
Sukrit Gupta
 
Java Script basics and DOM
Java Script basics and DOMJava Script basics and DOM
Java Script basics and DOMSukrit Gupta
 
Cookies and sessions
Cookies and sessionsCookies and sessions
Cookies and sessionsSukrit Gupta
 

More from Sukrit Gupta (9)

The n Queen Problem
The n Queen ProblemThe n Queen Problem
The n Queen Problem
 
Future Technologies - Integral Cord
Future Technologies - Integral CordFuture Technologies - Integral Cord
Future Technologies - Integral Cord
 
Harmful Effect Of Computers On Environment - EWASTE
Harmful Effect Of Computers On Environment - EWASTE Harmful Effect Of Computers On Environment - EWASTE
Harmful Effect Of Computers On Environment - EWASTE
 
MySql
MySqlMySql
MySql
 
Html n CSS
Html n CSSHtml n CSS
Html n CSS
 
Html and css
Html and cssHtml and css
Html and css
 
Java script
Java scriptJava script
Java script
 
Java Script basics and DOM
Java Script basics and DOMJava Script basics and DOM
Java Script basics and DOM
 
Cookies and sessions
Cookies and sessionsCookies and sessions
Cookies and sessions
 

Recently uploaded

A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
EduSkills OECD
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
Mohammed Sikander
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 

Recently uploaded (20)

A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
Francesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptxFrancesca Gottschalk - How can education support child empowerment.pptx
Francesca Gottschalk - How can education support child empowerment.pptx
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 
Multithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race conditionMultithreading_in_C++ - std::thread, race condition
Multithreading_in_C++ - std::thread, race condition
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 

C Language - Switch and For Loop